summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* 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
* This modified version of a patch by Thomas Heller allows __import__Marc-André Lemburg2001-02-091-8/+9
* Reindent a function that was somehow indented by 7 spaces. Also did aGuido van Rossum2001-02-091-15/+15
* SF patch 103596 by Nick Mathewson: rause UnboundLocalError forJeremy Hylton2001-02-051-0/+16
* Superseded by $(srcdir)/Makefile.pre.in.Neil Schemenauer2001-02-031-140/+0
* bump the magic number; the compiler has changed since 2.1a1Jeremy Hylton2001-02-021-1/+1
* Fix symbol table pass to generation SyntaxError exceptions thatJeremy Hylton2001-02-021-32/+46
* Steve Majewski's patch #103495, MatchFilename() and find_module()Barry Warsaw2001-02-021-0/+53
* Move a bunch of definitions that were internal to compile.c toJeremy Hylton2001-02-022-116/+110
* add missing DECREF (thanks, Barry)Jeremy Hylton2001-02-021-0/+1
* 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