Show More
Commit Description:
Merge pull request #17 from nattee/master...
Commit Description:
Merge pull request #17 from nattee/master
upgrade to current working snapshot
References:
File last commit:
Show/Diff file:
Action:
lib/assets/Lib/sysconfig.py
| 12 lines
| 400 B
| text/x-python
| PythonLexer
|
r584 | """Access to Python's configuration information.""" | |||
#well emulate this module since it does with settings very close to the | ||||
#OS and metal | ||||
variables={'TANH_PRESERVES_ZERO_SIGN': 0, 'WITH_DOC_STRINGS': 0} | ||||
def get_config_var(var): | ||||
if var in variables: | ||||
return variables[var] | ||||
raise NotImplementedError("sysconfig.py:get_config_var: variable '%s' does not exist" % variable) | ||||