- 08 Eyl, 2013 4 kayıt (commit)
-
-
Tim Peters yazdı
test_is_alive_after_fork is failing on some old Linux kernels, but passing on all newer ones. Since virtually anything can go wrong with locks when mixing threads with fork, replace the most likely cause with a redundant simple data member.
-
Senthil Kumaran yazdı
Correct Profile class usage example. Addresses issue #18033. Patch contributed by Olivier Hervieu and Dmi Baranov.
-
Senthil Kumaran yazdı
Patch contributed by Olivier Hervieu and Dmi Baranov.
-
Raymond Hettinger yazdı
-
- 07 Eyl, 2013 15 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Antoine Pitrou yazdı
Issue #18808: Thread.join() now waits for the underlying thread state to be destroyed before returning. This prevents unpredictable aborts in Py_EndInterpreter() when some non-daemon threads are still running.
-
Senthil Kumaran yazdı
-
Senthil Kumaran yazdı
Fix License URL display and add test to check for license url presence. Fixes issue #18206 Patch contributed by Berker Peksag and py.user
-
Senthil Kumaran yazdı
Fixes issue #18206 Patch contributed by Berker Peksag and py.user
-
Senthil Kumaran yazdı
Removing the mention of os.isatty mention as Unix only Correct the wrong documentation.
-
Senthil Kumaran yazdı
Correct the wrong documentation.
-
Richard Oudkerk yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Victor Stinner yazdı
Patch written by Vajrasky Kok.
-
Ethan Furman yazdı
-
Ethan Furman yazdı
-
- 06 Eyl, 2013 21 kayıt (commit)
-
-
Ned Deily yazdı
emulation has changed from 0-based indexing to 1-based like gnu readline. Original patch by Ronald Oussoren.
-
Tim Peters yazdı
Issue 18944: fix a 1-character typo in test_set.py. The error caused test_inline_methods() to test much less than intended. Caught (& fixed) by Armin Rigo.
-
Tim Peters yazdı
The error caused test_inline_methods() to test much less than intended. Caught (& fixed) by Armin Rigo.
-
Antoine Pitrou yazdı
-
Charles-François Natali yazdı
want to check that Connection.poll() doesn't crash.
-
Antoine Pitrou yazdı
Patch by Valerie Lambert.
-
R David Murray yazdı
Patch by Berker Peksag.
-
Ethan Furman yazdı
-
Eli Bendersky yazdı
-
Eli Bendersky yazdı
output to stdout, matching the 'python -v' Reported by Wolfgang Maier
-
Eli Bendersky yazdı
existing directory caused mkstemp and related APIs to fail instead of retrying. Report and fix by Vlad Shcherbina.
-
Eli Bendersky yazdı
existing directory caused mkstemp and related APIs to fail instead of retrying. Report and fix by Vlad Shcherbina.
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Ned Deily yazdı
64-bit/32-bit installer for 10.6+. It is no longer necessary to install a third-party version of Tcl/Tk 8.5 to work around the problems in the Apple-supplied Tcl/Tk 8.5 shipped in OS X 10.6 and later releases.
-
Ned Deily yazdı
when building _tkinter. configure has two new options; if used, both must be specified: ./configure \ --with-tcltk-includes="-I/opt/local/include" \ --with-tcltk-libs="-L/opt/local/lib -ltcl8.5 -ltk8.5" In addition, the options can be overridden with make: make \ TCLTK_INCLUDES="-I/opt/local/include" \ TCLTK_LIBS="-L/opt/local/lib -ltcl8.6 -ltk8.6"
-
Senthil Kumaran yazdı
Improve urlencode docstring. Patch by Brian Brazil. Closes issue #15350
-