[pypy-commit] pypy Ram-Rachum/faulthandleris_enabled-should-return-fal-1563636614875: faulthandler.is_enabled should return `False`

coolrr pypy.commits at gmail.com
Sat Jul 20 12:26:34 EDT 2019


Author: Ram Rachum <ram at rachum.com>
Branch: Ram-Rachum/faulthandleris_enabled-should-return-fal-1563636614875
Changeset: r97012:c1a0a4fef77b
Date: 2019-07-20 15:31 +0000
http://bitbucket.org/pypy/pypy/changeset/c1a0a4fef77b/

Log:	faulthandler.is_enabled should return `False`

diff --git a/lib_pypy/faulthandler.py b/lib_pypy/faulthandler.py
--- a/lib_pypy/faulthandler.py
+++ b/lib_pypy/faulthandler.py
@@ -9,7 +9,7 @@
     pass
 
 def is_enabled(*args, **kwargs):
-    return True
+    return False
 
 def register(*args, **kwargs):
     pass


More information about the pypy-commit mailing list