summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix refleaks reported by Shane Hathaway in SF patch #1515361. This changeNeal Norwitz2006-07-061-2/+4
* Bug #1417699: Reject locale-specific decimal point in float()Martin v. Löwis2006-07-031-0/+7
* Bug #1511381: codec_getstreamcodec() in codec.c is corrected toHye-Shik Chang2006-06-231-3/+6
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-134-5/+163
* i and j are initialized below when used. No need to do it twiceNeal Norwitz2006-06-121-1/+1
* Get rid of f_restricted too. Doc the other 4 ints that were already removedNeal Norwitz2006-06-121-1/+1
* Fix indentation of case and a Py_ssize_t issue.Neal Norwitz2006-06-121-2/+2
* Patch #1495999: Part two of Windows CE changes.Martin v. Löwis2006-06-106-3/+9
* Argh. "integer" is a very confusing word ;)Georg Brandl2006-06-081-2/+2
* Bug #1502750: Fix getargs "i" format to use LONG_MIN and LONG_MAX for bounds ...Georg Brandl2006-06-081-2/+2
* _PySys_Init(): It's rarely a good idea to size a buffer to theTim Peters2006-06-061-1/+1
* Add 3 more bytes to a buffer to cover constants in string and null byte on to...Brett Cannon2006-06-051-1/+1
* Revert revisions:Tim Peters2006-06-044-170/+4
* Patch #1346214: correctly optimize away "if 0"-style stmtsGeorg Brandl2006-06-042-15/+49
* clean up function declarations to conform to PEP-7 style.Andrew MacIntyre2006-06-043-22/+44
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-044-4/+170
* [ 1497053 ] Let dicts propagate the exceptions in user __eq__().Armin Rigo2006-06-011-2/+13
* Convert more modules to METH_VARARGS.Georg Brandl2006-05-291-5/+3
* Make use of METH_O and METH_NOARGS where possible.Georg Brandl2006-05-291-2/+2
* Fix compiler warning.Georg Brandl2006-05-291-1/+1
* Handle PyMem_Malloc failure in pystrtod.c. Closes #1494671.Georg Brandl2006-05-291-0/+7
* Fix #1494605.Georg Brandl2006-05-291-1/+2
* Correct None refcount issue in Mac modules. (Are theyGeorg Brandl2006-05-281-1/+1
* The empty string is a valid import path.Georg Brandl2006-05-281-2/+4