summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* Make error messages clearer for illegal combinations of nestedJeremy Hylton2001-03-221-15/+36
* Extend support for from __future__ import nested_scopesJeremy Hylton2001-03-223-16/+112
* If a code object is compiled with nested scopes, define the CO_NESTED flag.Jeremy Hylton2001-03-222-1/+11
* Use PyObject_IsInstance() to check whether the first argument to anGuido van Rossum2001-03-211-13/+19
* Update PyNode_CompileSymtable() to understand future statementsJeremy Hylton2001-03-211-9/+15
* Move the code implementing isinstance() and issubclass() to new CGuido van Rossum2001-03-211-96/+6
* Fix PyFrame_FastToLocals() and counterpart to deal with cells andJeremy Hylton2001-03-212-55/+114
* Case-checking was broken on the Macintosh. Fixed.Jack Jansen2001-03-201-3/+2
* Fixup handling of free variables in methods when the class scope alsoJeremy Hylton2001-03-201-3/+12
* Fix crashes in nested list comprehensionsJeremy Hylton2001-03-191-8/+10
* Variety of small INC/DECREF patches that fix reported memory leaksJeremy Hylton2001-03-131-4/+7
* Py_BuildValue(): Add "D" conversion to create a Python complex value fromFred Drake2001-03-121-0/+6
* 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