[pypy-commit] pypy msvcrt-cffi: 'msvcrt.py' reimplemented using cffi

arigo pypy.commits at gmail.com
Sun Jul 17 05:01:03 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: msvcrt-cffi
Changeset: r85730:e6c312c2cee5
Date: 2016-07-17 11:01 +0200
http://bitbucket.org/pypy/pypy/changeset/e6c312c2cee5/

Log:	'msvcrt.py' reimplemented using cffi

diff --git a/pypy/module/thread/gil.py b/pypy/module/thread/gil.py
--- a/pypy/module/thread/gil.py
+++ b/pypy/module/thread/gil.py
@@ -24,6 +24,7 @@
 
     def setup_threads(self, space):
         """Enable threads in the object space, if they haven't already been."""
+        import pdb;pdb.set_trace()
         if not self.gil_ready:
             # Note: this is a quasi-immutable read by module/pypyjit/interp_jit
             # It must be changed (to True) only if it was really False before


More information about the pypy-commit mailing list