- 22 Mar, 2016 5 commits
-
-
Victor Stinner authored
Issue #26588: Fix _tracemalloc start/stop: don't play with the reentrant flag. set_reentrant(1) fails with an assertion error if tracemalloc_init() is called first in a thread A and tracemalloc_start() is called second in a thread B. The tracemalloc is imported in a thread A. Importing the module calls tracemalloc_init(). tracemalloc.start() is called in a thread B.
-
Martin Panter authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Martin Panter authored
-
- 21 Mar, 2016 2 commits
-
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
- 20 Mar, 2016 5 commits
-
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Berker Peksag authored
uuid.uuid4() always uses os.urandom() after 756d040aa8e8.
-
Berker Peksag authored
Patch by jgauthier.
-
Berker Peksag authored
Patch by Andrew Szeto.
-
- 19 Mar, 2016 2 commits
-
-
Berker Peksag authored
Without the patch, line 1010 of Lib/datetime.py wasn't covered by the test suite. Patch by Colin Williams.
-
Berker Peksag authored
Initial patch by Peter Inglesby.
-
- 18 Mar, 2016 5 commits
-
-
Brett Cannon authored
-
Ezio Melotti authored
#26250: document the sqlite3.Cursor.connection attribute. Initial patches by Aviv Palivoda and Varpu Rantala.
-
Brett Cannon authored
configure script related to compiler flags. Thanks to Daniel Shaulov for the bug report and patch.
-
Serhiy Storchaka authored
-
Berker Peksag authored
Patch by SilentGhost.
-
- 17 Mar, 2016 5 commits
-
-
Steve Dower authored
-
Ned Deily authored
files cannot be written.
-
Donald Stufft authored
-
Donald Stufft authored
-
Victor Stinner authored
Issue #26569: Fix pyclbr.readmodule() and pyclbr.readmodule_ex() to support importing packages.
-
- 18 Mar, 2016 1 commit
-
-
Martin Panter authored
-
- 16 Mar, 2016 2 commits
-
-
Victor Stinner authored
Issue #26563: Py_FatalError: disable faulthandler before trying to flush sys.stdout and sys.stderr.
-
Victor Stinner authored
Issue #26563: Replace PyMem_Malloc() with PyMem_RawFree() since PostToQueueCallback() calls PyMem_RawFree() (previously PyMem_Free()) in a new C thread which doesn't hold the GIL.
-
- 17 Mar, 2016 1 commit
-
-
Martin Panter authored
-
- 15 Mar, 2016 2 commits
-
-
Victor Stinner authored
Issue #26564. Cleanup the code, lineno is never negative.
-
Victor Stinner authored
Issue #26558.
-
- 14 Mar, 2016 1 commit
-
-
Victor Stinner authored
Issue #26558: If Py_FatalError() is called without the GIL, don't try to print the current exception, nor try to flush stdout and stderr: only dump the traceback of Python threads.
-
- 15 Mar, 2016 2 commits
-
-
Antoine Pitrou authored
-
Robert Collins authored
Patch from Victor van den Elzen.
-
- 14 Mar, 2016 4 commits
-
-
Victor Stinner authored
Ignore pip warning in test_venv.test_with_venv().
-
Victor Stinner authored
Issue #17758: Skip test_site if site.USER_SITE directory doesn't exist and cannot be created.
-
Serhiy Storchaka authored
-
Berker Peksag authored
-
- 13 Mar, 2016 3 commits
-
-
Ezio Melotti authored
-
Raymond Hettinger authored
-
Ezio Melotti authored
#25687: clarify that errors in tearDown increase the total number of reported errors. Initial patch by HyeSoo Park.
-