summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Fix potential NULL pointer dereferencing in ast moduleChristian Heimes2013-07-241-1/+1
* return NULL hereBenjamin Peterson2013-07-231-1/+2
* Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0],Christian Heimes2013-07-221-3/+4
* fix spacingBenjamin Peterson2013-07-211-1/+1
* let's not return NULL from functions that should return intsBenjamin Peterson2013-07-211-2/+2
* Check return value of lseek() in _Py_DisplaySourceLine().Christian Heimes2013-07-211-1/+7
* Check return value of PyObject_AsFileDescriptor() in _Py_DisplaySourceLine() ...Christian Heimes2013-07-201-0/+5
* Check return value of fstat() in _PyImport_GetDynLoadFunc()Christian Heimes2013-07-201-1/+3
* Add missing check of PyDict_SetItem()'s return value in _PyImport_FindExtensi...Christian Heimes2013-07-201-1/+4
* Add missing check of PyDict_SetItem()'s return value in PyEval_EvalCodeEx()Christian Heimes2013-07-201-1/+3
* Issue #17872: Fix a segfault in marshal.load() when input stream returnsSerhiy Storchaka2013-07-111-15/+20
* Fix reference leaks introduced by the patch for issue #5308.Serhiy Storchaka2013-07-111-12/+11
* Issue #18426: improve exception message. Courtesy of AmauryChristian Heimes2013-07-111-1/+5
* Issue #18426: Fix NULL pointer dereference in C extension import whenChristian Heimes2013-07-111-0/+2
* #18424: PEP8ify the tense of the sum docstring.R David Murray2013-07-101-2/+2
* Issue #18351: Fix various issues withBrett Cannon2013-07-061-3369/+3367
* Issue #18328: Reorder ops in PyThreadState_Delete*() functions. Now theChristian Heimes2013-07-011-2/+2
* Issue #18137: Detect integer overflow on precision in float.__format__() andVictor Stinner2013-06-231-2/+14
* Issue #18256: Compilation fix for recent AIX releases. Patch by David Edelsohn.Antoine Pitrou2013-06-181-0/+3
* Fix a misnaming of a method and an argumentBrett Cannon2013-06-161-1071/+1071
* Issue #18180: Fix ref leak in _PyImport_GetDynLoadWindows().Richard Oudkerk2013-06-101-2/+3
* move definition to top of blockBenjamin Peterson2013-05-171-1/+2
* complain about "global __class__" in a class body (closes #17983)Benjamin Peterson2013-05-151-0/+6
* when arguments are cells clear the locals slot (backport of #17927)Benjamin Peterson2013-05-151-2/+6
* Fix crash caused by 8c1385205a35Antoine Pitrou2013-05-051-6/+8
* Issue #17408: Avoid using an obsolete instance of the copyreg module when the...Antoine Pitrou2013-05-041-3/+1
* ignore errors when trying to fetch sys.stdin.encoding (closes #17863)Benjamin Peterson2013-04-291-9/+8
* raise an ImportError (rather than fatal) when __import__ is not found in __bu...Benjamin Peterson2013-04-291-1/+2
* #17413: make sure settrace funcs get passed exception instances for 'value'.R David Murray2013-04-191-0/+1
* Fix indentation.Ezio Melotti2013-04-191-6/+6
* Revert a premature patch for issue #14010 (changeset aaaf36026511).Serhiy Storchaka2013-04-061-21/+9
* Issue #17645: convert an assert() into a proper exception in _Py_Mangle().Antoine Pitrou2013-04-061-2/+5
* Issue #14010: Fix a crash when iterating or deleting deeply nested filtersSerhiy Storchaka2013-04-061-9/+21
* Issue #17619: Make input() check for Ctrl-C correctly on Windows.Richard Oudkerk2013-04-031-0/+1
* Issue #17357: Add missing verbosity messages when running underBrett Cannon2013-04-011-4268/+4281
* Fixes issue4653 - Correctly specify the buffer size to FormatMessageW andGregory P. Smith2013-03-231-1/+1
* Issue #15038 : Fixing the condition broadcast and docs.Kristján Valur Jónsson2013-03-201-6/+6
* Rebuild importlib.h after the changes introduced in 0f65bf6063ca.Ezio Melotti2013-02-201-1092/+1089
* #17178: merge with 3.2.Ezio Melotti2013-02-151-2/+4
|\
| * #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 #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 #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-095-10/+9
|\ \ | |/
| * Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...Antoine Pitrou2013-02-094-9/+8
* | Issue #17098: Be more stringent of setting __loader__ on early importedBrett Cannon2013-02-011-292/+299
* | Issue #17098: Make sure every module has __loader__ defined.Brett Cannon2013-02-011-283/+289
* | remove unnecessary clearing of listBenjamin Peterson2013-01-191-7/+0
* | Issue #16730: Don't raise an exception inBrett Cannon2013-01-111-943/+946