[issue18957] PYTHONFAULTHANDLER enables faulthandler when the variable is empty

2013-09-08 Thread STINNER Victor
STINNER Victor added the comment: > Do you mean something like *this*? > this -> the patch, pythonfaulthandler_env_var.patch. Thanks for the patch, I combined it with other changes. -- ___ Python tracker _

[issue18957] PYTHONFAULTHANDLER enables faulthandler when the variable is empty

2013-09-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5c2cf4349adc by Victor Stinner in branch 'default': Close #18957: The PYTHONFAULTHANDLER environment variable now only enables the http://hg.python.org/cpython/rev/5c2cf4349adc -- nosy: +python-dev resolution: -> fixed stage: -> committed/

[issue18957] PYTHONFAULTHANDLER enables faulthandler when the variable is empty

2013-09-07 Thread STINNER Victor
STINNER Victor added the comment: Yes. Maybe also with a test. The doc of all env vars must be checked. -- ___ Python tracker ___ ___

[issue18957] PYTHONFAULTHANDLER enables faulthandler when the variable is empty

2013-09-07 Thread Vajrasky Kok
Vajrasky Kok added the comment: Do you mean something like *this*? this -> the patch, pythonfaulthandler_env_var.patch. -- keywords: +patch nosy: +vajrasky Added file: http://bugs.python.org/file31641/pythonfaulthandler_env_var.patch ___ Python track

[issue18957] PYTHONFAULTHANDLER enables faulthandler when the variable is empty

2013-09-07 Thread STINNER Victor
New submission from STINNER Victor: Most Python environment variables (PYTHON*) only enable something when their value is non-empty. The PYTHONFAULTHANDLER enables the faulthandler even if the value is empty. As the author of the module, I think that it is a bug and should be fixed (even in Py