| Commit message (Expand) | Author | Age | Files | Lines |
* | Now that Jeremy is asking about this code, it looks really bogus to me, | Fred Drake | 2001-02-28 | 1 | -18/+0 |
|
|
* | Improve SyntaxErrors for bad future statements. Set file and location | Jeremy Hylton | 2001-02-28 | 3 | -94/+109 |
|
|
* | SF patch 404928: Support for next Cygwin gcc (2.95.2-8) | Tim Peters | 2001-02-28 | 1 | -8/+2 |
|
|
* | Print the offending line of code in the traceback for SyntaxErrors | Jeremy Hylton | 2001-02-28 | 2 | -67/+144 |
|
|
* | Ack -- my eyes are getting bleary. Typos in the comment typo repairs. | Tim Peters | 2001-02-28 | 1 | -1/+1 |
|
|
* | Comment typos. | Tim Peters | 2001-02-28 | 1 | -2/+2 |
|
|
* | Implement PEP 235: Import on Case-Insensitive Platforms. | Tim Peters | 2001-02-28 | 1 | -138/+87 |
|
|
* | Need to support single_input explicitly so from __future__ imports | Jeremy Hylton | 2001-02-28 | 1 | -0/+8 |
|
|
* | Presumed correct compiler pass for future statements | Jeremy Hylton | 2001-02-28 | 2 | -29/+128 |
|
|
* | Improved __future__ parser; still more to do | Jeremy Hylton | 2001-02-27 | 3 | -43/+152 |
|
|
* | Add warnings about undefined "global" | Jeremy Hylton | 2001-02-27 | 1 | -0/+29 |
|
|
* | Preliminary support for future nested scopes | Jeremy Hylton | 2001-02-27 | 2 | -115/+270 |
|
|
* | 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 | 2 | -5/+11 |
|
|
* | The code in PyImport_Import() tried to save itself a bit of work and | Guido van Rossum | 2001-02-20 | 1 | -13/+7 |
|
|
* | 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 |
|
|
* | Bug #132850 unix line terminator on windows. | Tim Peters | 2001-02-17 | 1 | -10/+14 |
|
|
* | Change temp names created by listcomps from [%d] to _[%d], so the one-liner | Tim Peters | 2001-02-17 | 1 | -2/+2 |
|
|
* | Remove trailing comma from 'why_code' enum, which was introduced by the | Thomas Wouters | 2001-02-16 | 1 | -1/+1 |
|
|
* | Related to SF bug 132008 (PyList_Reverse blows up). | Tim Peters | 2001-02-12 | 1 | -0/+2 |
|
|
* | In symtable_update_free_vars() do not modify the dictionary while | Jeremy Hylton | 2001-02-12 | 1 | -7/+27 |
|
|
* | Ugly fix for SF bug 131239 (-x flag busted). | Tim Peters | 2001-02-11 | 1 | -4/+15 |
|
|
* | When calling a PyCFunction that has METH_KEYWORDS defined, don't | Jeremy Hylton | 2001-02-09 | 1 | -10/+0 |
|
|
* | 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 | 2 | -297/+259 |
|
|
* | This modified version of a patch by Thomas Heller allows __import__ | Marc-André Lemburg | 2001-02-09 | 1 | -8/+9 |
|
|
* | Reindent a function that was somehow indented by 7 spaces. Also did a | Guido van Rossum | 2001-02-09 | 1 | -15/+15 |
|
|
* | SF patch 103596 by Nick Mathewson: rause UnboundLocalError for | Jeremy Hylton | 2001-02-05 | 1 | -0/+16 |
|
|
* | Superseded by $(srcdir)/Makefile.pre.in. | Neil Schemenauer | 2001-02-03 | 1 | -140/+0 |
|
|
* | bump the magic number; the compiler has changed since 2.1a1 | Jeremy Hylton | 2001-02-02 | 1 | -1/+1 |
|
|
* | Fix symbol table pass to generation SyntaxError exceptions that | Jeremy Hylton | 2001-02-02 | 1 | -32/+46 |
|
|
* | Steve Majewski's patch #103495, MatchFilename() and find_module() | Barry Warsaw | 2001-02-02 | 1 | -0/+53 |
|
|
* | Move a bunch of definitions that were internal to compile.c to | Jeremy Hylton | 2001-02-02 | 2 | -116/+110 |
|
|
* | add missing DECREF (thanks, Barry) | Jeremy Hylton | 2001-02-02 | 1 | -0/+1 |
|
|
* | Allow 'continue' inside 'try' clause | Jeremy Hylton | 2001-02-01 | 2 | -12/+37 |
|
|
* | Undo recent change that banned using import to bind a global, as per | Jeremy Hylton | 2001-02-01 | 2 | -27/+28 |
|
|
* | SF bug #130532: newest CVS won't build on AIX. | Tim Peters | 2001-01-31 | 1 | -2/+0 |
|
|
* | Enforce two illegal import statements that were outlawed in the | Jeremy Hylton | 2001-01-30 | 1 | -44/+55 |
|
|
* | Remove f_closure slot of frameobject and use f_localsplus instead. | Jeremy Hylton | 2001-01-29 | 1 | -4/+16 |
|
|
* | plug leak detected by Barry | Jeremy Hylton | 2001-01-29 | 1 | -0/+1 |
|
|
* | It's unclear whether PyMarshal_XXX() are part of the public or private API. | Tim Peters | 2001-01-28 | 3 | -35/+51 |
|
|
* | SF bug http://sourceforge.net/bugs/?func=detailbug&bug_id=130242&group_id=5470 | Tim Peters | 2001-01-27 | 1 | -0/+1 |
|
|
* | Better error message when non-dictionary received for **kwarg | Jeremy Hylton | 2001-01-25 | 1 | -2/+7 |
|
|
* | PEP 227 implementation | Jeremy Hylton | 2001-01-25 | 4 | -328/+858 |
|
|
* | Fix bug reported by Ka-Ping Yee: The compiler botched parsing function | Jeremy Hylton | 2001-01-25 | 1 | -12/+15 |
|
|
* | Leak pluggin', bug fixin' and better documentin'. Specifically, | Barry Warsaw | 2001-01-23 | 1 | -56/+72 |
|
|