summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* When iterating over the names imported in a future statement, ignore theFred Drake2001-03-101-1/+1
* Use Py_CHARMASK for ctype macros. Fixes bug #232787.Martin v. Löwis2001-03-061-4/+4
* Add some spaces around the "=" in assignments.Fred Drake2001-03-061-2/+2
* RISCOS changes by dschwertberger.Guido van Rossum2001-03-021-0/+58
* Refactored the warning-issuing code more.Guido van Rossum2001-03-021-11/+17
* Thanks to Steven Majewski, finally putting MacOS X imports to bed for 2.1b1.Tim Peters2001-03-021-9/+3
* Useful future statement support for the interactive interpreterJeremy Hylton2001-03-012-26/+52
* More MacOSX fiddling. As noted in a comment, I believe all variationsTim Peters2001-03-011-18/+37
* More fiddling w/ the new-fangled Mac import code.Tim Peters2001-03-011-5/+9
* Suppress a compiler warning under OpenVMS; time_t is unsigned on (at least)Fred Drake2001-03-011-2/+2
* Fix core dump in example from Samuele Pedroni:Jeremy Hylton2001-03-011-15/+31
* Remove extra close curly in code #ifdef'ed out on my box.Tim Peters2001-03-011-1/+0
* In Steven's apparent absence, check in *something* with a non-zero chanceTim Peters2001-03-011-35/+40
* Don't add global names to st->st_global if we're already iteratingJeremy Hylton2001-03-011-6/+15
* undo introduction of st_global_starJeremy Hylton2001-02-281-3/+0
* Warn about global statement at the module level.Jeremy Hylton2001-02-281-2/+17
* Add warning/error handlin for problematic nested scopes cases asJeremy Hylton2001-02-281-26/+119
* Let's have some sanity. Introduce a helper to issue a symbol tableGuido van Rossum2001-02-281-16/+17
* Use the new PyErr_WarnExplicit() API to issue better warnings forGuido van Rossum2001-02-281-12/+21
* SyntaxError__init__(): Be a little more robust when picking apart theFred Drake2001-02-281-16/+22
* Add PyErr_WarnExplicit(), which calls warnings.warn_explicit(), withGuido van Rossum2001-02-281-0/+42
* Now that Jeremy is asking about this code, it looks really bogus to me,Fred Drake2001-02-281-18/+0
* Improve SyntaxErrors for bad future statements. Set file and locationJeremy Hylton2001-02-283-94/+109
* SF patch 404928: Support for next Cygwin gcc (2.95.2-8)Tim Peters2001-02-281-8/+2
* Print the offending line of code in the traceback for SyntaxErrorsJeremy Hylton2001-02-282-67/+144
* Ack -- my eyes are getting bleary. Typos in the comment typo repairs.Tim Peters2001-02-281-1/+1
* Comment typos.Tim Peters2001-02-281-2/+2
* Implement PEP 235: Import on Case-Insensitive Platforms.Tim Peters2001-02-281-138/+87
* Need to support single_input explicitly so from __future__ importsJeremy Hylton2001-02-281-0/+8
* Presumed correct compiler pass for future statementsJeremy Hylton2001-02-282-29/+128
* Improved __future__ parser; still more to doJeremy Hylton2001-02-273-43/+152
* Add warnings about undefined "global"Jeremy Hylton2001-02-271-0/+29
* Preliminary support for future nested scopesJeremy Hylton2001-02-272-115/+270
* Shuffle premature decref; nuke unreachable code block.Tim Peters2001-02-231-9/+3
* symtable_update_free_vars(), symtable_undo_free(),Barry Warsaw2001-02-231-3/+3
* Fix for bug 133489: compiler leaks memoryJeremy Hylton2001-02-232-5/+11
* The code in PyImport_Import() tried to save itself a bit of work andGuido van Rossum2001-02-201-13/+7
* Fix for implicit tuple + default arguments, courtesy of Michael Hudson.Jeremy Hylton2001-02-191-1/+3
* When running python -O, do not include blocks defined in asserts inJeremy Hylton2001-02-191-0/+11
* Tolerate ill-formed trees in symtable_assign(). Fixes SF bug 132510.Jeremy Hylton2001-02-191-5/+8
* Bug #132313 error message confusing for assignment in lambda.Tim Peters2001-02-181-1/+8
* Bug #132850 unix line terminator on windows.Tim Peters2001-02-171-10/+14
* Change temp names created by listcomps from [%d] to _[%d], so the one-linerTim Peters2001-02-171-2/+2
* Remove trailing comma from 'why_code' enum, which was introduced by theThomas Wouters2001-02-161-1/+1
* Related to SF bug 132008 (PyList_Reverse blows up).Tim Peters2001-02-121-0/+2
* In symtable_update_free_vars() do not modify the dictionary whileJeremy Hylton2001-02-121-7/+27
* Ugly fix for SF bug 131239 (-x flag busted).Tim Peters2001-02-111-4/+15
* When calling a PyCFunction that has METH_KEYWORDS defined, don'tJeremy Hylton2001-02-091-10/+0
* SF patch 103589: Fix handling of cell vars that are either * or ** parameters.Jeremy Hylton2001-02-091-8/+15
* Relax the rules for using 'from ... import *' and exec in the presenceJeremy Hylton2001-02-092-297/+259