summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Merge the rest of the trunk.Thomas Wouters2006-06-081-14/+29
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-13/+6
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-52/+83
* INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used).Neal Norwitz2006-03-171-1/+0
* Get rid of last vestiges of BINARY_DIVIDE.Neal Norwitz2006-03-161-6/+0
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-151-19/+4
* Fix SF bug #1448804 and ad a test to ensure that all subscript operations con...Nick Coghlan2006-03-131-24/+29
* Um, I thought I'd already checked this in.Guido van Rossum2006-03-101-3/+1
* SF bug 1442442: LIST_APPEND optimization got lost in the AST merge.Neal Norwitz2006-03-031-3/+4
* Fix refleak if from __future__ import was not firstNeal Norwitz2006-03-021-0/+1
* Update known issues to reflect realityNeal Norwitz2006-03-021-4/+1
* Patch #1440601: Add col_offset attribute to AST nodes.Martin v. Löwis2006-03-011-2/+2
* Tabify and reflow some long lines.Jeremy Hylton2006-03-011-696/+702
* Generally inehrit codeflags that are in PyCF_MASK, instead of writing it outThomas Wouters2006-02-281-4/+4
* from __future__ import with_statement addon for 'with', mostly written byThomas Wouters2006-02-281-0/+2