summaryrefslogtreecommitdiffstats
path: root/Lib/compiler/pycodegen.py
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 55270-55324 via svnmerge fromGuido van Rossum2007-05-141-1580/+0
* Fix the compiler package w.r.t. the new metaclass syntax.Guido van Rossum2007-03-191-9/+7
* Bytes literal.Thomas Wouters2007-02-231-0/+4
* * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes.Georg Brandl2007-02-091-23/+0
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-5/+5
* Merged revisions 53538-53622 via svnmerge fromThomas Wouters2007-02-051-0/+2
* Some more changes related to the new except syntax and semantics,Guido van Rossum2007-01-101-3/+25
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
* PEP 3107 - Function Annotations thanks to Tony LowndsNeal Norwitz2006-12-281-15/+62
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-7/+5
* Jiwon Seo's PEP 3102 implementation.Guido van Rossum2006-10-271-0/+15
* Patch #1550786: ellipsis literal.Georg Brandl2006-09-061-3/+0
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-12/+0
* SF patch 1547796 by Georg Brandl -- set literals.Guido van Rossum2006-08-281-0/+6
* Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up theBrett Cannon2006-08-251-3/+0
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-5/+14
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-26/+13
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-2/+0
* INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used).Neal Norwitz2006-03-171-1/+1
* Get rid of last vestiges of BINARY_DIVIDE.Neal Norwitz2006-03-161-3/+1
* Teach the compiler module about augmented assignment to tuple subscriptsNick Coghlan2006-03-141-4/+2
* Um, I thought I'd already checked this in.Guido van Rossum2006-03-101-2/+0
* Fix compiler breakage related to absolute importsNeal Norwitz2006-03-031-2/+2
* Hopefully this removes all vestiges of CO_GENERATOR_ALLOWED that canNeal Norwitz2006-03-031-3/+1
* Add support for absolute/relative imports and if/else expressions:Thomas Wouters2006-03-031-2/+26
* Update the compiler package to compile the with-statement.Guido van Rossum2006-02-281-0/+41
* No need for types, use isinstanceNeal Norwitz2005-11-251-5/+4
* Whitespace normalization.Tim Peters2004-08-201-1/+1
* This is Mark Russell's patch:Michael W. Hudson2004-08-171-2/+2
* SF patch 836879.Jeremy Hylton2004-08-071-21/+19
* Whitespace normalization.Tim Peters2004-08-041-2/+2
* PEP-0318, @decorator-style. In Guido's words:Anthony Baxter2004-08-021-0/+10
* Whitespace normalization.Tim Peters2004-07-071-1/+1
* SF patch #872326: Generator expression implementationRaymond Hettinger2004-05-191-0/+89
* Remove unused instance attributes.Neil Schemenauer2004-03-211-2/+0
* Jacob Hallen cornered me here at EuroPython and got me to look atMichael W. Hudson2003-06-271-1/+5
* Replace all but one explicit emit('SET_LINENO') with call to set_lineno().Jeremy Hylton2002-12-311-8/+2
* SF patch [ 597919 ] compiler package and SET_LINENOJeremy Hylton2002-12-311-27/+28
* Fixing bugGustavo Niemeyer2002-12-161-2/+2
* Remove uses of string module and stat.ST_MODENeal Norwitz2002-06-061-5/+3
* Whitespace normalization.Tim Peters2002-02-161-1/+1
* Merge of the release22 branch changes back into the trunk.Barry Warsaw2001-12-211-3/+9
* Fix [ #484645 ] little bug in pycodegen.pyJeremy Hylton2001-11-271-1/+1
* Fix SF bug #479186: compiler generates bad code for "del"Jeremy Hylton2001-11-091-0/+1
* Whitespace normalization.Tim Peters2001-10-181-19/+19
* API change:Jeremy Hylton2001-09-171-5/+95
* Last set of change to get regression tests to passJeremy Hylton2001-09-171-1/+1
* Handle more syntax errors.Jeremy Hylton2001-09-171-29/+32
* support true divisionJeremy Hylton2001-09-171-1/+3
* Add code generator for yield stmtJeremy Hylton2001-09-141-0/+5