summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Allow 'continue' inside 'try' clauseJeremy Hylton2001-02-012-12/+37
* Undo recent change that banned using import to bind a global, as perJeremy Hylton2001-02-012-27/+28
* SF bug #130532: newest CVS won't build on AIX.Tim Peters2001-01-311-2/+0
* Enforce two illegal import statements that were outlawed in theJeremy Hylton2001-01-301-44/+55
* Remove f_closure slot of frameobject and use f_localsplus instead.Jeremy Hylton2001-01-291-4/+16
* plug leak detected by BarryJeremy Hylton2001-01-291-0/+1
* It's unclear whether PyMarshal_XXX() are part of the public or private API.Tim Peters2001-01-283-35/+51
* SF bug http://sourceforge.net/bugs/?func=detailbug&bug_id=130242&group_id=5470Tim Peters2001-01-271-0/+1
* Better error message when non-dictionary received for **kwargJeremy Hylton2001-01-251-2/+7
* PEP 227 implementationJeremy Hylton2001-01-254-328/+858
* Fix bug reported by Ka-Ping Yee: The compiler botched parsing functionJeremy Hylton2001-01-251-12/+15
* Leak pluggin', bug fixin' and better documentin'. Specifically,Barry Warsaw2001-01-231-56/+72
* Add a new API, PyThreadState_DeleteCurrent() that combinesGuido van Rossum2001-01-231-4/+27
* Visit the initial test element of the listmaker for a listJeremy Hylton2001-01-231-1/+2
* prevent symtable_params() from dereferencing off the end of theJeremy Hylton2001-01-231-0/+2
* com_init(): My entry into the smallest patch possible category.Barry Warsaw2001-01-221-1/+1
* Bug #128475: mimetools.encode (sometimes) fails when called from a thread.Tim Peters2001-01-211-1/+10
* SF patch #103336: Missing cast.Tim Peters2001-01-201-1/+1
* Use #if TARGET_API_MAC_CARBON to determine carbon/classic macos, not #ifdef.Jack Jansen2001-01-191-1/+1
* Backed out the unistr() builtin.Marc-André Lemburg2001-01-191-18/+0
* clearer error messages for apply() and "no locals"Jeremy Hylton2001-01-192-11/+18
* This patch introduces an extra pass to the compiler that generates aJeremy Hylton2001-01-191-284/+1036
* Fix for the bug in complex() just reported by Ping.Guido van Rossum2001-01-191-1/+7
* SF Patch #103250, by pj99: Optimize a strspn() out of startup.Guido van Rossum2001-01-191-4/+21
* Add my name to the copyright notice.Guido van Rossum2001-01-181-1/+5
* Variant of SF patch 103252: Startup optimize: read *.pyc as string, not with ...Tim Peters2001-01-181-0/+47
* Move distributed and duplicated config for stat() and fstat() into pyport.h.Tim Peters2001-01-182-29/+0
* Get rid of the initialization of _PyCompareState_Key.Guido van Rossum2001-01-171-2/+0
* This patch adds a new builtin unistr() which behaves like str()Marc-André Lemburg2001-01-171-0/+18
* Use rich comparisons in min and max.Guido van Rossum2001-01-171-9/+9
* Rich comparisons fall-out:Guido van Rossum2001-01-171-148/+147
* This patch makes sure that the function name always appears in the errorKa-Ping Yee2001-01-152-55/+89
* Added a separate extension (.carbon.slb) for Carbon dynamic modules.Jack Jansen2001-01-151-0/+4
* Neil discovered a bad DECREF on warnoptions, that caused repeatedGuido van Rossum2001-01-131-2/+1
* Update the docstring for apply() so that "args" is marked as optionalFred Drake2001-01-121-1/+1
* Two changes to from...import:Guido van Rossum2001-01-121-30/+54
* (Modified) patch by Ping - SF Patch #102681.Guido van Rossum2001-01-121-27/+33
* Fixed bugs noted by Greg SteinMoshe Zadka2001-01-111-0/+2
* stdout is sometimes a macro; use "outf" instead.Greg Stein2001-01-111-5/+5
* Implementation of PEP-0217.Moshe Zadka2001-01-112-27/+63
* Add missing Py_DECREF in fast_cfunction. Partial fix for SF bugCharles G. Waldman2001-01-101-3/+6
* Oops, one more part of the cygwin patch (SF patch #102409 by jlt63:Guido van Rossum2001-01-101-1/+1
* SF Patch #103154 by jlt63: Cygwin Check Import Case Patch.Guido van Rossum2001-01-101-1/+13
* Fix signed/unsigned wng. Unfortunately, (unsigned char) << intTim Peters2001-01-051-2/+2
* When a PyCFunction that takes only positional parameters is called withFred Drake2001-01-041-18/+19
* Recognize pyc files even if they don't end in pyc.Martin v. Löwis2001-01-041-7/+33
* Add NotImplemented to the builtin module.Neil Schemenauer2001-01-041-0/+3
* Revised implementation of CALL_FUNCTION and friends.Jeremy Hylton2001-01-031-296/+429
* CHange error messages for ord(), using "string" instead of "string or Unicode"Andrew M. Kuchling2000-12-231-2/+3
* Whoops! Two stray characters crept in to my last check-inAndrew M. Kuchling2000-12-201-1/+1