- 13 Dec, 2013 11 commits
-
-
Victor Stinner authored
Patch written by Vajrasky Kok.
-
Victor Stinner authored
test_capi is failing and the fix is not trivial, I prefer to revert
-
R David Murray authored
Patch by Vajrasky Kok, test enhancement by me.
-
Victor Stinner authored
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 authored
sometimes busy
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
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 authored
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 authored
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 Dec, 2013 7 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
-
Stefan Krah authored
-
Stefan Krah authored
-
Zachary Ware authored
-
Zachary Ware authored
This fixes running test_decimal in verbose mode on Windows, which I broke in issue #19572.
-
Victor Stinner authored
-
- 11 Dec, 2013 15 commits
-
-
Zachary Ware authored
-
Zachary Ware authored
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 authored
-
Zachary Ware authored
-
Zachary Ware authored
Also, cleaned up an unused import.
-
R David Murray authored
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 authored
-
R David Murray authored
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 authored
return not int instance. Introduced _PyLong_FromNbInt() and refactored PyLong_As*() functions.
-
Serhiy Storchaka authored
return not int instance. Introduced _PyLong_FromNbInt() and refactored PyLong_As*() functions.
-
Eric Snow authored
-
Gregory P. Smith authored
-
Gregory P. Smith authored
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 authored
-
Ned Deily authored
shell window is present. (Original patch by Terry Reedy)
-
- 10 Dec, 2013 7 commits
-
-
Zachary Ware authored
-
Zachary Ware authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Serhiy Storchaka authored
-
Nick Coghlan authored
-
Nick Coghlan authored
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.
-