summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
Commit message (Expand)AuthorAgeFilesLines
...
* Use PyErr_WarnExplicit() to warn about hex/oct constants, so theGuido van Rossum2002-08-121-4/+9
* Reset errno to zero after calling PyErr_Warn(). It can potentially doGuido van Rossum2002-08-111-0/+1
* Implement stage B0 of PEP 237: add warnings for operations thatGuido van Rossum2002-08-111-1/+9
* Use Py_FatalError instead of abort.Martin v. Löwis2002-08-071-2/+3
* Fix PEP 263 code --without-unicode. Fixes #591943.Martin v. Löwis2002-08-071-0/+10
* Patch #534304: Implement phase 1 of PEP 263.Martin v. Löwis2002-08-041-10/+113
* SF patch #578297:Andrew MacIntyre2002-08-041-7/+7
* 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