Author: Philip Jenvey <pjen...@underboss.org>
Branch: py3k
Changeset: r84701:d92b5402ce9f
Date: 2016-05-25 23:56 -0700
http://bitbucket.org/pypy/pypy/changeset/d92b5402ce9f/

Log:    win32 translation fix

diff --git a/pypy/module/faulthandler/__init__.py 
b/pypy/module/faulthandler/__init__.py
--- a/pypy/module/faulthandler/__init__.py
+++ b/pypy/module/faulthandler/__init__.py
@@ -16,7 +16,7 @@
         '_sigsegv': 'interp_faulthandler.sigsegv',
         '_sigfpe': 'interp_faulthandler.sigfpe',
         '_sigabrt': 'interp_faulthandler.sigabrt',
-        '_sigbus': 'interp_faulthandler.sigbus',
-        '_sigill': 'interp_faulthandler.sigill',
+        #'_sigbus': 'interp_faulthandler.sigbus',
+        #'_sigill': 'interp_faulthandler.sigill',
         '_fatal_error': 'interp_faulthandler.fatal_error',
     }
diff --git a/pypy/module/faulthandler/interp_faulthandler.py 
b/pypy/module/faulthandler/interp_faulthandler.py
--- a/pypy/module/faulthandler/interp_faulthandler.py
+++ b/pypy/module/faulthandler/interp_faulthandler.py
@@ -114,11 +114,11 @@
 def sigabrt():
     pypy_faulthandler_sigabrt()
 
-def sigbus():
-    pypy_faulthandler_sigbus()
+#def sigbus():
+#    pypy_faulthandler_sigbus()
 
-def sigill():
-    pypy_faulthandler_sigill()
+#def sigill():
+#    pypy_faulthandler_sigill()
 
 @unwrap_spec(msg=str)
 def fatal_error(space, msg):
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to