summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Handle a few more error conditions.Neal Norwitz2006-08-211-0/+5
* Patch #1542451: disallow continue anywhere under a finallyNeal Norwitz2006-08-211-4/+9
* Add assert to make Klocwork happy (#276)Neal Norwitz2006-08-211-0/+1
* Move peephole optimizer to separate file.Jeremy Hylton2006-08-212-608/+616
* Handle PyString_FromInternedString() failing (unlikely, but possible).Neal Norwitz2006-08-191-9/+8
* cpathname could be NULL if it was longer than MAXPATHLEN. Don't tryNeal Norwitz2006-08-131-1/+6
* Move/copy assert for tstate != NULL before first use.Neal Norwitz2006-08-131-1/+7
* Patch #1538606, Patch to fix __index__() clipping.Neal Norwitz2006-08-121-9/+9
* PyModule_GetDict() can fail, produce fatal errors if this happens on startup.Neal Norwitz2006-08-121-0/+4
* Whoops, how did that get in there. :-) Revert all the parts of 51227 that we...Neal Norwitz2006-08-122-12/+0
* Check returned pointer is valid.Neal Norwitz2006-08-122-0/+12
* This code is actually not used unless WITHOUT_COMPLEX is defined.Neal Norwitz2006-08-121-0/+8
* It's highly unlikely, though possible for PyEval_Get*() to return NULLs.Neal Norwitz2006-08-121-2/+2
* Even though _Py_Mangle() isn't truly public anyone can call it andNeal Norwitz2006-08-121-2/+2
* Klocwork made another run and found a bunch more problems.Neal Norwitz2006-08-122-1/+8
* Followup to bug #1069160.Tim Peters2006-08-101-12/+27
* Concatenation on a long string breaks (SF #1526585).Armin Rigo2006-08-091-3/+9
* Introduce an upper bound on tuple nesting depth inGeorg Brandl2006-08-091-0/+3
* Bug #1535165: fixed a segfault in input() and raw_input() whenGeorg Brandl2006-08-061-1/+1
* On Windows, make PyErr_Warn an exported function again.Thomas Heller2006-08-041-1/+1
* There were really two issuesNeal Norwitz2006-08-041-1/+2
* Bug #1333982: string/number constants were inappropriately storedNeal Norwitz2006-08-041-2/+4
* Bug #1191458: tracing over for loops now produces a line eventNeal Norwitz2006-08-042-8/+48
* Add some asserts and update commentsNeal Norwitz2006-07-302-2/+4
* Add PyErr_WarnEx() so C code can pass the stacklevel to warnings.warn().Neal Norwitz2006-07-301-2/+13
* Patch #1531113: Fix augmented assignment with yield expressions.Neal Norwitz2006-07-302-9/+12
* Bug #1529871: The speed enhancement patch #921466 broke Python's compliancePhillip J. Eby2006-07-281-34/+132
* Bug #1521947: possible bug in mystrtol.c with recent gcc.Tim Peters2006-07-271-9/+21
* Part of bug #1523610: fix miscalculation of buffer length.Georg Brandl2006-07-261-2/+10
* bugfix: PyThread_start_new_thread() returns the thread ID, not a flag;Andrew MacIntyre2006-07-231-7/+4
* If the for loop isn't entered, entryblock will be NULL. If passedNeal Norwitz2006-07-231-0/+2
* Handle more mem alloc issues found with failmallocNeal Norwitz2006-07-232-1/+5
* Fix more memory allocation issues found with failmalloc.Neal Norwitz2006-07-224-24/+45
* Handle more memory allocation failures without crashing.Neal Norwitz2006-07-215-8/+38
* Speel initialise write. Tanks Anthony.Neal Norwitz2006-07-211-1/+1
* Handle allocation failures gracefully. Found with failmalloc.Neal Norwitz2006-07-213-41/+45
* SF bug 1524317: configure --without-threads fails to buildTim Peters2006-07-191-48/+47
* Reported by Klocwork #151.Neal Norwitz2006-07-171-2/+13
* Fix memory leak under some conditions.Neal Norwitz2006-07-161-7/+9
* Bug #1512814, Fix incorrect lineno's when code within a functionNeal Norwitz2006-07-161-5/+6
* Accept long options "--help" and "--version".Georg Brandl2006-07-121-4/+27
* Actually change the MAGIC #. Create a new section for 2.5c1 and mention the ...Neal Norwitz2006-07-121-1/+1
* Bug #1520864: unpacking singleton tuples in for loop (for x, in) work again.Neal Norwitz2006-07-122-2/+7
* Add missing Py_DECREFs.Thomas Heller2006-07-111-1/+2
* After approval from Anthony, merge the tim-current_framesTim Peters2006-07-102-3/+68
* Bug #1512814, Fix incorrect lineno's when code at module scopeNeal Norwitz2006-07-101-1/+9
* On 64 bit systems, int literals that use less than 64 bits are now intsNeal Norwitz2006-07-091-0/+11
* Fix SF bug 1441486: bad unary minus folding in compiler.Neil Schemenauer2006-07-091-20/+53
* Fix AST compiler bug #1501934: incorrect LOAD/STORE_GLOBAL generation.Neil Schemenauer2006-07-092-3/+5
* Fix SF bug #1519018: 'as' is now validated properly in import statementsNeal Norwitz2006-07-081-1/+12