summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* This is Mark Russell's patch:Michael W. Hudson2004-08-172-37/+34
* The attached patch fixes FTBFS on GNU/k*BSD. The problem happens on GNU/k*BSDMatthias Klose2004-08-161-0/+10
* Correct the order of application for decorators. Meant to be bottom-up and notBrett Cannon2004-08-151-1/+4
* Fix incorrect comment for (struct compiling)->c_cellvarsBrett Cannon2004-08-151-1/+1
* This is my patch:Michael W. Hudson2004-08-122-2/+34
* code_new(): Wouldn't compile on Windows, because of gcc'ism.Tim Peters2004-08-121-1/+1
* Fix bugMichael W. Hudson2004-08-121-27/+88
* Patch #1005468: Disambiguate "min() or max()" exception string.Martin v. Löwis2004-08-121-3/+4
* This was quite a dark bug in my recent in-place string concatenationArmin Rigo2004-08-071-1/+1
* Subclasses of string can no longer be interned. The semantics ofJeremy Hylton2004-08-071-0/+5
* FixMichael W. Hudson2004-08-071-9/+7
* SF bug #1004088: big code objects (>64K) may be optimized incorrectlyRaymond Hettinger2004-08-061-0/+5
* SF patch #980695: efficient string concatenationRaymond Hettinger2004-08-061-2/+91
* 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