COMMITS
/ Python/compile.c February 19, 2001
J
When running python -O, do not include blocks defined in asserts in
Jeremy Hylton committed
J
Tolerate ill-formed trees in symtable_assign(). Fixes SF bug 132510.
Jeremy Hylton committed
February 18, 2001
T
Bug #132313 error message confusing for assignment in lambda.
Tim Peters committed
February 17, 2001
T
Change temp names created by listcomps from [%d] to _[%d], so the one-liner
Tim Peters committed
February 12, 2001
J
In symtable_update_free_vars() do not modify the dictionary while
Jeremy Hylton committed
February 9, 2001
J
SF patch 103589: Fix handling of cell vars that are either * or ** parameters.
Jeremy Hylton committed
J
Relax the rules for using 'from ... import *' and exec in the presence
Jeremy Hylton committed
G
Reindent a function that was somehow indented by 7 spaces. Also did a
Guido van Rossum committed
February 2, 2001
J
Fix symbol table pass to generation SyntaxError exceptions that
Jeremy Hylton committed
J
Move a bunch of definitions that were internal to compile.c to
Jeremy Hylton committed
J
add missing DECREF (thanks, Barry)
Jeremy Hylton committed
February 1, 2001
J
Allow 'continue' inside 'try' clause
Jeremy Hylton committed
J
Undo recent change that banned using import to bind a global, as per
Jeremy Hylton committed
January 30, 2001
J
Enforce two illegal import statements that were outlawed in the
Jeremy Hylton committed
January 29, 2001
J
plug leak detected by Barry
Jeremy Hylton committed
January 25, 2001
J
PEP 227 implementation
Jeremy Hylton committed
J
Fix bug reported by Ka-Ping Yee: The compiler botched parsing function
Jeremy Hylton committed
January 23, 2001
J
Visit the initial test element of the listmaker for a list
Jeremy Hylton committed
J
prevent symtable_params() from dereferencing off the end of the
Jeremy Hylton committed
January 22, 2001
B
com_init(): My entry into the smallest patch possible category.
Barry Warsaw committed
January 20, 2001
T
SF patch #103336: Missing cast.
Tim Peters committed
January 19, 2001
J
This patch introduces an extra pass to the compiler that generates a
Jeremy Hylton committed
G
SF Patch #103250, by pj99: Optimize a strspn() out of startup.
Guido van Rossum committed
November 27, 2000
G
Plug a memory leak in com_import_stmt(): the tuple created to hold the
Guido van Rossum committed
November 14, 2000
T
SF bug 119622: compile errors due to redundant atof decls. I don't understand
Tim Peters committed
September 26, 2000
F
Rationalize use of limits.h, moving the inclusion to Python.h.
Fred Drake committed
September 8, 2000
F
com_continue_stmt(): Improve error message when continue is found
Fred Drake committed
September 2, 2000
F
changed \x to consume exactly two hex digits. implements PEP-223
Fredrik Lundh committed
September 1, 2000
G
REMOVED all CWI, CNRI and BeOpen copyright markings.
Guido van Rossum committed
August 27, 2000
T
Replace the run-time 'future-bytecode-stream-inspection' hack to find out
Thomas Wouters committed
T
Re-allow 'import mod.submod as s', and change its meaning to what it should
Thomas Wouters committed
T
Oops, one pop too many.
Thomas Wouters committed
August 25, 2000
T
Fix allowable node-types for assignment, need to add 'listmaker'.
Thomas Wouters committed
August 24, 2000
T
Support for three-token characters (**=, >>=, <<=) which was written by
Thomas Wouters committed
F
Charles G. Waldman <cgw@fnal.gov>:
Fred Drake committed
August 22, 2000
S
require list comprehensions to start with a for clause
Skip Montanaro committed
August 21, 2000
B
com_print_stmt(): Guido rightly points out that the stream expression
Barry Warsaw committed
B
PEP 214, Extended print Statement, has been accepted by the BDFL.
Barry Warsaw committed
August 19, 2000
T
Disallow "import mod.submod as m", because the result is ambiguous. Does it
Thomas Wouters committed
August 18, 2000
B
com_error(): Quiet gcc -Wall warning.
Barry Warsaw committed
August 17, 2000
T
Apply SF patch #101135, adding 'import module as m' and 'from module import
Thomas Wouters committed
August 15, 2000
T
Fix new compiler warnings. Unused var in compile.c. Argsize mismatches
Tim Peters committed
F
Remove the osdefs.h #include; it was not needed in the final version of
Fred Drake committed
F
When raising a SyntaxError, make a best-effort attempt to set the
Fred Drake committed
August 13, 2000
T
The list comp patch checked for the second child node of the 'listmaker'
Thomas Wouters committed
August 12, 2000
T
The list comprehensions patch partly reversed the removal of UNPACK_LIST,
Thomas Wouters committed
S
list comprehensions. see
Skip Montanaro committed
August 11, 2000
T
Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since they
Thomas Wouters committed
August 7, 2000
G
When returning an error from jcompile() (which is passed through by
Guido van Rossum committed
August 5, 2000
T
Fix some strange indentation and grammar that have been bugging me for
Thomas Wouters committed