summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Revert 2.312; turns out interning the file name did do some good (reducingMichael W. Hudson2004-08-041-1/+1
* Don't intern the filename of a file being compiled.Michael W. Hudson2004-08-031-1/+1
* Fix for the unfortunate fact that PyDict_GetItem and PyObject_GetItemMichael W. Hudson2004-08-021-2/+4
* for some reason, the lack of adherence to Python's C whitespace rulesMichael W. Hudson2004-08-021-2/+2
* fix for @decorators under a debug build.Anthony Baxter2004-08-021-0/+1
* Completed the patch for Bug #215126.Raymond Hettinger2004-08-022-5/+9
* PEP-0318, @decorator-style. In Guido's words:Anthony Baxter2004-08-022-1099/+1252
* PyImport_ExecCodeModuleEx(): remove module from sys.modules in error cases.Tim Peters2004-08-021-16/+46
* lock_held() docs: Use True/False instead of 1/0. The LaTeX docs wereTim Peters2004-08-011-3/+3
* Trimmed trailing whitespace.Tim Peters2004-08-011-2/+2
* Patch #984714: Properly diagnose E_DECODE errors.Martin v. Löwis2004-07-211-0/+3
* Check the type of values returned by __int__, __float__, __long__,Neil Schemenauer2004-07-191-2/+20
* Upgrade None assignment SyntaxWarning to a SyntaxError.Raymond Hettinger2004-07-171-7/+6
* optimize_code(): Repaired gross error in new special-casing for None.Tim Peters2004-07-171-1/+2
* Treat None as a constant.Raymond Hettinger2004-07-161-4/+20
* Fix for 838140: don't call NSUnlinkModule when we fail to find ourJack Jansen2004-07-151-2/+2
* Moved PyMac_GetScript() to _localemodule, which is the only place whereJack Jansen2004-07-151-24/+0
* This is Pete Shinners' patch from his bug reportMichael W. Hudson2004-07-141-10/+30
* Add PyArg_VaParseTupleAndKeywords(). Document this function andBrett Cannon2004-07-101-0/+36
* 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