Show More
Commit Description:
merge with algo and add brython files that were missing
Commit Description:
merge with algo and add brython files that were missing
References:
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)