summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT.Mark Hammond2002-07-191-5/+0
* Fix bug [ 549731 ] Unicode encoders appears to leak references.Mark Hammond2002-07-181-4/+10
* SF patch 552161 - Py_AddPendingCall doesn't unlock on fail (DanielGuido van Rossum2002-07-171-1/+3
* Removed more stray instances of statichere, but left _sre.c alone.Tim Peters2002-07-171-1/+1
* staticforward bites the dust.Jeremy Hylton2002-07-171-1/+1
* There's no need for generators to define an explicit next() method.Tim Peters2002-07-171-22/+1
* SF patch # 580411, move frame macros from frameobject.h into ceval.cNeal Norwitz2002-07-141-3/+10
* Don't stomp on an exception set by PyCell_Get()Jeremy Hylton2002-07-111-1/+4
* _Py_AskYesNo(): Removed this function. It was defined only in aTim Peters2002-07-091-20/+0
* Fix SF Bug 564931: compile() traceback must include filename.Thomas Heller2002-07-091-2/+27
* The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: addedTim Peters2002-07-091-1/+1
* Rearranged and added comments to object.h, to clarify many thingsTim Peters2002-07-071-2/+3
* Patch #569753: Remove support for WIN16.Martin v. Löwis2002-06-307-49/+18
* Got rid of an extraneous semicolon.Jack Jansen2002-06-261-1/+1
* Silence compiler warningJeremy Hylton2002-06-251-1/+1
* SF 569257 -- Name mangle double underscored variable names in __slots__.Raymond Hettinger2002-06-201-6/+6
* Fix the docstring for sys.getrefcount().Fred Drake2002-06-201-2/+3
* PyModule_AddObject(): Added missing exceptions.Fred Drake2002-06-171-7/+14
* Apply diff2.txt from SF patch http://www.python.org/sf/566999Walter Dörwald2002-06-171-7/+29
* SF patch 568629 by Oren Tirosh: types made callable.Guido van Rossum2002-06-143-67/+67
* Now FOR_LOOP is gone, loop_subscript can go too.Michael W. Hudson2002-06-141-19/+0
* Fix SF bug # 561858 Assertion with very long listsNeal Norwitz2002-06-141-7/+7
* Fix SF bug # 561858 Assertion with very long listsNeal Norwitz2002-06-142-12/+12
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-133-211/+171
* The opcode FOR_LOOP no longer exists.Guido van Rossum2002-06-131-31/+0
* SF bug 567538: Generator can crash the interpreter (Finn Bock).Guido van Rossum2002-06-121-2/+2
* Patch #488073: AtheOS port.Martin v. Löwis2002-06-113-0/+351
* Patch #505375: Make doc strings optional.Martin v. Löwis2002-06-091-30/+53
* Skip Montanaro's patch, SF 559833, exposing xrange type in builtins.Raymond Hettinger2002-06-051-43/+1
* Change name from string to basestringNeal Norwitz2002-05-311-1/+1
* Fix SF bug [ 561825 ] Confusing error for "del f()"Jeremy Hylton2002-05-311-2/+6
* imp_load_module(): correct and comment the sense of the test for '+'Guido van Rossum2002-05-301-2/+7
* Cover a few corners in the 'U' mode integration to make imp work.Jeremy Hylton2002-05-301-8/+14
* As discussed on python-dev, add a mechanism to indicate featuresNeal Norwitz2002-05-291-0/+9
* Accept u"..." literals even when Unicode is disabled. But theseGuido van Rossum2002-05-281-8/+13
* File modes in filedescr entries are also passed to Python, so we now put "U"Jack Jansen2002-05-281-4/+7
* - A new type object, 'string', is added. This is a common base typeGuido van Rossum2002-05-241-0/+1
* Disambiguate the grammar for backtick.Guido van Rossum2002-05-242-57/+76
* John Aycock correctly pointed out that the grammar forTim Peters2002-05-231-3/+2
* Fix forMichael W. Hudson2002-05-201-1/+1
* SF bug 555042: zip() may trigger MemoryError.Tim Peters2002-05-121-2/+7
* builtin_zip(): Take a good guess at how big the result list will be,Tim Peters2002-04-291-15/+42
* Repair widespread misuse of _PyString_Resize. Since it's clear peopleTim Peters2002-04-271-2/+2
* - New builtin function enumerate(x), from PEP 279. Example:Guido van Rossum2002-04-261-0/+1
* If Py_OptimizeFlag is false then always evaluate assert conditions, don'tNeil Schemenauer2002-04-261-15/+7
* Ignore SIGXFSZ.Jeremy Hylton2002-04-231-0/+3
* Moving pymalloc along.Tim Peters2002-04-221-2/+2
* ceval.c/do_raise(): Tighten the test to disallow raising an instance ofTim Peters2002-04-181-1/+4
* Mass checkin of universal newline support.Jack Jansen2002-04-144-9/+9
* Patch #542659: Eliminate duplicate check for NULL of freevars/cellvars.Martin v. Löwis2002-04-141-4/+0