| Commit message (Expand) | Author | Age | Files | Lines |
* | Improved __future__ parser; still more to do | Jeremy Hylton | 2001-02-27 | 1 | -43/+5 |
|
|
* | Add warnings about undefined "global" | Jeremy Hylton | 2001-02-27 | 1 | -0/+29 |
|
|
* | Preliminary support for future nested scopes | Jeremy Hylton | 2001-02-27 | 1 | -114/+269 |
|
|
* | Shuffle premature decref; nuke unreachable code block. | Tim Peters | 2001-02-23 | 1 | -9/+3 |
|
|
* | symtable_update_free_vars(), symtable_undo_free(), | Barry Warsaw | 2001-02-23 | 1 | -3/+3 |
|
|
* | Fix for bug 133489: compiler leaks memory | Jeremy Hylton | 2001-02-23 | 1 | -2/+6 |
|
|
* | Fix for implicit tuple + default arguments, courtesy of Michael Hudson. | Jeremy Hylton | 2001-02-19 | 1 | -1/+3 |
|
|
* | When running python -O, do not include blocks defined in asserts in | Jeremy Hylton | 2001-02-19 | 1 | -0/+11 |
|
|
* | Tolerate ill-formed trees in symtable_assign(). Fixes SF bug 132510. | Jeremy Hylton | 2001-02-19 | 1 | -5/+8 |
|
|
* | Bug #132313 error message confusing for assignment in lambda. | Tim Peters | 2001-02-18 | 1 | -1/+8 |
|
|
* | Change temp names created by listcomps from [%d] to _[%d], so the one-liner | Tim Peters | 2001-02-17 | 1 | -2/+2 |
|
|
* | In symtable_update_free_vars() do not modify the dictionary while | Jeremy Hylton | 2001-02-12 | 1 | -7/+27 |
|
|
* | SF patch 103589: Fix handling of cell vars that are either * or ** parameters. | Jeremy Hylton | 2001-02-09 | 1 | -8/+15 |
|
|
* | Relax the rules for using 'from ... import *' and exec in the presence | Jeremy Hylton | 2001-02-09 | 1 | -297/+112 |
|
|
* | Reindent a function that was somehow indented by 7 spaces. Also did a | Guido van Rossum | 2001-02-09 | 1 | -15/+15 |
|
|
* | Fix symbol table pass to generation SyntaxError exceptions that | Jeremy Hylton | 2001-02-02 | 1 | -32/+46 |
|
|
* | Move a bunch of definitions that were internal to compile.c to | Jeremy Hylton | 2001-02-02 | 1 | -116/+96 |
|
|
* | add missing DECREF (thanks, Barry) | Jeremy Hylton | 2001-02-02 | 1 | -0/+1 |
|
|
* | Allow 'continue' inside 'try' clause | Jeremy Hylton | 2001-02-01 | 1 | -8/+13 |
|
|
* | Undo recent change that banned using import to bind a global, as per | Jeremy Hylton | 2001-02-01 | 1 | -22/+25 |
|
|
* | Enforce two illegal import statements that were outlawed in the | Jeremy Hylton | 2001-01-30 | 1 | -44/+55 |
|
|
* | plug leak detected by Barry | Jeremy Hylton | 2001-01-29 | 1 | -0/+1 |
|
|
* | PEP 227 implementation | Jeremy Hylton | 2001-01-25 | 1 | -312/+768 |
|
|
* | Fix bug reported by Ka-Ping Yee: The compiler botched parsing function | Jeremy Hylton | 2001-01-25 | 1 | -12/+15 |
|
|
* | Visit the initial test element of the listmaker for a list | Jeremy Hylton | 2001-01-23 | 1 | -1/+2 |
|
|
* | prevent symtable_params() from dereferencing off the end of the | Jeremy Hylton | 2001-01-23 | 1 | -0/+2 |
|
|
* | com_init(): My entry into the smallest patch possible category. | Barry Warsaw | 2001-01-22 | 1 | -1/+1 |
|
|
* | SF patch #103336: Missing cast. | Tim Peters | 2001-01-20 | 1 | -1/+1 |
|
|
* | This patch introduces an extra pass to the compiler that generates a | Jeremy Hylton | 2001-01-19 | 1 | -284/+1036 |
|
|
* | SF Patch #103250, by pj99: Optimize a strspn() out of startup. | Guido van Rossum | 2001-01-19 | 1 | -4/+21 |
|
|
* | Plug a memory leak in com_import_stmt(): the tuple created to hold the | Guido van Rossum | 2000-11-27 | 1 | -1/+2 |
|
|
* | SF bug 119622: compile errors due to redundant atof decls. I don't understand | Tim Peters | 2000-11-14 | 1 | -1/+0 |
|
|
* | Rationalize use of limits.h, moving the inclusion to Python.h. | Fred Drake | 2000-09-26 | 1 | -6/+0 |
|
|
* | com_continue_stmt(): Improve error message when continue is found | Fred Drake | 2000-09-08 | 1 | -1/+22 |
|
|
* | changed \x to consume exactly two hex digits. implements PEP-223 | Fredrik Lundh | 2000-09-02 | 1 | -16/+28 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
|
|
* | Replace the run-time 'future-bytecode-stream-inspection' hack to find out | Thomas Wouters | 2000-08-27 | 1 | -2/+16 |
|
|
* | Re-allow 'import mod.submod as s', and change its meaning to what it should | Thomas Wouters | 2000-08-27 | 1 | -2/+5 |
|
|
* | Oops, one pop too many. | Thomas Wouters | 2000-08-27 | 1 | -1/+0 |
|
|
* | Fix allowable node-types for assignment, need to add 'listmaker'. | Thomas Wouters | 2000-08-25 | 1 | -1/+1 |
|
|
* | Support for three-token characters (**=, >>=, <<=) which was written by | Thomas Wouters | 2000-08-24 | 1 | -33/+188 |
|
|
* | Charles G. Waldman <cgw@fnal.gov>: | Fred Drake | 2000-08-24 | 1 | -2/+32 |
|
|
* | require list comprehensions to start with a for clause | Skip Montanaro | 2000-08-22 | 1 | -4/+4 |
|
|
* | com_print_stmt(): Guido rightly points out that the stream expression | Barry Warsaw | 2000-08-21 | 1 | -5/+22 |
|
|
* | PEP 214, Extended print Statement, has been accepted by the BDFL. | Barry Warsaw | 2000-08-21 | 1 | -8/+36 |
|
|
* | Disallow "import mod.submod as m", because the result is ambiguous. Does it | Thomas Wouters | 2000-08-19 | 1 | -1/+2 |
|
|
* | com_error(): Quiet gcc -Wall warning. | Barry Warsaw | 2000-08-18 | 1 | -1/+0 |
|
|
* | Apply SF patch #101135, adding 'import module as m' and 'from module import | Thomas Wouters | 2000-08-17 | 1 | -6/+38 |
|
|
* | Fix new compiler warnings. Unused var in compile.c. Argsize mismatches | Tim Peters | 2000-08-15 | 1 | -1/+0 |
|
|
* | Remove the osdefs.h #include; it was not needed in the final version of | Fred Drake | 2000-08-15 | 1 | -1/+0 |
|
|