summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
Commit message (Expand)AuthorAgeFilesLines
* Move three variables that are only used inside an if block into the block,Walter Dörwald2002-11-211-3/+3
* Clamp code objects' tp_compare result to [-1, 1].Michael W. Hudson2002-10-031-3/+3
* Further SET_LINENO reomval fixes. See comments in patch #587933.Michael W. Hudson2002-08-301-3/+12
* Add warnings for arguments named None. All set. (I could add aGuido van Rossum2002-08-161-1/+9
* Add warning for None used as keyword argument name in function call.Guido van Rossum2002-08-161-0/+1
* Add warnings for assignment or deletion of variables and attributesGuido van Rossum2002-08-161-0/+27
* Minor cleanup of parsename() and parsestr(): the 'struct compiling *'Guido van Rossum2002-08-161-13/+13
* This is my patchMichael W. Hudson2002-08-151-29/+16
* Added a FutureWarning for constructs that will change semantically inBarry Warsaw2002-08-141-1/+1
* Patch #505705: Remove eval in pickle and cPickle.Martin v. Löwis2002-08-141-98/+5
* 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