| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | This modified version of a patch by Thomas Heller allows __import__ | Marc-André Lemburg | 2001-02-09 | 1 | -8/+9 |
|
|
* | Reindent a function that was somehow indented by 7 spaces. Also did a | Guido van Rossum | 2001-02-09 | 1 | -15/+15 |
|
|
* | SF patch 103596 by Nick Mathewson: rause UnboundLocalError for | Jeremy Hylton | 2001-02-05 | 1 | -0/+16 |
|
|
* | Superseded by $(srcdir)/Makefile.pre.in. | Neil Schemenauer | 2001-02-03 | 1 | -140/+0 |
|
|
* | bump the magic number; the compiler has changed since 2.1a1 | Jeremy Hylton | 2001-02-02 | 1 | -1/+1 |
|
|
* | Fix symbol table pass to generation SyntaxError exceptions that | Jeremy Hylton | 2001-02-02 | 1 | -32/+46 |
|
|
* | Steve Majewski's patch #103495, MatchFilename() and find_module() | Barry Warsaw | 2001-02-02 | 1 | -0/+53 |
|
|
* | Move a bunch of definitions that were internal to compile.c to | Jeremy Hylton | 2001-02-02 | 2 | -116/+110 |
|
|
* | add missing DECREF (thanks, Barry) | Jeremy Hylton | 2001-02-02 | 1 | -0/+1 |
|
|
* | Allow 'continue' inside 'try' clause | Jeremy Hylton | 2001-02-01 | 2 | -12/+37 |
|
|
* | Undo recent change that banned using import to bind a global, as per | Jeremy Hylton | 2001-02-01 | 2 | -27/+28 |
|
|
* | SF bug #130532: newest CVS won't build on AIX. | Tim Peters | 2001-01-31 | 1 | -2/+0 |
|
|
* | Enforce two illegal import statements that were outlawed in the | Jeremy Hylton | 2001-01-30 | 1 | -44/+55 |
|
|
* | Remove f_closure slot of frameobject and use f_localsplus instead. | Jeremy Hylton | 2001-01-29 | 1 | -4/+16 |
|
|
* | plug leak detected by Barry | Jeremy Hylton | 2001-01-29 | 1 | -0/+1 |
|
|
* | It's unclear whether PyMarshal_XXX() are part of the public or private API. | Tim Peters | 2001-01-28 | 3 | -35/+51 |
|
|
* | SF bug http://sourceforge.net/bugs/?func=detailbug&bug_id=130242&group_id=5470 | Tim Peters | 2001-01-27 | 1 | -0/+1 |
|
|
* | Better error message when non-dictionary received for **kwarg | Jeremy Hylton | 2001-01-25 | 1 | -2/+7 |
|
|
* | PEP 227 implementation | Jeremy Hylton | 2001-01-25 | 4 | -328/+858 |
|
|
* | Fix bug reported by Ka-Ping Yee: The compiler botched parsing function | Jeremy Hylton | 2001-01-25 | 1 | -12/+15 |
|
|
* | Leak pluggin', bug fixin' and better documentin'. Specifically, | Barry Warsaw | 2001-01-23 | 1 | -56/+72 |
|
|
* | Add a new API, PyThreadState_DeleteCurrent() that combines | Guido van Rossum | 2001-01-23 | 1 | -4/+27 |
|
|
* | Visit the initial test element of the listmaker for a list | Jeremy Hylton | 2001-01-23 | 1 | -1/+2 |
|
|
* | prevent symtable_params() from dereferencing off the end of the | Jeremy Hylton | 2001-01-23 | 1 | -0/+2 |
|
|
* | com_init(): My entry into the smallest patch possible category. | Barry Warsaw | 2001-01-22 | 1 | -1/+1 |
|
|
* | Bug #128475: mimetools.encode (sometimes) fails when called from a thread. | Tim Peters | 2001-01-21 | 1 | -1/+10 |
|
|
* | SF patch #103336: Missing cast. | Tim Peters | 2001-01-20 | 1 | -1/+1 |
|
|
* | Use #if TARGET_API_MAC_CARBON to determine carbon/classic macos, not #ifdef. | Jack Jansen | 2001-01-19 | 1 | -1/+1 |
|
|
* | Backed out the unistr() builtin. | Marc-André Lemburg | 2001-01-19 | 1 | -18/+0 |
|
|
* | clearer error messages for apply() and "no locals" | Jeremy Hylton | 2001-01-19 | 2 | -11/+18 |
|
|
* | This patch introduces an extra pass to the compiler that generates a | Jeremy Hylton | 2001-01-19 | 1 | -284/+1036 |
|
|
* | Fix for the bug in complex() just reported by Ping. | Guido van Rossum | 2001-01-19 | 1 | -1/+7 |
|
|
* | SF Patch #103250, by pj99: Optimize a strspn() out of startup. | Guido van Rossum | 2001-01-19 | 1 | -4/+21 |
|
|
* | Add my name to the copyright notice. | Guido van Rossum | 2001-01-18 | 1 | -1/+5 |
|
|
* | Variant of SF patch 103252: Startup optimize: read *.pyc as string, not with ... | Tim Peters | 2001-01-18 | 1 | -0/+47 |
|
|
* | Move distributed and duplicated config for stat() and fstat() into pyport.h. | Tim Peters | 2001-01-18 | 2 | -29/+0 |
|
|
* | Get rid of the initialization of _PyCompareState_Key. | Guido van Rossum | 2001-01-17 | 1 | -2/+0 |
|
|
* | This patch adds a new builtin unistr() which behaves like str() | Marc-André Lemburg | 2001-01-17 | 1 | -0/+18 |
|
|
* | Use rich comparisons in min and max. | Guido van Rossum | 2001-01-17 | 1 | -9/+9 |
|
|
* | Rich comparisons fall-out: | Guido van Rossum | 2001-01-17 | 1 | -148/+147 |
|
|
* | This patch makes sure that the function name always appears in the error | Ka-Ping Yee | 2001-01-15 | 2 | -55/+89 |
|
|
* | Added a separate extension (.carbon.slb) for Carbon dynamic modules. | Jack Jansen | 2001-01-15 | 1 | -0/+4 |
|
|
* | Neil discovered a bad DECREF on warnoptions, that caused repeated | Guido van Rossum | 2001-01-13 | 1 | -2/+1 |
|
|
* | Update the docstring for apply() so that "args" is marked as optional | Fred Drake | 2001-01-12 | 1 | -1/+1 |
|
|
* | Two changes to from...import: | Guido van Rossum | 2001-01-12 | 1 | -30/+54 |
|
|
* | (Modified) patch by Ping - SF Patch #102681. | Guido van Rossum | 2001-01-12 | 1 | -27/+33 |
|
|
* | Fixed bugs noted by Greg Stein | Moshe Zadka | 2001-01-11 | 1 | -0/+2 |
|
|
* | stdout is sometimes a macro; use "outf" instead. | Greg Stein | 2001-01-11 | 1 | -5/+5 |
|
|
* | Implementation of PEP-0217. | Moshe Zadka | 2001-01-11 | 2 | -27/+63 |
|
|
* | Add missing Py_DECREF in fast_cfunction. Partial fix for SF bug | Charles G. Waldman | 2001-01-10 | 1 | -3/+6 |
|
|