summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* #17178: update any()/all() docstrings to document their behavior with empty i...Ezio Melotti2013-02-151-2/+4
* Issue #5308: Raise ValueError when marshalling too large object (a sequenceSerhiy Storchaka2013-02-131-59/+59
* Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxErrorSerhiy Storchaka2013-02-101-7/+11
* Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...Antoine Pitrou2013-02-094-9/+8
* Issue #16455: On FreeBSD and Solaris, if the locale is C, theVictor Stinner2013-01-031-23/+222
* Issue #16416: Fix compilation errorVictor Stinner2012-12-031-1/+3
* Issue #16416: On Mac OS X, operating system data are now alwaysVictor Stinner2012-12-031-6/+54
* Issue #16588: Silence unused-but-set warnings in Python/thread_pthread.hChristian Heimes2012-12-021-0/+3
* #16306: report only the first unknown option and add more tests. Patch by Se...Ezio Melotti2012-11-231-1/+1
* Remove unused variabile "plain" in builtin_exec.Ezio Melotti2012-11-211-2/+0
* #16306: Fix multiple error messages when unknown command line parameters wher...Ezio Melotti2012-11-181-5/+5
* Issue #15001: fix segfault on "del sys.module['__main__']"Hynek Schlawack2012-11-071-6/+6
* #5057: the peepholer no longer optimizes subscription on unicode literals (e....Ezio Melotti2012-11-041-18/+7
* #16336: fix input checking in the surrogatepass error handler. Patch by Serh...Ezio Melotti2012-11-031-4/+4
* bounds check for bad data (thanks amaury)Philip Jenvey2012-10-271-3/+4
* Fix compilation on WindowsNick Coghlan2012-10-201-1/+1
* Issue #6074: Forward port Windows read-only source file fix from 2.7Nick Coghlan2012-10-191-0/+6
* Cleanup 'k' when the creation of PySTEntryObject fails. ad3824a90261 used to ...Christian Heimes2012-09-121-1/+3
* Partly revert ad3824a90261 and add comment about reference ownershipChristian Heimes2012-09-121-2/+1
* Fix null pointer dereferencing in structmember.c PyMember_SetOne() for T_CHAR...Christian Heimes2012-09-111-5/+1
* Fixed memory leak in error branch of parsestrplus. CID 715374 Variable s goin...Christian Heimes2012-09-101-0/+1
* Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641Christian Heimes2012-09-101-0/+1
* Closed reference leak of variable 'k' in function ste_new which wasn't decref...Christian Heimes2012-09-101-1/+2
* Issue #15340: Fix importing the random module when /dev/urandom cannot be ope...Antoine Pitrou2012-09-071-1/+2
* Issue #13992: The trashcan mechanism is now thread-safe. This eliminatesAntoine Pitrou2012-09-051-0/+3
* put * in the normal placeBenjamin Peterson2012-09-021-2/+2
* move variable decl to the top of the functionBenjamin Peterson2012-09-021-2/+2
* prevert ast errors from being normalized before ast_error_finish is called (c...Benjamin Peterson2012-09-021-0/+8
* Issue #15726: Fix incorrect bounds checking in PyState_FindModule.Antoine Pitrou2012-08-201-1/+1
* Issue #15741: Fix potential NULL dereference. Found by Coverity.Stefan Krah2012-08-201-0/+2
* Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-152-3/+14
* Close #13119: use "\r\n" newline for sys.stdout/err on WindowsVictor Stinner2012-08-031-5/+8
* remove unused variableMeador Inge2012-07-181-1/+1
* Issue #15368: fixing variable typo.Meador Inge2012-07-181-1/+1
* Issue #15368: make bytecode generation deterministic.Meador Inge2012-07-181-2/+22
* Issue #15020: The program name used to search for Python's path is now "pytho...Antoine Pitrou2012-07-051-0/+4
* don't leak if the __class__ closure is setBenjamin Peterson2012-06-021-4/+2
* Issue #14761: Fix potential leak on an error case in the import machinery.Antoine Pitrou2012-05-091-1/+2
* Issue #14749: Add support for 'Z' to skipitem() in Python/getargs.c.Larry Hastings2012-05-081-0/+1
* mangle keyword-only argname when loading defaults (closes #14607)Benjamin Peterson2012-04-171-1/+5
* move outside WITH_THREAD conditionalBenjamin Peterson2012-04-131-2/+2
* take linkage def outside of WITH_THREAD conditional (closes #14569)Benjamin Peterson2012-04-131-4/+3
* fix parse_syntax_error to clean up its resourcesBenjamin Peterson2012-04-031-20/+31
* Fix typo when "PyObject*" was changed to "identifier"Kristján Valur Jónsson2012-03-231-1/+1
* this should technicaly be identifierBenjamin Peterson2012-03-221-1/+1
* check for NULLBenjamin Peterson2012-03-221-1/+2
* check by equality for __future__ not identity (closes #14378)Benjamin Peterson2012-03-221-8/+2
* Fixes Issue #14331: Use significantly less stack space when importing modules byGregory P. Smith2012-03-181-39/+127
* Issue #14184: Increase the default stack size for secondary threads onNed Deily2012-03-131-8/+12
* kill this disabled codeBenjamin Peterson2012-03-121-6/+0