- 20b654a Issue #16455: On FreeBSD and Solaris, if the locale is C, the by Victor Stinner · 12 years ago
- 41a234a Issue #16416: Fix compilation error by Victor Stinner · 12 years ago
- 27b1ca2 Issue #16416: On Mac OS X, operating system data are now always by Victor Stinner · 12 years ago
- 56379c0 Issue #16588: Silence unused-but-set warnings in Python/thread_pthread.h by Christian Heimes · 12 years ago
- a0dd22e #16306: report only the first unknown option and add more tests. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
- 3c76aa6 Remove unused variabile "plain" in builtin_exec. by Ezio Melotti · 12 years ago
- 7c66319 #16306: Fix multiple error messages when unknown command line parameters where passed to the interpreter. Patch by Hieu Nguyen. by Ezio Melotti · 12 years ago
- 5c6b3e2 Issue #15001: fix segfault on "del sys.module['__main__']" by Hynek Schlawack · 12 years ago
- 6c5f521 #5057: the peepholer no longer optimizes subscription on unicode literals (e.g. u"foo"[0]) in order to produce compatible pyc files between narrow and wide builds. by Ezio Melotti · 12 years ago
- 540da76 #16336: fix input checking in the surrogatepass error handler. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
- 45c4149 bounds check for bad data (thanks amaury) by Philip Jenvey · 12 years ago
- 557c76c Fix compilation on Windows by Nick Coghlan · 12 years ago
- 34937ce Issue #6074: Forward port Windows read-only source file fix from 2.7 by Nick Coghlan · 12 years ago
- 55ad651 Cleanup 'k' when the creation of PySTEntryObject fails. ad3824a90261 used to decref 'k' in too many error cases. by Christian Heimes · 12 years ago
- 1526582 Partly revert ad3824a90261 and add comment about reference ownership by Christian Heimes · 12 years ago
- 5557a9c Fix null pointer dereferencing in structmember.c PyMember_SetOne() for T_CHAR. _PyUnicode_AsStringAndSize() can return NULL without touching the len argument. Also remove unnecessary PyUnicode_Check(), _PyUnicode_AsStringAndSize() performance the test again. CID 486815 by Christian Heimes · 12 years ago
- 3d46339 Fixed memory leak in error branch of parsestrplus. CID 715374 Variable s going out of scope leaks the storage it points to. by Christian Heimes · 12 years ago
- 48d8d21 Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641 by Christian Heimes · 12 years ago
- 837e53a Closed reference leak of variable 'k' in function ste_new which wasn't decrefed in error cases by Christian Heimes · 12 years ago
- 7ff1822 Issue #15340: Fix importing the random module when /dev/urandom cannot be opened. by Antoine Pitrou · 12 years ago
- 56cd62c Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
- c7dedb0 put * in the normal place by Benjamin Peterson · 12 years ago
- c5d7518 move variable decl to the top of the function by Benjamin Peterson · 12 years ago
- 2e2c903 prevert ast errors from being normalized before ast_error_finish is called (closes #15846) by Benjamin Peterson · 12 years ago
- 75506e8 Issue #15726: Fix incorrect bounds checking in PyState_FindModule. by Antoine Pitrou · 12 years ago
- 07795df Issue #15741: Fix potential NULL dereference. Found by Coverity. by Stefan Krah · 12 years ago
- 6f430e4 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
- 90ef747 Close #13119: use "\r\n" newline for sys.stdout/err on Windows by Victor Stinner · 12 years ago
- 996ae04 remove unused variable by Meador Inge · 12 years ago
- f69e24e Issue #15368: fixing variable typo. by Meador Inge · 12 years ago
- 2ca6315 Issue #15368: make bytecode generation deterministic. by Meador Inge · 12 years ago
- 01cca5e Issue #15020: The program name used to search for Python's path is now "python3" under Unix, not "python". by Antoine Pitrou · 12 years ago
- 8e8fbea don't leak if the __class__ closure is set by Benjamin Peterson · 13 years ago
- d576c71 Issue #14761: Fix potential leak on an error case in the import machinery. by Antoine Pitrou · 13 years ago
- d9e4a41 Issue #14749: Add support for 'Z' to skipitem() in Python/getargs.c. by Larry Hastings · 13 years ago
- 32c59b6 mangle keyword-only argname when loading defaults (closes #14607) by Benjamin Peterson · 13 years ago
- 3bf0175 move outside WITH_THREAD conditional by Benjamin Peterson · 13 years ago
- 43162b8 take linkage def outside of WITH_THREAD conditional (closes #14569) by Benjamin Peterson · 13 years ago
- 80d5042 fix parse_syntax_error to clean up its resources by Benjamin Peterson · 13 years ago
- c5d47d5 Fix typo when "PyObject*" was changed to "identifier" by Kristján Valur Jónsson · 13 years ago
- 9faf5ee this should technicaly be identifier by Benjamin Peterson · 13 years ago
- ab79c71 check for NULL by Benjamin Peterson · 13 years ago
- a4e4e35 check by equality for __future__ not identity (closes #14378) by Benjamin Peterson · 13 years ago
- c809f98 Fixes Issue #14331: Use significantly less stack space when importing modules by by Gregory P. Smith · 13 years ago
- 7ca97d5 Issue #14184: Increase the default stack size for secondary threads on by Ned Deily · 13 years ago
- 3f35846 kill this disabled code by Benjamin Peterson · 13 years ago
- bc4665e use correct naming convention by Benjamin Peterson · 13 years ago
- 4a90ef0 Issue #14177: marshal.loads() now raises TypeError when given an unicode string. by Antoine Pitrou · 13 years ago
- 679e9d3 Issue #14172: Fix reference leak when marshalling a buffer-like object (other than a bytes object). by Antoine Pitrou · 13 years ago
- 4f22a8d Issue #14084: Fix a file descriptor leak when importing a module with a bad encoding. by Antoine Pitrou · 13 years ago
- 7214612 In find_module(), do not silence fileno() and dup() errors. by Antoine Pitrou · 13 years ago
- 86838b0 Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. by Antoine Pitrou · 13 years ago
- e249dca merge 3.2 by Benjamin Peterson · 13 years ago
- 69e9727 ensure no one tries to hash things before the random seed is found by Benjamin Peterson · 13 years ago
- 91e5c08 Fix typo in conditional. by Georg Brandl · 13 years ago
- 12897d7 Fix typo in conditional. by Georg Brandl · 13 years ago
- 09a7c72 Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
- 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
- 9713321 Document absoluteness of sys.executable by Petri Lehtinen · 13 years ago
- 33d15f7 Port import fixes from 2.7. by Antoine Pitrou · 13 years ago
- 2be60af Issue #11235: Fix OverflowError when trying to import a source file whose modification time doesn't fit in a 32-bit timestamp. by Antoine Pitrou · 13 years ago
- 1b468af Issue #13722: Avoid silencing ImportErrors when initializing the codecs registry. by Antoine Pitrou · 13 years ago
- 6c40eb7 Fix the builtin module initialization code to store the init function for future reinitialization. by Antoine Pitrou · 13 years ago
- 2fabfac Fix a memory leak when initializing the standard I/O streams. by Antoine Pitrou · 13 years ago
- 3388060 Issue #13629: Renumber the tokens in token.h to match the _PyParser_TokenNames indexes. by Meador Inge · 13 years ago
- 0010256 fold into one if statement by Benjamin Peterson · 13 years ago
- a12d5c6 fix formatting by Benjamin Peterson · 13 years ago
- f606e68 add another year to glorious PSF IP by Benjamin Peterson · 13 years ago
- 5126df6 Remove obsolete py3k comment. by Florent Xicluna · 13 years ago
- 11942a5 Issue #7111: Python can now be run without a stdin, stdout or stderr stream. by Antoine Pitrou · 13 years ago
- d7c8fbf Issue #13444: When stdout has been closed explicitly, we should not attempt to flush it at shutdown and print an error. by Antoine Pitrou · 13 years ago
- 5e8f810 Issue #13436: commit regenerated Python-ast.c by Amaury Forgeot d'Arc · 13 years ago
- a233df8 Issue #13156: _PyGILState_Reinit(): Re-associate the auto thread state with the by Charles-François Natali · 13 years ago
- 0d776b1 Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode by Antoine Pitrou · 13 years ago
- 97c1bef Issue #13343: Fix a SystemError when a lambda expression uses a global by Amaury Forgeot d'Arc · 13 years ago
- 5df1108 Add signatures to the docstring of functions added to imp by PEP 3147 by Éric Araujo · 13 years ago
- 8db076c Issue #10363: Deallocate global locks in Py_Finalize(). by Antoine Pitrou · 13 years ago
- 4d46c2a Remove unused variable. by Florent Xicluna · 13 years ago
- de31b19 Issue 1294232: Fix errors in metaclass calculation affecting some cases of metaclass inheritance. Patch by Daniel Urban. by Nick Coghlan · 13 years ago
- 53ffdc5 Issue #7732: Don't open a directory as a file anymore while importing a by Victor Stinner · 13 years ago
- 916048d - Issue #13021: Missing decref on an error path. Thanks to Suman Saha for by Barry Warsaw · 13 years ago
- 1619132 Fix the import machinery if there is an error on sys.path or sys.meta_path by Victor Stinner · 13 years ago
- 0af0306 Remove unused variable if Python is build without threads by Victor Stinner · 13 years ago
- 0224d4e accept bytes for the AST 'string' type by Benjamin Peterson · 13 years ago
- 6c0ba44 Fix style in code added by edba722f3b02 by Éric Araujo · 13 years ago
- cf9d3c0 Issue #1813: Fix codec lookup under Turkish locales. by Antoine Pitrou · 13 years ago
- 180e635 None is ok for identifiers but not strings by Benjamin Peterson · 13 years ago
- efad244 hardcode the old svn __version__ by Benjamin Peterson · 13 years ago
- 2193d2b type check AST strings and identifiers by Benjamin Peterson · 13 years ago
- 5afa03a catch nasty exception classes with __new__ that doesn't return a exception (closes #11627) by Benjamin Peterson · 13 years ago
- bb4a747 start out this branch always with filename NULL by Benjamin Peterson · 13 years ago
- a55007a plug refleak by Benjamin Peterson · 13 years ago
- 8b0508e Issue #12467: warnings: fix a race condition if a warning is emitted at by Victor Stinner · 13 years ago
- ac91341 never retain a generator's caller's exception state on the generator after a yield/return by Benjamin Peterson · 13 years ago
- d2ed630 merge heads by Benjamin Peterson · 13 years ago
- 83195c3 restore a generator's caller's exception state both on yield and (last) return by Benjamin Peterson · 13 years ago
- b7149ca fix indentation by Benjamin Peterson · 14 years ago
- f63d615 fix indentation by Benjamin Peterson · 14 years ago
- 623e8b8 Removed some unused local variables. by Vinay Sajip · 13 years ago
- 5bdae3b Closes #12291: Fixed bug which was found when doing multiple loads from one stream. by Vinay Sajip · 13 years ago