- 19 Mar, 2016 2 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #26568: Fix implementation of showwarning() and formatwarning() for test_logging.
-
Victor Stinner yazdı
Issue #26567: * Add a new function PyErr_ResourceWarning() function to pass the destroyed object * Add a source attribute to warnings.WarningMessage * Add warnings._showwarnmsg() which uses tracemalloc to get the traceback where source object was allocated.
-
- 18 Mar, 2016 14 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #26568: add new _showwarnmsg() and _formatwarnmsg() functions to the warnings module. The C function warn_explicit() now calls warnings._showwarnmsg() with a warnings.WarningMessage as parameter, instead of calling warnings.showwarning() with multiple parameters. _showwarnmsg() calls warnings.showwarning() if warnings.showwarning() was replaced. Same for _formatwarnmsg(): call warnings.formatwarning() if it was replaced.
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
#26250: document the sqlite3.Cursor.connection attribute. Initial patches by Aviv Palivoda and Varpu Rantala.
-
Brett Cannon yazdı
-
Brett Cannon yazdı
configure script related to compiler flags. Thanks to Daniel Shaulov for the bug report and patch.
-
Victor Stinner yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Berker Peksag yazdı
Patch by SilentGhost.
-
Berker Peksag yazdı
Patch by SilentGhost.
-
Victor Stinner yazdı
Issue #26564, #26516, #26563.
-
- 17 Mar, 2016 8 kayıt (commit)
-
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Ned Deily yazdı
-
Ned Deily yazdı
files cannot be written.
-
Donald Stufft yazdı
-
Donald Stufft yazdı
-
Donald Stufft yazdı
-
Victor Stinner yazdı
-
- 18 Mar, 2016 2 kayıt (commit)
-
-
Martin Panter yazdı
-
Martin Panter yazdı
-
- 17 Mar, 2016 2 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #26569: Fix pyclbr.readmodule() and pyclbr.readmodule_ex() to support importing packages.
-
Victor Stinner yazdı
-
- 16 Mar, 2016 3 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
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.
-
Victor Stinner yazdı
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 kayıt (commit)
-
-
Martin Panter yazdı
-
- 16 Mar, 2016 6 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #26563: Py_FatalError: disable faulthandler before trying to flush sys.stdout and sys.stderr.
-
Victor Stinner yazdı
Issue #26563: Py_FatalError: disable faulthandler before trying to flush sys.stdout and sys.stderr.
-
Victor Stinner yazdı
Issue #26563: * Add _PyGILState_GetInterpreterStateUnsafe() function: the single PyInterpreterState used by this process' GILState implementation. * Enhance _Py_DumpTracebackThreads() to retrieve the interpreter state from autoInterpreterState in last resort. The function now accepts NULL for interp and current_tstate parameters. * test_faulthandler: fix a ResourceWarning when test is interrupted by CTRL+c
-
Victor Stinner yazdı
Issue #26563: Replace PyMem_Malloc() with PyMem_RawMalloc() in the Windows implementation of os.stat(), since the code is called without holding the GIL.
-
Victor Stinner yazdı
Issue #26563: Debug hooks on Python memory allocators now raise a fatal error if functions of the PyMem_Malloc() family are called without holding the GIL.
-
Victor Stinner yazdı
Issue #26564.
-
- 17 Mar, 2016 2 kayıt (commit)
-
-
Martin Panter yazdı
This reverts most of revision 3092cf163eb4. The change worked on x86 architectures, but did not work on ARM, probably due to extra ABI flags in the ldconfig output.
-
Martin Panter yazdı
-