| Commit message (Expand) | Author | Age | Files | Lines |
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -47/+47 |
|
|
* | Patch #2511: Give the "excepthandler" AST item proper attributes by making it... | Georg Brandl | 2008-03-30 | 1 | -7/+7 |
|
|
* | Fix a reference leak found by Georg, when compiling a class nested in another... | Amaury Forgeot d'Arc | 2008-03-28 | 1 | -0/+1 |
|
|
* | Patch #1810 by Thomas Lee, reviewed by myself: | Georg Brandl | 2008-03-28 | 1 | -6/+14 |
|
|
* | Add a warning for code like: | Neal Norwitz | 2008-03-15 | 1 | -0/+8 |
|
|
* | Speed up with statements by storing the __exit__ method on the stack instead ... | Nick Coghlan | 2008-03-07 | 1 | -14/+6 |
|
|
* | Fix indentation | Neal Norwitz | 2008-02-25 | 1 | -1/+1 |
|
|
* | Patch #1759: Backport of PEP 3129 class decorators | Christian Heimes | 2008-02-23 | 1 | -2/+11 |
|
|
* | Cast a struct to a void pointer so as to do a type-safe pointer comparison | Brett Cannon | 2008-02-07 | 1 | -3/+3 |
|
|
* | Change r60575 broke test_compile: | Amaury Forgeot d'Arc | 2008-02-05 | 1 | -0/+3 |
|
|
* | #1750076: Debugger did not step on every iteration of a while statement. | Amaury Forgeot d'Arc | 2008-02-04 | 1 | -14/+15 |
|
|
* | Issue #1678380. Fix a bug that identifies 0j and -0j when they appear | Mark Dickinson | 2008-01-31 | 1 | -12/+47 |
|
|
* | static PyObject* variables should use PyString_InternFromString() instead of ... | Christian Heimes | 2008-01-28 | 1 | -2/+2 |
|
|
* | #1920: when considering a block starting by "while 0", the compiler optimized... | Amaury Forgeot d'Arc | 2008-01-24 | 1 | -1/+4 |
|
|
* | Add comments | Raymond Hettinger | 2007-12-20 | 1 | -3/+3 |
|
|
* | Bigger range for non-extended opargs. | Raymond Hettinger | 2007-12-19 | 1 | -1/+1 |
|
|
* | Zap a duplicate line | Raymond Hettinger | 2007-12-19 | 1 | -1/+0 |
|
|
* | Give meaning to the oparg for BUILD_MAP: estimated size of the dictionary. | Raymond Hettinger | 2007-12-18 | 1 | -4/+2 |
|
|
* | Speed-up dictionary constructor by about 10%. | Raymond Hettinger | 2007-12-18 | 1 | -3/+3 |
|
|
* | Fix #1169: remove docstrings in functions for -OO. | Georg Brandl | 2007-09-19 | 1 | -1/+1 |
|
|
* | Revert compile.c changes that shouldn't have been included in previous checkin | Nick Coghlan | 2007-08-25 | 1 | -7/+2 |
|
|
* | Revert misguided attempt at fixing incompatibility between -m and -i switches... | Nick Coghlan | 2007-08-25 | 1 | -2/+7 |
|
|
* | Fix compile.c so that it records 0.0 and -0.0 as separate constants in a code | Alex Martelli | 2007-08-22 | 1 | -1/+14 |
|
|
* | Bug #1722484: remove docstrings again when running with -OO. | Georg Brandl | 2007-06-01 | 1 | -1/+2 |
|
|
* | tabify | Jeremy Hylton | 2007-02-27 | 1 | -34/+34 |
|
|
* | Fix long-standing bug in name mangling for package imports | Jeremy Hylton | 2007-02-27 | 1 | -2/+12 |
|
|
* | Update comments, remove commented out code. | Neal Norwitz | 2006-10-29 | 1 | -87/+31 |
|
|
* | Clean up a leftover from old listcomp generation code. | Georg Brandl | 2006-10-29 | 1 | -7/+1 |
|
|
* | Fix bug #1565514, SystemError not raised on too many nested blocks. | Neal Norwitz | 2006-10-28 | 1 | -1/+4 |
|
|
* | Fix for SF bug 1569998: break permitted inside try. | Jeremy Hylton | 2006-10-04 | 1 | -1/+13 |
|
|
* | Patch #1542451: disallow continue anywhere under a finally | Neal Norwitz | 2006-08-21 | 1 | -4/+9 |
|
|
* | Add assert to make Klocwork happy (#276) | Neal Norwitz | 2006-08-21 | 1 | -0/+1 |
|
|
* | Move peephole optimizer to separate file. | Jeremy Hylton | 2006-08-21 | 1 | -608/+1 |
|
|
* | Even though _Py_Mangle() isn't truly public anyone can call it and | Neal Norwitz | 2006-08-12 | 1 | -2/+2 |
|
|
* | Bug #1333982: string/number constants were inappropriately stored | Neal Norwitz | 2006-08-04 | 1 | -2/+4 |
|
|
* | Bug #1191458: tracing over for loops now produces a line event | Neal Norwitz | 2006-08-04 | 1 | -7/+46 |
|
|
* | Add some asserts and update comments | Neal Norwitz | 2006-07-30 | 1 | -0/+1 |
|
|
* | If the for loop isn't entered, entryblock will be NULL. If passed | Neal Norwitz | 2006-07-23 | 1 | -0/+2 |
|
|
* | Fix more memory allocation issues found with failmalloc. | Neal Norwitz | 2006-07-22 | 1 | -13/+23 |
|
|
* | Handle more memory allocation failures without crashing. | Neal Norwitz | 2006-07-21 | 1 | -0/+9 |
|
|
* | Bug #1512814, Fix incorrect lineno's when code within a function | Neal Norwitz | 2006-07-16 | 1 | -5/+6 |
|
|
* | Bug #1512814, Fix incorrect lineno's when code at module scope | Neal Norwitz | 2006-07-10 | 1 | -1/+9 |
|
|
* | Fix AST compiler bug #1501934: incorrect LOAD/STORE_GLOBAL generation. | Neil Schemenauer | 2006-07-09 | 1 | -1/+2 |
|
|
* | Fix indentation of case and a Py_ssize_t issue. | Neal Norwitz | 2006-06-12 | 1 | -2/+2 |
|
|
* | Patch #1346214: correctly optimize away "if 0"-style stmts | Georg Brandl | 2006-06-04 | 1 | -14/+29 |
|
|
* | Replace Py_BuildValue("OO") by PyTuple_Pack. | Georg Brandl | 2006-05-26 | 1 | -3/+3 |
|
|
* | Get rid of __context__, per the latest changes to PEP 343 and python-dev | Guido van Rossum | 2006-05-02 | 1 | -10/+3 |
|
|
* | Introduce asdl_int_seq, to hold cmpop_ty. | Martin v. Löwis | 2006-04-13 | 1 | -10/+2 |
|
|
* | revert - breaks build of Python/ast.c w/ gcc | Skip Montanaro | 2006-04-13 | 1 | -2/+5 |
|
|
* | Use union to discriminate pointer types from enum/int types. | Skip Montanaro | 2006-04-13 | 1 | -5/+2 |
|
|