| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove trailing comma from 'why_code' enum, which was introduced by the | Thomas Wouters | 2001-02-16 | 1 | -1/+1 |
|
|
* | When calling a PyCFunction that has METH_KEYWORDS defined, don't | Jeremy Hylton | 2001-02-09 | 1 | -10/+0 |
|
|
* | SF patch 103596 by Nick Mathewson: rause UnboundLocalError for | Jeremy Hylton | 2001-02-05 | 1 | -0/+16 |
|
|
* | Allow 'continue' inside 'try' clause | Jeremy Hylton | 2001-02-01 | 1 | -4/+24 |
|
|
* | Undo recent change that banned using import to bind a global, as per | Jeremy Hylton | 2001-02-01 | 1 | -5/+3 |
|
|
* | SF bug #130532: newest CVS won't build on AIX. | Tim Peters | 2001-01-31 | 1 | -2/+0 |
|
|
* | Remove f_closure slot of frameobject and use f_localsplus instead. | Jeremy Hylton | 2001-01-29 | 1 | -4/+16 |
|
|
* | PEP 227 implementation | Jeremy Hylton | 2001-01-25 | 1 | -12/+77 |
|
|
* | clearer error messages for apply() and "no locals" | Jeremy Hylton | 2001-01-19 | 1 | -7/+12 |
|
|
* | 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 | 1 | -29/+54 |
|
|
* | Two changes to from...import: | Guido van Rossum | 2001-01-12 | 1 | -30/+54 |
|
|
* | Fixed bugs noted by Greg Stein | Moshe Zadka | 2001-01-11 | 1 | -0/+2 |
|
|
* | Implementation of PEP-0217. | Moshe Zadka | 2001-01-11 | 1 | -27/+17 |
|
|
* | Add missing Py_DECREF in fast_cfunction. Partial fix for SF bug | Charles G. Waldman | 2001-01-10 | 1 | -3/+6 |
|
|
* | When a PyCFunction that takes only positional parameters is called with | Fred Drake | 2001-01-04 | 1 | -18/+19 |
|
|
* | Revised implementation of CALL_FUNCTION and friends. | Jeremy Hylton | 2001-01-03 | 1 | -296/+429 |
|
|
* | Fix for SF bug #117241 | Jeremy Hylton | 2000-10-30 | 1 | -1/+15 |
|
|
* | Ka-Ping Yee <ping@lfw.org>: | Fred Drake | 2000-10-24 | 1 | -29/+48 |
|
|
* | Do a better job at staying on-screen :P (Sorry, it's late here.) I'm | Thomas Wouters | 2000-10-11 | 1 | -1/+2 |
|
|
* | Adjust debugging code in the implementation of the DUP_TOPX bytecode, use | Thomas Wouters | 2000-10-11 | 1 | -5/+1 |
|
|
* | Remove the last gcc -Wall warning about possible use of an uninitialized | Fred Drake | 2000-10-11 | 1 | -0/+1 |
|
|
* | Attempt to fix bogus gcc -Wall warnings reported by Marc-Andre Lemburg, | Tim Peters | 2000-10-11 | 1 | -31/+61 |
|
|
* | Rationalize use of limits.h, moving the inclusion to Python.h. | Fred Drake | 2000-09-26 | 1 | -6/+0 |
|
|
* | This patch adds a new Python C API called PyString_AsStringAndSize() | Marc-André Lemburg | 2000-09-19 | 1 | -6/+4 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
|
|
* | Cosmetics on Py_Get/SetRecursionLimit (for the style guide) | Vladimir Marangozov | 2000-09-01 | 1 | -2/+4 |
|
|
* | Revert removal of void from function definition. Guido sez I can take it | Tim Peters | 2000-09-01 | 1 | -1/+1 |
|
|
* | Set the recursion limit to 1000 -- 2500 was not enough, let's be | Guido van Rossum | 2000-09-01 | 1 | -1/+1 |
|
|
* | Supply missing prototypes for new Py_{Get,Set}RecursionLimit; fixes compiler ... | Tim Peters | 2000-09-01 | 1 | -1/+1 |
|
|
* | add user-modifiable recursion_limit | Jeremy Hylton | 2000-08-31 | 1 | -5/+15 |
|
|
* | Better error message with UnboundLocalError | Paul Prescod | 2000-08-30 | 1 | -11/+39 |
|
|
* | eval_code2(): Guido provides this patch for his suggested elaboration | Barry Warsaw | 2000-08-29 | 1 | -2/+2 |
|
|
* | Replace the run-time 'future-bytecode-stream-inspection' hack to find out | Thomas Wouters | 2000-08-27 | 1 | -55/+1 |
|
|
* | Charles Waldman's patch to reinitialize the interpreter lock after a | Guido van Rossum | 2000-08-27 | 1 | -0/+19 |
|
|
* | Support for three-token characters (**=, >>=, <<=) which was written by | Thomas Wouters | 2000-08-24 | 1 | -4/+201 |
|
|
* | Charles G. Waldman <cgw@fnal.gov>: | Fred Drake | 2000-08-24 | 1 | -0/+6 |
|
|
* | PEP 214, Extended print Statement, has been accepted by the BDFL. | Barry Warsaw | 2000-08-21 | 1 | -16/+33 |
|
|
* | Fix the bug Sjoerd Mullender discovered, where find_from_args() wasn't | Thomas Wouters | 2000-08-20 | 1 | -1/+3 |
|
|
* | Remove a couple of warnings turned up by "gcc -Wall". | Fred Drake | 2000-08-18 | 1 | -1/+2 |
|
|
* | Apply SF patch #101135, adding 'import module as m' and 'from module import | Thomas Wouters | 2000-08-17 | 1 | -43/+70 |
|
|
* | Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since they | Thomas Wouters | 2000-08-11 | 1 | -2/+1 |
|
|
* | Initialized opcode and oparg to silence a gcc -Wall warning. | Moshe Zadka | 2000-08-07 | 1 | -2/+2 |
|
|
* | Use 'void' directly instead of the ANY #define, now that all code is ANSI C. | Thomas Wouters | 2000-07-25 | 1 | -5/+5 |
|
|
* | Mass ANSIfication of function definitions. Doesn't cover all 'extern' | Thomas Wouters | 2000-07-22 | 1 | -112/+49 |
|
|
* | Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either | Thomas Wouters | 2000-07-16 | 1 | -1/+1 |
|
|
* | Include macglue.h for some function prototypes, and renamed a few | Jack Jansen | 2000-07-11 | 1 | -0/+4 |
|
|
* | Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. | Tim Peters | 2000-07-09 | 1 | -31/+29 |
|
|
* | Change copyright notice - 2nd try. | Guido van Rossum | 2000-06-30 | 1 | -6/+0 |
|
|
* | Change copyright notice. | Guido van Rossum | 2000-06-30 | 1 | -22/+7 |
|
|