COMMITS
/ Python/compile.c October 18, 2001
J
Fix for SF bug [ #471928 ] global made w/nested list comprehensions
Jeremy Hylton committed
October 17, 2001
J
Fix computation of stack depth for classdef and closures.
Jeremy Hylton committed
October 15, 2001
G
Very subtle syntax change: in a list comprehension, the testlist in
Guido van Rossum committed
September 20, 2001
G
Add optional docstrings to member descriptors. For backwards
Guido van Rossum committed
September 14, 2001
J
Supply code objects a new-style tp_members slot and tp_getattr impl.
Jeremy Hylton committed
September 7, 2001
T
SF bug [#458941] Looks like a unary minus bug.
Tim Peters committed
August 30, 2001
F
When re-writing a factor containing a unary negation of a literal, only
Fred Drake committed
S
Removed unreachable goto statement to silence SGI compiler.
Sjoerd Mullender committed
August 27, 2001
J
If an integer constant can't be generated from an integer literal
Jeremy Hylton committed
August 17, 2001
M
Patch #445762: Support --disable-unicode
Martin v. Löwis committed
August 14, 2001
J
Fix SF bug [ #450909 ] __future__.division fails at prompt
Jeremy Hylton committed
August 12, 2001
J
SF Patch [ 429024 ] deal with some unary ops at compile time
Jeremy Hylton committed
August 11, 2001
J
Remove st_nested_scopes from struct symtable,
Jeremy Hylton committed
T
st_nested_scopes was uninitialized trash. Jeremy should fix in a better
Tim Peters committed
August 10, 2001
J
Refactor future feature handling
Jeremy Hylton committed
August 8, 2001
G
Implement PEP 238 in its (almost) full glory.
Guido van Rossum committed
August 6, 2001
J
Another bug fix for recent import * warning (caught by Thomas Wouters)
Jeremy Hylton committed
J
Fix error message for import * in function/class scope
Jeremy Hylton committed
J
Fix SF bug [ #445474 ] warn about import * inside functions
Jeremy Hylton committed
July 16, 2001
G
jcompile(): inherit the CO_GENERATOR_ALLOWED flag from the 'base'
Guido van Rossum committed
T
Part way to allowing "from __future__ import generators" to communicate
Tim Peters committed
June 28, 2001
T
Another "if 0:" hack, this time to complain about otherwise invisible
Tim Peters committed
June 26, 2001
T
SF bug #436207: "if 0: yield x" is ignored.
Tim Peters committed
June 23, 2001
T
Change the semantics of "return" in generators, as discussed on the
Tim Peters committed
T
Disallow 'yield' in a 'try' block when there's a 'finally' clause.
Tim Peters committed
June 18, 2001
T
Merging the gen-branch into the main line, at Guido's direction. Yay!
Tim Peters committed
June 9, 2001
T
SF bug 430991: wrong co_lnotab
Tim Peters committed
May 9, 2001
T
SF patch #416249, from Mark Favas: 2.1c1 compile: unused vrbl cleanup
Tim Peters committed
May 8, 2001
J
Several small changes. Mostly reformatting, adding parens.
Jeremy Hylton committed
April 27, 2001
J
Fix 2.1 nested scopes crash reported by Evan Simpson
Jeremy Hylton committed
April 20, 2001
G
Iterators phase 1. This comprises:
Guido van Rossum committed
April 14, 2001
G
Make some private symbols static.
Guido van Rossum committed
April 9, 2001
J
Warn when assigning to __debug__ instead of raising an error.
Jeremy Hylton committed
March 23, 2001
J
Make it illegal to assign to __debug__ as per Guido's request.
Jeremy Hylton committed
March 22, 2001
J
Set the line number correctly for a nested function with an exec or
Jeremy Hylton committed
J
Make error messages clearer for illegal combinations of nested
Jeremy Hylton committed
J
If a code object is compiled with nested scopes, define the CO_NESTED flag.
Jeremy Hylton committed
March 21, 2001
J
Update PyNode_CompileSymtable() to understand future statements
Jeremy Hylton committed
J
Fix PyFrame_FastToLocals() and counterpart to deal with cells and
Jeremy Hylton committed
March 20, 2001
J
Fixup handling of free variables in methods when the class scope also
Jeremy Hylton committed
March 19, 2001
J
Fix crashes in nested list comprehensions
Jeremy Hylton committed
March 2, 2001
G
Refactored the warning-issuing code more.
Guido van Rossum committed
March 1, 2001
J
Useful future statement support for the interactive interpreter
Jeremy Hylton committed
J
Fix core dump in example from Samuele Pedroni:
Jeremy Hylton committed
J
Don't add global names to st->st_global if we're already iterating
Jeremy Hylton committed
February 28, 2001
J
undo introduction of st_global_star
Jeremy Hylton committed
J
Warn about global statement at the module level.
Jeremy Hylton committed
J
Add warning/error handlin for problematic nested scopes cases as
Jeremy Hylton committed
G
Let's have some sanity. Introduce a helper to issue a symbol table
Guido van Rossum committed
G
Use the new PyErr_WarnExplicit() API to issue better warnings for
Guido van Rossum committed