[pypy-commit] pypy py3.5: sync with pypy2 - remove faulthandler from win32 until vmprof is fixed

mattip pypy.commits at gmail.com
Thu Sep 14 16:30:41 EDT 2017


Author: Matti Picus <matti.picus at gmail.com>
Branch: py3.5
Changeset: r92396:bb2e3674c3ee
Date: 2017-09-14 23:29 +0300
http://bitbucket.org/pypy/pypy/changeset/bb2e3674c3ee/

Log:	sync with pypy2 - remove faulthandler from win32 until vmprof is
	fixed

diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py
--- a/pypy/config/pypyoption.py
+++ b/pypy/config/pypyoption.py
@@ -73,6 +73,8 @@
 
     if "_cppyy" in working_modules:
         working_modules.remove("_cppyy")  # not tested on win32
+    if "faulthandler" in working_modules:
+        working_modules.remove("faulthandler")  # missing details
     if "_vmprof" in working_modules:
         working_modules.remove("_vmprof")  # FIXME: missing details
 


More information about the pypy-commit mailing list