- 08 Sep, 2013 15 commits
-
-
Victor Stinner authored
faulthandler module if the variable is non-empty. Same behaviour than other variables like PYTHONDONTWRITEBYTECODE.
-
Charles-François Natali authored
default RLIMIT_NOFILE hard limit can be RLIMIT_INFINITY.
-
Charles-François Natali authored
to avoid one extra FD per Connection.
-
Raymond Hettinger authored
-
Senthil Kumaran authored
Fix the dead link of IEEE_854-1987 standard with the Wikipedia entry. Addresses issue #18438
-
Senthil Kumaran authored
Addresses issue #18438
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
The setobject freelist was consuming memory but not providing much value. Even when a freelisted setobject was available, most of the setobject fields still needed to be initialized and the small table still required a memset(). This meant that the custom freelisting scheme for sets was providing almost no incremental benefit over the default Python freelist scheme used by _PyObject_Malloc() in Objects/obmalloc.c.
-
Nick Coghlan authored
-
Tim Peters authored
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.
-
Nick Coghlan authored
When test.support was converted to a package, it started silently skipping the tests which needed to download support data to run. This change refactors the affected code, and also tidies up test.support.findfile to remove the unused *here* parameter, document the *subdir* parameter and rename the *filename* parameter to avoid shadowing the file builtin and be consistent with the documentation. The unexpected skips were noticed and reported by Zachary Ware
-
Senthil Kumaran authored
Correct Profile class usage example. Addresses issue #18033. Patch contributed by Olivier Hervieu and Dmi Baranov.
-
Senthil Kumaran authored
Patch contributed by Olivier Hervieu and Dmi Baranov.
-
Raymond Hettinger authored
-
- 07 Sep, 2013 15 commits
-
-
Raymond Hettinger authored
-
Antoine Pitrou authored
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 authored
-
Senthil Kumaran authored
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 authored
Fixes issue #18206 Patch contributed by Berker Peksag and py.user
-
Senthil Kumaran authored
Removing the mention of os.isatty mention as Unix only Correct the wrong documentation.
-
Senthil Kumaran authored
Correct the wrong documentation.
-
Richard Oudkerk authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Victor Stinner authored
Patch written by Vajrasky Kok.
-
Ethan Furman authored
-
Ethan Furman authored
-
- 06 Sep, 2013 10 commits
-
-
Ned Deily authored
emulation has changed from 0-based indexing to 1-based like gnu readline. Original patch by Ronald Oussoren.
-
Tim Peters authored
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 authored
The error caused test_inline_methods() to test much less than intended. Caught (& fixed) by Armin Rigo.
-
Antoine Pitrou authored
-
Charles-François Natali authored
want to check that Connection.poll() doesn't crash.
-
Antoine Pitrou authored
Patch by Valerie Lambert.
-
R David Murray authored
Patch by Berker Peksag.
-
Ethan Furman authored
-
Eli Bendersky authored
-
Eli Bendersky authored
output to stdout, matching the 'python -v' Reported by Wolfgang Maier
-