summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Make some private symbols static.Guido van Rossum2001-04-142-3/+4
* split long lineJeremy Hylton2001-04-131-1/+2
* Change error message raised when free variable is not yet bound. ItJeremy Hylton2001-04-131-10/+16
* Patch by Ping (SF bug 415879, Exception.__init__() causes segfault):Guido van Rossum2001-04-131-3/+2
* Because this code was derived from Python 1.6.1 (amongst others), theGuido van Rossum2001-04-121-1/+1
* Update copyright to PSF.Guido van Rossum2001-04-121-1/+1
* Fix exception handling for non-PyFunction objects, SF bug 414743.Jeremy Hylton2001-04-111-16/+54
* Updated version of RISCOS support. SF patch 411213 by Dietmar SchwertbergerGuido van Rossum2001-04-101-0/+4
* test_pickle works on sizeof(long)==8 boxes again.Tim Peters2001-04-101-1/+1
* Warn when assigning to __debug__ instead of raising an error.Jeremy Hylton2001-04-091-7/+2
* SF patch #413552 - Premature decref on objectTim Peters2001-04-071-3/+7
* Bug fix: compile() called from a nested-scopes-enable Python was notJeremy Hylton2001-03-261-1/+1
* Finishing touch to Ping's changes. This is a patch that Ping sent meGuido van Rossum2001-03-231-11/+11
* call_sys_exitfunc(): Remove unused variable f.Fred Drake2001-03-231-1/+1
* Allow sys.excepthook and sys.exitfunc to quietly exit with a sys.exit().Ka-Ping Yee2001-03-231-32/+37
* Make it illegal to assign to __debug__ as per Guido's request.Jeremy Hylton2001-03-231-1/+12
* Fix memory leak with SyntaxError. (The DECREF was originally hiddenGuido van Rossum2001-03-231-0/+1
* Add sys.excepthook.Ka-Ping Yee2001-03-232-20/+83
* Set the line number correctly for a nested function with an exec orJeremy Hylton2001-03-221-2/+5
* 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