summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
Commit message (Expand)AuthorAgeFilesLines
* Fix refleak with nested classes. Fix originally by Amaury in r62015.Neal Norwitz2008-04-011-0/+1
* Merged revisions 62047 via svnmerge fromNeal Norwitz2008-03-311-10/+10
* Merged revisions 62004 via svnmerge fromMartin v. Löwis2008-03-301-6/+14
* Merged revisions 61404-61407 via svnmerge fromChristian Heimes2008-03-161-0/+8
* Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,...Christian Heimes2008-03-161-14/+6
* Fix crasher in unpacking assignments with star, where the size constraintsThomas Wouters2008-03-141-0/+10
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-091-3/+3
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-061-12/+16
* Merged revisions 60475-60479,60481-60488 via svnmerge fromChristian Heimes2008-02-011-12/+47
* Merged revisions 60379-60382 via svnmerge fromChristian Heimes2008-01-281-3/+3
* Merged revisions 60245-60277 via svnmerge fromChristian Heimes2008-01-251-1/+4
* Merged revisions 59565-59594 via svnmerge fromChristian Heimes2007-12-241-4/+4
* Merged revisions 59541-59561 via svnmerge fromChristian Heimes2007-12-191-7/+4
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-10/+10
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-3/+0
* Patch #1272, by Christian Heimes and Alexandre Vassalotti.Guido van Rossum2007-10-151-2/+2
* Merged revisions 58203-58210 via svnmerge fromThomas Wouters2007-09-191-1/+1
* Issue #1066: implement PEP 3109, 2/3 of PEP 3134.Collin Winter2007-08-311-14/+8
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-301-80/+0
* Ensure that code object names (co_name) are unicode.Neal Norwitz2007-08-241-1/+1
* Merged revisions 57221-57391 via svnmerge fromGuido van Rossum2007-08-241-1/+14
* Merged revisions 56154-56264 via svnmerge fromGuido van Rossum2007-07-111-9/+55
* Looks like an oopsie -- I ignored a warning at my peril.Guido van Rossum2007-06-141-1/+2
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-23/+41
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-43/+43
* Change PyErr_Format() to generate a unicode string (by usingWalter Dörwald2007-05-251-2/+2
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-3/+13
* Merged revisions 55328-55341 via svnmerge fromGuido van Rossum2007-05-151-66/+6
* Merged revisions 55225-55227,55229-55269 via svnmerge fromGuido van Rossum2007-05-111-2/+44
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-28/+38
* Hide list comp variables and support set comprehensionsNick Coghlan2007-04-151-132/+147
* Fix refleak in compiler.Guido van Rossum2007-03-211-1/+4
* Implement PEP 3115 -- new metaclass syntax and semantics.Guido van Rossum2007-03-181-50/+124
* Provisional implementation of PEP 3104.Jeremy Hylton2007-02-271-0/+1
* Two more patches by Tony Lownds (SF# 1607548).Guido van Rossum2007-02-261-4/+17
* Whoops, fix build breakage. There were still a few uses of the bool type.Neal Norwitz2007-02-261-7/+7
* Bytes literal.Thomas Wouters2007-02-231-1/+6
* * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes.Georg Brandl2007-02-091-47/+0
* Some more changes related to the new except syntax and semantics,Guido van Rossum2007-01-101-12/+5
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-3/+56
* PEP 3107 - Function Annotations thanks to Tony LowndsNeal Norwitz2006-12-281-8/+133
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-100/+58
* Jiwon Seo's PEP 3102 implementation.Guido van Rossum2006-10-271-6/+49
* Patch #1550786: ellipsis literal.Georg Brandl2006-09-061-9/+5
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-17/+0
* SF patch 1547796 by Georg Brandl -- set literals.Guido van Rossum2006-08-281-0/+6
* Remove support for backticks from the grammar and compiler.Brett Cannon2006-08-251-5/+0
* Check for exceptions set by PyDict_GetItem().Jeremy Hylton2006-08-231-0/+2
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-605/+4
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-31/+104