summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Fix a couple of signed/unsigned comparison warningsNeal Norwitz2004-07-081-1/+1
* Remove unused macros in .c filesNeal Norwitz2004-07-082-8/+0
* This closes patch:Michael W. Hudson2004-07-074-14/+5
* * Fix missing return after error message is set.Raymond Hettinger2004-07-061-1/+2
* When importing an extension on Windows, the code reads the PE 'importThomas Heller2004-07-021-0/+12
* SF Bug #215126: Over restricted type checking on eval() functionRaymond Hettinger2004-07-022-10/+29
* Patch #923098: Share interned strings in marshal.Martin v. Löwis2004-06-272-24/+83
* Patch #966493: Cleanup generator/eval_frame exposure.Martin v. Löwis2004-06-271-14/+6
* Get ceval.c to compile again by moving declarations before other statments.Raymond Hettinger2004-06-261-1/+2
* Massive performance improvement for C extension and builtin tracing codeNicholas Bastin2004-06-251-51/+27
* Move NOP to end of code transformation.Raymond Hettinger2004-06-241-3/+7
* Less ugly #ifdefs for C profiling fixNicholas Bastin2004-06-221-12/+5
* One forgotten C profiling #ifdefNicholas Bastin2004-06-221-1/+2
* Making C profiling a configure option (at least temporarily)Nicholas Bastin2004-06-221-0/+12
* Install two code generation optimizations that depend on NOP.Raymond Hettinger2004-06-212-3/+33
* Performance tweak: allow stack_pointer and oparg to be register variables.Armin Rigo2004-06-171-7/+16
* Remove compiler warningNeal Norwitz2004-06-131-1/+1
* Make private function staticNeal Norwitz2004-06-131-1/+1
* Patch #774665: Make Python LC_NUMERIC agnostic.Martin v. Löwis2004-06-083-5/+263
* Patch #510695: Add TSC profiling for the VM.Martin v. Löwis2004-06-083-2/+183
* Fix a refcount bug in an obscure code corner.Thomas Heller2004-06-071-0/+1
* SF bug #963956: Bad error mesage when subclassing a moduleRaymond Hettinger2004-06-051-0/+9
* Patch #957398: Add public API for Generator Object/Type.Martin v. Löwis2004-06-011-138/+8
* starting to add comments to explain what's hereFred Drake2004-05-281-0/+11
* SF patch #872326: Generator expression implementationRaymond Hettinger2004-05-193-308/+680
* forward-port 1.17.12.1Anthony Baxter2004-05-131-1/+1
* Some (but not all) of the why code bitfield tests ran faster asRaymond Hettinger2004-04-111-3/+4
* Revert 2.393, elimination of pre-decrementing, whichRaymond Hettinger2004-04-101-17/+13
* Use continue instead of break whereever possible.Raymond Hettinger2004-04-071-2/+8
* * Improve readability and remove data dependencies by convertingRaymond Hettinger2004-04-071-14/+18
* Small code improvements for readability, code size, and/or speed.Raymond Hettinger2004-04-071-58/+54
* Simplify previous checkin (bitfields for WHY codes).Raymond Hettinger2004-04-061-12/+14
* Coded WHY flags as bitfields (taking inspiration from tp_flags).Raymond Hettinger2004-04-061-20/+16
* Since the fast_yield branch target was introduced, it appears that mostTim Peters2004-04-051-41/+41
* Bump the magic number to avoid sharing bytecode between 2.3 and 2.4.Jeremy Hylton2004-04-011-32/+14
* OS/2 VACPP build updates/fixesAndrew MacIntyre2004-03-291-1/+1
* Marshal clean-up (SF patch #873224)Armin Rigo2004-03-262-70/+61
* A few more PyThreadState_Get to PyThreadState_GET conversionsNicholas Bastin2004-03-251-1/+1
* Changed random calls to PyThreadState_Get() to use the macroNicholas Bastin2004-03-247-25/+25
* Enable the profiling of C functions (builtins and extensions)Nicholas Bastin2004-03-242-6/+52
* Decref all if ensure_fromlist fails. Fixes #876533.Martin v. Löwis2004-03-231-2/+3
* Lost reference.Armin Rigo2004-03-221-6/+8
* Fix SF bug #765624.Armin Rigo2004-03-221-5/+12
* Fix for line events in the case:Armin Rigo2004-03-221-1/+31
* Moved tracebackobject to traceback.h, Closes SF Bug #497067Nicholas Bastin2004-03-211-23/+16
* Improve byte coding for multiple assignments.Raymond Hettinger2004-03-211-3/+74
* Cancelled checkin, sorry.Armin Rigo2004-03-201-10/+6
* A 2% speed improvement with gcc on low-endian machines. My guess is that thisArmin Rigo2004-03-201-6/+10
* 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