| Commit message (Expand) | Author | Age | Files | Lines |
* | com_yield_expr(): Squash new compiler wng about unreferenced local. | Tim Peters | 2005-08-03 | 1 | -1/+0 |
|
|
* | PEP 342 implementation. Per Guido's comments, the generator throw() | Phillip J. Eby | 2005-08-02 | 1 | -12/+64 |
|
|
* | Fix signedness of various char variables to stop causing a warning under gcc 4. | Brett Cannon | 2005-06-25 | 1 | -1/+1 |
|
|
* | Allow classes to be defined with empty parentheses. This means that | Brett Cannon | 2005-03-05 | 1 | -2/+3 |
|
|
* | Silence a gcc warning about putting in parentheses around && expressions mixed | Brett Cannon | 2005-03-03 | 1 | -5/+6 |
|
|
* | Preserve sign of -0.0 when result is run through marshal. | Raymond Hettinger | 2005-02-23 | 1 | -2/+4 |
|
|
* | Document how the pattern recognizer keeps all of its references in bounds. | Raymond Hettinger | 2005-02-21 | 1 | -0/+8 |
|
|
* | Teach the peepholer to fold unary operations on constants. | Raymond Hettinger | 2005-02-20 | 1 | -0/+62 |
|
|
* | Remove the set conversion which didn't work with: [] in (0,) | Raymond Hettinger | 2005-02-10 | 1 | -53/+1 |
|
|
* | Have set conversion replace existing constant if not used elsewhere. | Raymond Hettinger | 2005-02-09 | 1 | -1/+7 |
|
|
* | Adopt Skip's idea to optimize lists of constants in the context | Raymond Hettinger | 2005-02-07 | 1 | -7/+13 |
|
|
* | Transform "x in (1,2,3)" to "x in frozenset([1,2,3])". | Raymond Hettinger | 2005-02-06 | 1 | -1/+48 |
|
|
* | Do not fold a constant if a large sequence will result. | Raymond Hettinger | 2005-01-26 | 1 | -5/+15 |
|
|
* | Re-running python with/without the -Qnew flag uses incorrectly optimized | Armin Rigo | 2005-01-07 | 1 | -6/+3 |
|
|
* | Teach the peephole optimizer to fold simple constant expressions. | Raymond Hettinger | 2005-01-02 | 1 | -1/+118 |
|
|
* | SF patch 1025636: Check for NULL returns in compile.c:com_import_stmt | Jeremy Hylton | 2004-11-07 | 1 | -4/+14 |
|
|
* | Maintain peepholer's cumlc invariant by updating the running total | Raymond Hettinger | 2004-11-02 | 1 | -0/+4 |
|
|
* | Simplify and future proof NOP counting in the peepholer. | Raymond Hettinger | 2004-11-01 | 1 | -13/+6 |
|
|
* | Fixed a comment and added another one. | Armin Rigo | 2004-10-30 | 1 | -1/+4 |
|
|
* | Adopt some peepholer suggestions from Armin Rigo: | Raymond Hettinger | 2004-10-30 | 1 | -15/+20 |
|
|
* | SF bug #1053819: Segfault in tuple_of_constants | Raymond Hettinger | 2004-10-26 | 1 | -1/+9 |
|
|
* | SF bug #1048870: call arg of lambda not updating | Raymond Hettinger | 2004-10-24 | 1 | -0/+2 |
|
|
* | Improve error message for augmented assignments to genexps or listcomps. | Raymond Hettinger | 2004-09-29 | 1 | -2/+2 |
|
|
* | Fix two erroneous error messages. | Raymond Hettinger | 2004-09-29 | 1 | -2/+2 |
|
|
* | Replaced a test with an assertion. | Raymond Hettinger | 2004-09-28 | 1 | -3/+1 |
|
|
* | SF patch #1031667: Fold tuples of constants into a single constant | Raymond Hettinger | 2004-09-22 | 1 | -11/+91 |
|
|
* | SF patch #1007189, multi-line imports, for instance: | Anthony Baxter | 2004-08-31 | 1 | -31/+47 |
|
|
* | Bypass peepholing of code with lineno tables having intervals >= 255. | Raymond Hettinger | 2004-08-25 | 1 | -4/+8 |
|
|
* | Fix typo in comment and add clarification. | Raymond Hettinger | 2004-08-25 | 1 | -1/+2 |
|
|
* | Simplify chains of conditional jumps. | Raymond Hettinger | 2004-08-25 | 1 | -2/+25 |
|
|
* | Incorporate review comments courtesy of Neal Norwitz: | Raymond Hettinger | 2004-08-24 | 1 | -6/+8 |
|
|
* | SF Patch #1013667: Cleanup Peepholer Output | Raymond Hettinger | 2004-08-23 | 1 | -35/+100 |
|
|
* | Move the bytecode optimizer upstream so that its results are saved in pyc | Raymond Hettinger | 2004-08-18 | 1 | -3/+6 |
|
|
* | This is Mark Russell's patch: | Michael W. Hudson | 2004-08-17 | 1 | -22/+20 |
|
|
* | Correct the order of application for decorators. Meant to be bottom-up and not | Brett Cannon | 2004-08-15 | 1 | -1/+4 |
|
|
* | Fix incorrect comment for (struct compiling)->c_cellvars | Brett Cannon | 2004-08-15 | 1 | -1/+1 |
|
|
* | code_new(): Wouldn't compile on Windows, because of gcc'ism. | Tim Peters | 2004-08-12 | 1 | -1/+1 |
|
|
* | Fix bug | Michael W. Hudson | 2004-08-12 | 1 | -27/+88 |
|
|
* | SF bug #1004088: big code objects (>64K) may be optimized incorrectly | Raymond Hettinger | 2004-08-06 | 1 | -0/+5 |
|
|
* | Revert 2.312; turns out interning the file name did do some good (reducing | Michael W. Hudson | 2004-08-04 | 1 | -1/+1 |
|
|
* | Don't intern the filename of a file being compiled. | Michael W. Hudson | 2004-08-03 | 1 | -1/+1 |
|
|
* | fix for @decorators under a debug build. | Anthony Baxter | 2004-08-02 | 1 | -0/+1 |
|
|
* | PEP-0318, @decorator-style. In Guido's words: | Anthony Baxter | 2004-08-02 | 1 | -15/+112 |
|
|
* | Upgrade None assignment SyntaxWarning to a SyntaxError. | Raymond Hettinger | 2004-07-17 | 1 | -7/+6 |
|
|
* | optimize_code(): Repaired gross error in new special-casing for None. | Tim Peters | 2004-07-17 | 1 | -1/+2 |
|
|
* | Treat None as a constant. | Raymond Hettinger | 2004-07-16 | 1 | -4/+20 |
|
|
* | Remove unused macros in .c files | Neal Norwitz | 2004-07-08 | 1 | -5/+0 |
|
|
* | Move NOP to end of code transformation. | Raymond Hettinger | 2004-06-24 | 1 | -3/+7 |
|
|
* | Install two code generation optimizations that depend on NOP. | Raymond Hettinger | 2004-06-21 | 1 | -3/+30 |
|
|
* | Patch #774665: Make Python LC_NUMERIC agnostic. | Martin v. Löwis | 2004-06-08 | 1 | -2/+2 |
|
|