- 13 Ara, 2013 10 kayıt (commit)
-
-
Victor Stinner yazdı
test_capi is failing and the fix is not trivial, I prefer to revert
-
R David Murray yazdı
Patch by Vajrasky Kok, test enhancement by me.
-
Victor Stinner yazdı
the function did nothing if the key already exists (if the current value is a non-NULL pointer). _testcapi.run_in_subinterp() now correctly sets the new Python thread state of the current thread when a subinterpreter is created.
-
Victor Stinner yazdı
sometimes busy
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Fix a crash when a generator is created in a C thread that is destroyed while the generator is still used. The issue was that a generator contains a frame, and the frame kept a reference to the Python state of the destroyed C thread. The crash occurs when a trace function is setup.
-
Victor Stinner yazdı
crash when a generator is created in a C thread that is destroyed while the generator is still used. The issue was that a generator contains a frame, and the frame kept a reference to the Python state of the destroyed C thread. The crash occurs when a trace function is setup.
-
Victor Stinner yazdı
has no concrete GIL. If PyGILState_Ensure() is called from a new thread for the first time and PyEval_InitThreads() was not called yet, a GIL needs to be created.
-
- 12 Ara, 2013 7 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Stefan Krah yazdı
-
Stefan Krah yazdı
-
Zachary Ware yazdı
-
Zachary Ware yazdı
This fixes running test_decimal in verbose mode on Windows, which I broke in issue #19572.
-
Victor Stinner yazdı
-
- 11 Ara, 2013 15 kayıt (commit)
-
-
Zachary Ware yazdı
-
Zachary Ware yazdı
There are enough new things to make the merge harder than making the change in VS, and there are other things to add filters for in 3.4.
-
Zachary Ware yazdı
-
Zachary Ware yazdı
-
Zachary Ware yazdı
Also, cleaned up an unused import.
-
R David Murray yazdı
This version of the fix raises an error instead of accepting the invalid input (ie: if a non-ASCII string is used but no charset is specified).
-
R David Murray yazdı
-
R David Murray yazdı
This is a backward compatible partial fix, the complete fix requires raising an error instead of accepting the invalid input, so the real fix is only suitable for 3.4.
-
Serhiy Storchaka yazdı
return not int instance. Introduced _PyLong_FromNbInt() and refactored PyLong_As*() functions.
-
Serhiy Storchaka yazdı
return not int instance. Introduced _PyLong_FromNbInt() and refactored PyLong_As*() functions.
-
Eric Snow yazdı
-
Gregory P. Smith yazdı
-
Gregory P. Smith yazdı
fix to Issue #14635 in Python 3.3.0 to be interpreted as milliseconds instead of seconds when the platform supports select.poll (ie: everywhere). It is now treated as seconds once again.
-
Ned Deily yazdı
-
Ned Deily yazdı
shell window is present. (Original patch by Terry Reedy)
-
- 10 Ara, 2013 8 kayıt (commit)
-
-
Zachary Ware yazdı
-
Zachary Ware yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Serhiy Storchaka yazdı
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
The stdlib docs for package distribution and building extensions are rather dated, and that isn't expected to change for 2.7 and 3.3. The Python Packaging User Guide isn't complete either, but it's already a much better road map for new users than the existing stdlib docs.
-
Victor Stinner yazdı
-