summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
Commit message (Expand)AuthorAgeFilesLines
...
* remove spurious SET_LINENO from com_list_for and com_list_if. All they doSkip Montanaro2002-07-251-2/+0
* SF 569257 -- Name mangle double underscored variable names in __slots__.Raymond Hettinger2002-06-201-6/+6
* SF patch 568629 by Oren Tirosh: types made callable.Guido van Rossum2002-06-141-2/+65
* Fix SF bug [ 561825 ] Confusing error for "del f()"Jeremy Hylton2002-05-311-2/+6
* Accept u"..." literals even when Unicode is disabled. But theseGuido van Rossum2002-05-281-8/+13
* Disambiguate the grammar for backtick.Guido van Rossum2002-05-241-0/+5
* If Py_OptimizeFlag is false then always evaluate assert conditions, don'tNeil Schemenauer2002-04-261-15/+7
* Moving pymalloc along.Tim Peters2002-04-221-2/+2
* Patch #542659: Eliminate duplicate check for NULL of freevars/cellvars.Martin v. Löwis2002-04-141-4/+0
* Patch #50002: Display line information for bad \x escapes:Martin v. Löwis2002-03-031-14/+26
* Fix missing space between words. Bugfix candidate.Neal Norwitz2002-01-291-1/+1
* Fix spelling mistakes. Bugfix candidates.Neal Norwitz2002-01-291-1/+1
* A tentative fix for SF bug #503837 (Roeland Rengelink):Guido van Rossum2002-01-151-0/+3
* Patch #494783: Rename cmp_op enumerators.Martin v. Löwis2002-01-011-14/+14
* Fix for SF bug [ #492403 ] exec() segfaults on closure's func_codeJeremy Hylton2001-12-131-3/+3
* SF bug #488687 reported by Neal NorwitzJeremy Hylton2001-12-041-1/+1
* code_repr(), com_addop_varname(), com_list_comprehension(),Barry Warsaw2001-11-281-32/+42
* Fixes for possible buffer overflows in sprintf() usages.Marc-André Lemburg2001-11-281-1/+1
* Use PyObject_CheckReadBuffer().Jeremy Hylton2001-11-091-11/+2
* Fix SF buf #480096: Assign to __debug__ still allowedJeremy Hylton2001-11-091-2/+7
* Part of SF bug #478003 possible memory leaks in err handling.Tim Peters2001-11-041-1/+4
* Fix for SF bug [ #471928 ] global made w/nested list comprehensionsJeremy Hylton2001-10-181-19/+51
* Fix computation of stack depth for classdef and closures.Jeremy Hylton2001-10-171-44/+44
* Very subtle syntax change: in a list comprehension, the testlist inGuido van Rossum2001-10-151-0/+1
* Add optional docstrings to member descriptors. For backwardsGuido van Rossum2001-09-201-1/+1
* Supply code objects a new-style tp_members slot and tp_getattr impl.Jeremy Hylton2001-09-141-16/+34
* SF bug [#458941] Looks like a unary minus bug.Tim Peters2001-09-071-16/+49
* When re-writing a factor containing a unary negation of a literal, onlyFred Drake2001-08-301-0/+3
* Removed unreachable goto statement to silence SGI compiler.Sjoerd Mullender2001-08-301-1/+0
* If an integer constant can't be generated from an integer literalJeremy Hylton2001-08-271-5/+2
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-13/+25
* Fix SF bug [ #450909 ] __future__.division fails at promptJeremy Hylton2001-08-141-2/+6
* SF Patch [ 429024 ] deal with some unary ops at compile timeJeremy Hylton2001-08-121-3/+66
* Remove st_nested_scopes from struct symtable,Jeremy Hylton2001-08-111-130/+46
* st_nested_scopes was uninitialized trash. Jeremy should fix in a betterTim Peters2001-08-111-0/+6
* Refactor future feature handlingJeremy Hylton2001-08-101-27/+4
* Implement PEP 238 in its (almost) full glory.Guido van Rossum2001-08-081-4/+25
* Another bug fix for recent import * warning (caught by Thomas Wouters)Jeremy Hylton2001-08-061-3/+3
* Fix error message for import * in function/class scopeJeremy Hylton2001-08-061-1/+1
* Fix SF bug [ #445474 ] warn about import * inside functionsJeremy Hylton2001-08-061-0/+5
* jcompile(): inherit the CO_GENERATOR_ALLOWED flag from the 'base'Guido van Rossum2001-07-161-0/+1
* Part way to allowing "from __future__ import generators" to communicateTim Peters2001-07-161-4/+13
* Another "if 0:" hack, this time to complain about otherwise invisibleTim Peters2001-06-281-2/+61
* SF bug #436207: "if 0: yield x" is ignored.Tim Peters2001-06-261-1/+33
* Change the semantics of "return" in generators, as discussed on theTim Peters2001-06-231-25/+10
* Disallow 'yield' in a 'try' block when there's a 'finally' clause.Tim Peters2001-06-231-0/+10
* Merging the gen-branch into the main line, at Guido's direction. Yay!Tim Peters2001-06-181-9/+51
* SF bug 430991: wrong co_lnotabTim Peters2001-06-091-10/+54
* SF patch #416249, from Mark Favas: 2.1c1 compile: unused vrbl cleanupTim Peters2001-05-091-2/+0
* Several small changes. Mostly reformatting, adding parens.Jeremy Hylton2001-05-081-10/+11