Show More
Commit Description:
- clean up link to problem stat and user stat...
Commit Description:
- clean up link to problem stat and user stat (grafted from 45d1e12e9794a23a5431222fe2f4c7461d73a529)
File last commit:
Show/Diff file:
Action:
lib/assets/Lib/sysconfig.py | 12 lines | 400 B | text/x-python | PythonLexer |
"""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)