summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* LIST_APPEND is predicably followed by JUMP_ABSOLUTE.Raymond Hettinger2004-03-121-1/+5
* Move the code for BREAK and CONTINUE_LOOP to be near FOR_ITER.Raymond Hettinger2004-03-121-9/+9
* Speedup for-loops by inlining PyIter_Next(). Saves duplicate testsRaymond Hettinger2004-03-121-8/+10
* Refactor and optimize code for UNPACK_SEQUENCE.Raymond Hettinger2004-03-081-27/+13
* SF patch #910929: Optimize list comprehensionsRaymond Hettinger2004-03-072-3/+10
* SF Patch #902444: Use process scope thread on FreeBSD. System scopeHye-Shik Chang2004-03-041-1/+1
* typoSkip Montanaro2004-03-031-1/+1
* Add pystack definition to Misc/gdbinit with some explanation of its behaviorSkip Montanaro2004-03-011-0/+4
* This is my patch #876198 plus a NEWS entry and a header frob.Michael W. Hudson2004-02-121-1/+1
* remove support for missing ANSI C header files (limits.h, stddef.h, etc).Skip Montanaro2004-02-103-21/+0
* SF patch #884022: dynamic execution profiling vs opcode predictionRaymond Hettinger2004-02-081-0/+9
* Remove support for systems defining Py_PTHREAD_D[467] inSkip Montanaro2004-02-071-72/+0
* SF patch #864059: optimize eval_frameRaymond Hettinger2004-02-061-5/+6
* Fix input() builtin function to respect compiler flags.Hye-Shik Chang2004-02-021-1/+4
* Remove support for DYNIX, IRIX 4, --with-sgi-dl, --with-dl-dldSkip Montanaro2004-01-171-4/+0
* remove DGUX support.Skip Montanaro2004-01-172-14/+2
* Apply pre-sizing optimization to a broader class of objects.Raymond Hettinger2004-01-041-8/+4
* Apply map/zip pre-sizing optimization to a broader class of objects.Raymond Hettinger2004-01-041-11/+7
* Add comment to mollify Tim.Jeremy Hylton2004-01-021-0/+2
* Fix gcc 3.3 warnings related to Py_UNICODE_WIDE.Hye-Shik Chang2003-12-291-2/+20
* Guido grants a Christmas wish:Raymond Hettinger2003-12-171-0/+45
* Remove the PendingDeprecationWarning from apply(). apply() willFred Drake2003-12-051-4/+0
* Py_Finalize(): disabled the second call of cyclic gc, and added extensiveTim Peters2003-12-011-2/+27
* - Removed FutureWarnings related to hex/oct literals and conversionsGuido van Rossum2003-11-291-13/+1
* Getting rid of all the code inside #ifdef macintosh too.Jack Jansen2003-11-206-146/+2
* Getting rid of code dependent on GUSI or the MetroWerks compiler.Jack Jansen2003-11-192-12/+0
* Getting rid of code conditional on TARGET_API_MAC_*.Jack Jansen2003-11-191-37/+0
* WITHOUT_FRAMEWORKS conditional code bites the dust: this was forJack Jansen2003-11-191-4/+0
* Getting rid of support for the ancient Apple MPW compiler.Jack Jansen2003-11-194-23/+0
* MacOS9 support is gone.Jack Jansen2003-11-191-113/+0
* * Migrate set() and frozenset() from the sandbox.Raymond Hettinger2003-11-161-0/+2
* Patch #804543: strdup saved locales. Backported to 2.3.Martin v. Löwis2003-11-131-1/+2
* Implement and apply PEP 322, reverse iterationRaymond Hettinger2003-11-061-0/+1
* Make undetected error on stack unwind a fatal error.Jeremy Hylton2003-11-051-4/+4
* Deleting cyclic object comparison.Armin Rigo2003-10-281-20/+36
* regressing the performance bugfix -- Guido wants the performance bug leftAlex Martelli2003-10-251-1/+1
* oh dear. Wrong manipulation. Committed a version of ceval.c from myArmin Rigo2003-10-251-28/+20
* Made function declaration a proper C prototypeArmin Rigo2003-10-252-21/+29
* Changed builtin_sum to use PyNumber_InPlaceAdd (same semantics, but fixesAlex Martelli2003-10-251-1/+1
* Use PyArg_UnpackTuple() where possible.Raymond Hettinger2003-10-251-1/+1
* Patch #828384: Don't discard nested exception in AddObject.Martin v. Löwis2003-10-241-2/+3
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-1/+1
* Patch #792869: Clarify error message for parameters declared global,Martin v. Löwis2003-10-181-4/+3
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-126-14/+14
* Fix SF bug [ 808594 ] leak on lambda with duplicate arguments error.Jeremy Hylton2003-09-221-15/+16
* Patch #805613: Fix usage of the PTH library.Martin v. Löwis2003-09-202-1/+7
* Improve the leak fix so that PyTuple_New is only called when needed.Raymond Hettinger2003-09-161-9/+11
* Correct check of PyUnicode_Resize() return value.Jeremy Hylton2003-09-161-1/+2
* Reflow long lines and reformat.Jeremy Hylton2003-09-161-13/+13
* Fix leak discovered in test_new by Michael Hudson.Raymond Hettinger2003-09-151-17/+14