- a453749 merge 3.3 by Benjamin Peterson · 10 years ago
- 7919acb merge 3.2 by Benjamin Peterson · 10 years ago
- 47e782a update for copyright for 2015 by Benjamin Peterson · 10 years ago
- fe02e39 Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(), by Victor Stinner · 10 years ago
- 3cda0ed pop the loop block even for infinite while loops (closes #23048) by Benjamin Peterson · 10 years ago
- 0b881dd Issue #18028: Fix aliasing issue in READ_TIMESTAMP() of ceval.c on x86_64, by Victor Stinner · 10 years ago
- b757c83 Issue #22581: Use more "bytes-like object" throughout the docs and comments. by Serhiy Storchaka · 10 years ago
- 9e4db75 - Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile is by Barry Warsaw · 10 years ago
- 2a41385 - Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile is by Barry Warsaw · 10 years ago
- 56a6d85 Removed duplicated words in in comments and docs. by Serhiy Storchaka · 10 years ago
- 81f68a7 Issue #22453: Warn against the use of leaking macro PyObject_REPR(). by Serhiy Storchaka · 10 years ago
- 030e92d Issue #22193: Fixed integer overflow error in sys.getsizeof(). by Serhiy Storchaka · 10 years ago
- edc3cba Copyright year update, add version to licenses. by Georg Brandl · 10 years ago
- 4b16818 Issue #22518: Fixed integer overflow issues in "backslashreplace", by Serhiy Storchaka · 10 years ago
- 5e78f4d Issue #22762: Fix _Py_DisplaySourceLine(), clear the exception if by Victor Stinner · 10 years ago
- e2bd2a7 Issue #21715: Extracted shared complicated code in the _io module to new by Serhiy Storchaka · 10 years ago
- 0ddbf47 Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in exception tracebacks. by Antoine Pitrou · 10 years ago
- 2e37409 Issue #22518: Fixed integer overflow issues in "backslashreplace", by Serhiy Storchaka · 10 years ago
- 8aa8c47 Fixed reference leak in the "backslashreplace" error handler. by Serhiy Storchaka · 10 years ago
- cb0a006 Issue #4180: The warnings registries are now reset when the filters are modified. by Antoine Pitrou · 10 years ago
- 8fad167 Issue #22166: clear codec caches in test_codecs by Nick Coghlan · 10 years ago
- 282124b Closes #22258: Fix the the internal function set_inheritable() on Illumos. by Victor Stinner · 10 years ago
- 547d3bc Issue #22193: Added private function _PySys_GetSizeOf() needed to implement by Serhiy Storchaka · 10 years ago
- 9b33872 Issue #22146: Fix typo in __build_class__ error message by Zachary Ware · 10 years ago
- ab826d1 Issue #21925: PyImport_Cleanup(): Remove unused parameter in by Victor Stinner · 10 years ago
- 529ea5d Issue #21891: remove extraneous semicolon. by Ned Deily · 10 years ago
- 59830b6 revert tstate_delete_common, since it's pretty much wrong by Benjamin Peterson · 10 years ago
- 95d7519 remove extra call to tstate_delete_common (merge artifact) by Benjamin Peterson · 10 years ago
- 068f81e avoid a deadlock with the interpreter head lock and the GIL during finalization by Benjamin Peterson · 10 years ago
- 17548dd check if the thread is finalizing after retaking the GIL by Benjamin Peterson · 10 years ago
- f2fb73f Issue #19362: Tweek len() doc and docstring to expand the indicated range of by Terry Jan Reedy · 10 years ago
- 58cfdd8 Issue #21226: fix a ref leak. by Eric Snow · 10 years ago
- 9961405 Issue #21523: Fix over-pessimistic computation of the stack effect of some opcodes in the compiler. by Antoine Pitrou · 10 years ago
- 2a54582 Issue 20620: Update the min()/max() docs for the new default argument. by Raymond Hettinger · 10 years ago
- 08197a4 Issue #21226: Set all attrs in PyImport_ExecCodeModuleObject. by Eric Snow · 11 years ago
- 9845c7e Issue #21425: Fix flushing of standard streams in the interactive interpreter. by Antoine Pitrou · 11 years ago
- 5b74bad Merging from 3.3: The PyCOND_TIMEDWAIT must use microseconds for the timeout argument by Kristján Valur Jónsson · 11 years ago
- ddf3438 The PyCOND_TIMEDWAIT must use microseconds for the timeout argument by Kristján Valur Jónsson · 11 years ago
- 871dfc4 Issue #13204: Calling sys.flags.__new__ would crash the interpreter, now it raises a TypeError. by Antoine Pitrou · 11 years ago
- e472aea Issue #21207: Detect when the os.urandom cached fd has been closed or replaced, and open it anew. by Antoine Pitrou · 11 years ago
- 5edbb7b correct len signature in docstring (closes #21294) by Benjamin Peterson · 11 years ago
- 4a173bc Fixes for KFreeBSD and the Hurd: by doko@ubuntu.com · 11 years ago
- 809f90f Reverted 16efa8d27e4c after discussion with Eric. by Vinay Sajip · 11 years ago
- a0d1073 Closed issue #8931: Make alternate formatting for 'c' raise an exception. Patch by Torsten Landschoff. by Eric V. Smith · 11 years ago
- 2ea9712 Issue #12546: Allow \x00 as a fill character for builtin type __format__ methods. by Eric V. Smith · 11 years ago
- f6e50b4 fix sending tuples to custom generator objects with yield from (closes #21209) by Benjamin Peterson · 11 years ago
- 18fc4e7 Issue #20942: PyImport_ImportFrozenModuleObject() no longer sets __file__. by Brett Cannon · 11 years ago
- 9381343 undefine SET_SYS_FROM_STRING_BORROW after its done being used (closes #21089) by Benjamin Peterson · 11 years ago
- 2fc8f77 Issue #20404: reject non-text encodings early in TextIOWrapper. by Georg Brandl · 11 years ago
- d3acef9 Issue #20763: Fix importlib.machinery.PathFinder to support by Brett Cannon · 11 years ago
- 94ee389 Issue #19619: Blacklist non-text codecs in method API by Serhiy Storchaka · 11 years ago
- 45d8e7b update magic number for #20625 by Benjamin Peterson · 11 years ago
- 065efc3 Issue #20625: Fix compilation issue by Victor Stinner · 11 years ago
- 34ce99f Mangle __parameters in __annotations__ dict properly. Issue #20625. by Yury Selivanov · 11 years ago
- 3c1b379 Issue #20320: select.select() and select.kqueue.control() now round the timeout by Victor Stinner · 11 years ago
- 0714b8b set line and column numbers for keyword-only arg nodes (closes #20619) by Benjamin Peterson · 11 years ago
- 15054c1 Issue #20526, #19466: Revert changes of issue #19466 which introduces a by Victor Stinner · 11 years ago
- 40be9e5 remove dynamic initializer lists for c89 compliance (closes #20595) by Benjamin Peterson · 11 years ago
- 42ec031 merge 3.3 (#20588) by Benjamin Peterson · 11 years ago
- c2f665e don't put runtime values in array initializer for C89 compliance (closes #20588) by Benjamin Peterson · 11 years ago
- d667d72 Temporary silence test broken by issue19255. Remove unused variables. by Serhiy Storchaka · 11 years ago
- 87a5c51 Issue #19255: The builtins module is restored to initial value before by Serhiy Storchaka · 11 years ago
- 8f9f0f1 Issue #20517: Removed unnecessary new (short-lived) functions from PyErr. by Larry Hastings · 11 years ago
- b082731 Issue #20517: Functions in the os module that accept two filenames by Larry Hastings · 11 years ago
- 665a2bc bump Python-ast.c by Benjamin Peterson · 11 years ago
- dfe98a1 Issue #20437: Fixed 22 potential bugs when deleting objects references. by Serhiy Storchaka · 11 years ago
- 505ff75 Issue #20437: Fixed 21 potential bugs when deleting objects references. by Serhiy Storchaka · 11 years ago
- 2623c8c Issue #20530: Argument Clinic's signature format has been revised again. by Larry Hastings · 11 years ago
- d979e43 Close #20500: Don't trigger PyObject_Str assertion at shutdown by Nick Coghlan · 11 years ago
- a9b1524 Close #20404: blacklist non-text encodings in io.TextIOWrapper by Nick Coghlan · 11 years ago
- 7726ac9 #Issue 20456: Several improvements and bugfixes for Argument Clinic, by Larry Hastings · 11 years ago
- a17b6bb Issue #20162: Fix an alignment issue in the siphash24() hash function which by Victor Stinner · 11 years ago
- 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 11 years ago
- 5c66189 Issue #20189: Four additional builtin types (PyTypeObject, by Larry Hastings · 11 years ago
- 2bd59da Issue #2382: SyntaxError cursor "^" now is written at correct position in most by Serhiy Storchaka · 11 years ago
- 65fd059 Issue #2382: SyntaxError cursor "^" now is written at correct position in most by Serhiy Storchaka · 11 years ago
- 2d854c8 Issue #20024: Py_BuildValue() now saves/restores the current exception before by Victor Stinner · 11 years ago
- 34e4628 Merge from 3.3. by Stefan Krah · 11 years ago
- 6c01e38 Issue #19036: Including locale.h should not depend on HAVE_LANGINFO_H. by Stefan Krah · 11 years ago
- b7ccb20 Issue #20294: Argument Clinic now supports argument parsing for __new__ and by Larry Hastings · 11 years ago
- bebf735 Issue #20287: Argument Clinic's output is now configurable, allowing by Larry Hastings · 11 years ago
- a6dec2e Remove an unneeded cast. by Brett Cannon · 11 years ago
- 4caa61d Issue #20152: import.c now uses Argument Clinic. by Brett Cannon · 11 years ago
- e4314e0 Issue 19713: Remove PEP 451-related code that should have been factored out. by Eric Snow · 11 years ago
- 77561cc Issue #20141: Improved Argument Clinic's support for the PyArg_Parse "O!" by Larry Hastings · 11 years ago
- 1500d49 Issue 19713: Add PEP 451-related deprecations. by Eric Snow · 11 years ago
- d749c7a Issue #19927: Add __eq__ to path-based loaders in importlib. by Eric Snow · 11 years ago
- fbc7851 Issue #20097: Fix bad use of "self" in importlib's WindowsRegistryFinder. by Eric Snow · 11 years ago
- a015bb1 merge 3.3 by Benjamin Peterson · 11 years ago
- fa10ae0 update copyright year by Benjamin Peterson · 11 years ago
- af01f66 Issue #16136: Remove VMS support and VMS-related code by Christian Heimes · 11 years ago
- ed0b87d Fix the C definition of the sys._debugmallocstats() function: the function has by Victor Stinner · 11 years ago
- 5272fa9 Fix _Py_DisplaySourceLine(), if PyTokenizer_FindEncodingFilename() fails, clear by Victor Stinner · 11 years ago
- 61e851b Remove some dead code in importlib, introduced with the PEP 451 patch. by Eric Snow · 11 years ago
- 85c2497 Issue #16404: Add checks for return value of PyLong_FromLong() in by Serhiy Storchaka · 11 years ago
- 48d761e Issue #16404: Add checks for return value of PyLong_FromLong() in by Serhiy Storchaka · 11 years ago
- 11ee080 Fixed leak in sys.flags initialization. by Serhiy Storchaka · 11 years ago
- 87a854d Fixed leak in sys.flags initialization. by Serhiy Storchaka · 11 years ago
- 590cebe Issue #19787: PyThread_set_key_value() now always set the value by Victor Stinner · 11 years ago
- 441adb8 Backout changeset 46393019b650 by Victor Stinner · 11 years ago