21 lines
576 B
Python
21 lines
576 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
import argparse
|
||
|
import re
|
||
|
|
||
|
|
||
|
def validate_definition(value):
|
||
|
"""Check that the variable name is a valid Python variable name, and that
|
||
|
there is an equals sign. The value can by anything non-empty.
|
||
|
"""
|
||
|
if not re.match(r"^[a-z_]\w*=.*$", value):
|
||
|
raise argparse.ArgumentTypeError(
|
||
|
"definition should be in var=value format: %r" % value
|
||
|
)
|
||
|
return value
|
||
|
|
||
|
|
||
|
def extract_defines(args):
|
||
|
"""Given an iterable of "key=value" strings, parse them into a dict."""
|
||
|
return dict(var.split("=", 1) for var in args)
|