Show More
Commit Description:
fix destroy button link...
Commit Description:
fix destroy button link (grafted from b75d9cfe4ee0550d574de4c4836ecc36c9354c53)
File last commit:
Show/Diff file:
Action:
lib/assets/Lib/sysconfig.py | 12 lines | 400 B | text/x-python | PythonLexer |
merge with algo and add brython files that were missing
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)