summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
Commit message (Expand)AuthorAgeFilesLines
* Revert compile.c changes that shouldn't have been included in previous checkinNick Coghlan2007-08-251-7/+2
* Revert misguided attempt at fixing incompatibility between -m and -i switches...Nick Coghlan2007-08-251-2/+7
* Fix compile.c so that it records 0.0 and -0.0 as separate constants in a codeAlex Martelli2007-08-221-1/+14
* Bug #1722484: remove docstrings again when running with -OO.Georg Brandl2007-06-011-1/+2
* tabifyJeremy Hylton2007-02-271-34/+34
* Fix long-standing bug in name mangling for package importsJeremy Hylton2007-02-271-2/+12
* Update comments, remove commented out code.Neal Norwitz2006-10-291-87/+31
* Clean up a leftover from old listcomp generation code.Georg Brandl2006-10-291-7/+1
* Fix bug #1565514, SystemError not raised on too many nested blocks.Neal Norwitz2006-10-281-1/+4
* Fix for SF bug 1569998: break permitted inside try.Jeremy Hylton2006-10-041-1/+13
* Patch #1542451: disallow continue anywhere under a finallyNeal Norwitz2006-08-211-4/+9
* Add assert to make Klocwork happy (#276)Neal Norwitz2006-08-211-0/+1
* Move peephole optimizer to separate file.Jeremy Hylton2006-08-211-608/+1
* Even though _Py_Mangle() isn't truly public anyone can call it andNeal Norwitz2006-08-121-2/+2
* Bug #1333982: string/number constants were inappropriately storedNeal Norwitz2006-08-041-2/+4
* Bug #1191458: tracing over for loops now produces a line eventNeal Norwitz2006-08-041-7/+46
* Add some asserts and update commentsNeal Norwitz2006-07-301-0/+1
* If the for loop isn't entered, entryblock will be NULL. If passedNeal Norwitz2006-07-231-0/+2
* Fix more memory allocation issues found with failmalloc.Neal Norwitz2006-07-221-13/+23
* Handle more memory allocation failures without crashing.Neal Norwitz2006-07-211-0/+9
* Bug #1512814, Fix incorrect lineno's when code within a functionNeal Norwitz2006-07-161-5/+6
* Bug #1512814, Fix incorrect lineno's when code at module scopeNeal Norwitz2006-07-101-1/+9
* Fix AST compiler bug #1501934: incorrect LOAD/STORE_GLOBAL generation.Neil Schemenauer2006-07-091-1/+2
* Fix indentation of case and a Py_ssize_t issue.Neal Norwitz2006-06-121-2/+2
* Patch #1346214: correctly optimize away "if 0"-style stmtsGeorg Brandl2006-06-041-14/+29
* Replace Py_BuildValue("OO") by PyTuple_Pack.Georg Brandl2006-05-261-3/+3
* Get rid of __context__, per the latest changes to PEP 343 and python-devGuido van Rossum2006-05-021-10/+3
* Introduce asdl_int_seq, to hold cmpop_ty.Martin v. Löwis2006-04-131-10/+2
* revert - breaks build of Python/ast.c w/ gccSkip Montanaro2006-04-131-2/+5
* Use union to discriminate pointer types from enum/int types.Skip Montanaro2006-04-131-5/+2
* casting nastiness to make C++ compiler happyAnthony Baxter2006-04-131-2/+10
* per Jeremy's email, remove the _WITH_CAST versions of macros. g++Anthony Baxter2006-04-121-46/+24
* more low-hanging fruit to make code compile under a C++ compiler. NotAnthony Baxter2006-04-111-54/+85
* Use PyObject_* allocator since FutureFeatures is smallNeal Norwitz2006-04-101-1/+1
* Fix some warnings on HP-UX when using cc/aCCNeal Norwitz2006-04-101-4/+7
* Generate line number table entries for except handlers.Jeremy Hylton2006-04-041-0/+2
* Don't abbreviate ABS, use long name ABSOLUTE.Neal Norwitz2006-04-031-2/+2
* Expand comments on line numbers and blocks.Jeremy Hylton2006-04-011-6/+21
* Fix some missing checks after PyTuple_New, PyList_New, PyDict_NewGeorg Brandl2006-03-171-1/+3
* 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
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-281-0/+27
* Clarify C-style exception handling with proper label name.Thomas Wouters2006-02-271-3/+3