- f5469cf #18705: fix a number of typos. Patch by Févry Thibault. by Ezio Melotti · 12 years ago
- e970dc7 Issue #15212: fix typo in compiler module (rename SC_GLOBAL_EXPLICT to SC_GLOBAL_EXPLICIT). by Antoine Pitrou · 13 years ago
- 52d4aea make compiler's py3k warning a full deprecation warning #6837 by Benjamin Peterson · 15 years ago
- b646547 Issue #2333: Backport set and dict comprehensions syntax. by Alexandre Vassalotti · 16 years ago
- ee936a2 Issue #2335: Backport set literals syntax from Python 3.x. by Alexandre Vassalotti · 16 years ago
- b9d4963 Issue #7092: Fix the DeprecationWarnings emitted by the standard library by Antoine Pitrou · 16 years ago
- 944f684 Allow multiple context managers in one with statement, as proposed by Georg Brandl · 16 years ago
- 68d6852 Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} with by Jeffrey Yasskin · 16 years ago
- 92c3b21 Issue #999042: The Python compiler now handles explict global statements by Neil Schemenauer · 17 years ago
- 98c3b85 Make names generated for 'with' variables match the built-in compiler. by Neil Schemenauer · 17 years ago
- 4db626f Overhaul Lib/compiler block ordering. The previous code was filled with by Neil Schemenauer · 17 years ago
- d0c3515 Issue #2183: Simplify and optimize bytecode for list comprehensions. by Antoine Pitrou · 17 years ago
- 2d2fe57 #4578: fix has_key() usage in compiler package. by Georg Brandl · 17 years ago
- 67f24f1 follow-up of issue3473: update the compiler package to recognize the new syntax. by Amaury Forgeot d'Arc · 17 years ago
- 6192df1 Deprecate the compiler package for removal in 3.0. by Brett Cannon · 17 years ago
- 311d071 Fix test_compiler after adding unicode_literals by Neal Norwitz · 17 years ago
- 5d5c63f Fixed compiler module so __future__ print_function is compilable. by Eric Smith · 17 years ago
- 7af53be Speed up with statements by storing the __exit__ method on the stack instead of in a temp variable (bumps the magic number for pyc files) by Nick Coghlan · 17 years ago
- 4219da4 Issue 2117. Update compiler module to handle class decorators. by Facundo Batista · 17 years ago
- c5f05e4 Patch #2167 from calvin: Remove unused imports by Christian Heimes · 17 years ago
- c756d00 Replaced import of the 'new' module with 'types' module and added a deprecation warning to the 'new' module. by Christian Heimes · 18 years ago
- 6290305 Backport PEP 3110's new 'except' syntax to 2.6. by Collin Winter · 18 years ago
- ab49684 Patch #1638243: the compiler package is now able to correctly compile by Georg Brandl · 19 years ago
- fe9c71b Remove trailing comma. by Georg Brandl · 19 years ago
- 5addf70 Bug #1586448: the compiler module now emits the same bytecode for by Georg Brandl · 19 years ago
- 4c6b0d5 Fix a bug in the ``compiler`` package that caused invalid code to be by Neil Schemenauer · 19 years ago
- 06ded09 Fix the 'compiler' package to generate correct code for MAKE_CLOSURE. by Neil Schemenauer · 19 years ago
- afcd838 Revert rev 42617, it was introduced to work around bug #1441397. by Georg Brandl · 19 years ago
- edd9b0d Bug #1441397: The compiler module now recognizes module and function by Georg Brandl · 19 years ago
- 3249d00 Whitespace normalization. by Tim Peters · 19 years ago
- c3f49ca Set lineno correctly on list, tuple and dict literals. by Georg Brandl · 19 years ago
- ad29e63 fix [ 1509132 ] compiler module builds incorrect AST for TryExceptFinally by Georg Brandl · 19 years ago
- 6aaccc6 Fix errors found by pychecker by Neal Norwitz · 19 years ago
- 1bb6230 Bug #1385040: don't allow "def foo(a=1, b): pass" in the compiler package. by Georg Brandl · 19 years ago
- da5b701 Get rid of __context__, per the latest changes to PEP 343 and python-dev by Guido van Rossum · 19 years ago
- b902f4e Use absolute imports by Neal Norwitz · 19 years ago
- cb35b95 Teach the compiler module about augmented assignment to tuple subscripts by Nick Coghlan · 19 years ago
- f669436 Um, I thought I'd already checked this in. by Guido van Rossum · 19 years ago
- 39e11fb Whitespace normalization. by Tim Peters · 19 years ago
- 10be2ea SF bug 1442442: LIST_APPEND optimization got lost in the AST merge. Add it back. by Neal Norwitz · 19 years ago
- d4e3035 Fix compiler breakage related to absolute imports by Neal Norwitz · 19 years ago
- eaed39f Hopefully this removes all vestiges of CO_GENERATOR_ALLOWED that can by Neal Norwitz · 19 years ago
- fa0cf4f Add support for absolute/relative imports and if/else expressions: by Thomas Wouters · 19 years ago
- 5bde08d Fix failure of test_compiler.py when compiling test_contextlib.py. by Guido van Rossum · 19 years ago
- 34aa7ba from __future__ import with_statement addon for 'with', mostly written by Neal. by Thomas Wouters · 19 years ago
- 710ab3b Whitespace normalization. by Tim Peters · 19 years ago
- baf3eb2 Forgot to explain the effect of the new opcode. by Guido van Rossum · 19 years ago
- 7ad94f0 Update the compiler package to compile the with-statement. by Guido van Rossum · 19 years ago
- c2e2074 PEP 343 -- the with-statement. by Guido van Rossum · 19 years ago
- 59977a6 Make or_test similar to test, not testlist. by Martin v. Löwis · 19 years ago
- 415ed93 Skip over doc strings. by Martin v. Löwis · 19 years ago
- 16c7f71 Handle testlist_safe and or_test like testlist. by Martin v. Löwis · 19 years ago
- 49a1302 Alias non-terminals introduced for backwards compatibility. by Martin v. Löwis · 19 years ago
- 212a575 Remove unused _callers member. No need for types, use isinstance by Neal Norwitz · 20 years ago
- ef260c0 Stop looping to do nothing, just pass. by Neal Norwitz · 20 years ago
- d752f7d No need for types, use isinstance by Neal Norwitz · 20 years ago
- f923267 Use sorted() builtin by Neal Norwitz · 20 years ago
- 3e0055f Merge ast-branch to head by Jeremy Hylton · 20 years ago
- 0d6615f PEP 342 implementation. Per Guido's comments, the generator throw() by Phillip J. Eby · 20 years ago
- f0af0e7 patch [ 1231538 ] Typo fix in compiler/transformer.py (WalkerEror) by Georg Brandl · 20 years ago
- f369470 Fix compiler.ast.flatten function so that it works on lists. by Neil Schemenauer · 20 years ago
- f418991 Flush out support for ``class B(): pass`` syntax by adding support to the by Brett Cannon · 20 years ago
- 05522ad Fix bug by Michael W. Hudson · 21 years ago
- c054a8b This is jiwon's patch to fix: by Michael W. Hudson · 21 years ago
- 0e9980f Whitespace normalization. by Tim Peters · 21 years ago
- 8f00a24 Remove debugging print (not triggered by test suite) and add XXX comment about how the code should raise a SyntaxError. by Jeremy Hylton · 21 years ago
- 566d934 compiler.transformer: correct lineno attribute when possible SF patch #1015989 by Jeremy Hylton · 21 years ago
- 1a4ddae SF patch #1007189, multi-line imports, for instance: by Anthony Baxter · 21 years ago
- a45cacf Whitespace normalization. by Tim Peters · 21 years ago
- 0ccff07 This is Mark Russell's patch: by Michael W. Hudson · 21 years ago
- 2876f5a SF patch 836879. by Jeremy Hylton · 21 years ago
- 6db15d7 Whitespace normalization. by Tim Peters · 21 years ago
- c2a5a63 PEP-0318, @decorator-style. In Guido's words: by Anthony Baxter · 21 years ago
- 3f06189 this is patch by Michael W. Hudson · 21 years ago
- 4e0e1b6 Whitespace normalization. by Tim Peters · 21 years ago
- 354433a SF patch #872326: Generator expression implementation by Raymond Hettinger · 21 years ago
- 4848557 Remove unused instance attributes. by Neil Schemenauer · 21 years ago
- ead21f5 Fix SF bug [ 788011 ] compiler.compileFile fails on csv.py by Jeremy Hylton · 22 years ago
- b2f89ee Comment typo fixes by Andrew M. Kuchling · 22 years ago
- 896e516 Jacob Hallen cornered me here at EuroPython and got me to look at patch: by Michael W. Hudson · 22 years ago
- ff41c48 SF patch #701494: more apply removals by Raymond Hettinger · 22 years ago
- 669454e Whitespace normalization. by Tim Peters · 22 years ago
- 8d0ffe0 Remove debugging prints. by Michael W. Hudson · 23 years ago
- 1856541 Replace all but one explicit emit('SET_LINENO') with call to set_lineno(). by Jeremy Hylton · 23 years ago
- accb62b SF patch [ 597919 ] compiler package and SET_LINENO by Jeremy Hylton · 23 years ago
- 78429a6 Fixing bug by Gustavo Niemeyer · 23 years ago
- a312c3a Remove uses of string module and stat.ST_MODE by Neal Norwitz · 23 years ago
- 8d22b04 Fix com_arglist() and update grammar fragment. by Jeremy Hylton · 23 years ago
- 16af557 Remove more out-of-date comments and clarify explanation of visit(). by Jeremy Hylton · 23 years ago
- 3b05c8e Remove out-of-date explanation in doc strings, as reported by Eric C. Newton. by Jeremy Hylton · 23 years ago
- 51e234a Patch #522279: transformer.py nodes shadows global. by Martin v. Löwis · 23 years ago
- 0ac16ec Patch #521714: fix pychecker warnings in ast.py. by Martin v. Löwis · 23 years ago
- e441860 Whitespace normalization. by Tim Peters · 23 years ago
- 52acb49 Merge of the release22 branch changes back into the trunk. by Barry Warsaw · 24 years ago
- 57911ae Fix [ #484645 ] little bug in pycodegen.py by Jeremy Hylton · 24 years ago
- 6383c2d Fix SF bug #479186: compiler generates bad code for "del" by Jeremy Hylton · 24 years ago
- e0c446b Whitespace normalization. by Tim Peters · 24 years ago
- 138d90e Vastly improved stacksize calculation. by Jeremy Hylton · 24 years ago
- d114261 Handle testlist_safe as if it were testlist. by Jeremy Hylton · 24 years ago
- 264e818 Fix comment typo by Andrew M. Kuchling · 24 years ago