| Commit message (Expand) | Author | Age | Files | Lines |
* | Add PyThreadState_SetAsyncExc(long, PyObject *). | Guido van Rossum | 2003-06-28 | 2 | -1/+47 |
|
|
* | Better error message | Jeremy Hylton | 2003-06-21 | 1 | -1/+7 |
|
|
* | Removed bytecode transformation for sequence packing/unpacking. | Raymond Hettinger | 2003-06-20 | 1 | -28/+0 |
|
|
* | Don't use the module object setattr when importing submodules. Instead, | Neil Schemenauer | 2003-06-16 | 1 | -18/+38 |
|
|
* | Use fast_next_opcode shortcut for forward jump opcodes (it's safe and | Neil Schemenauer | 2003-06-01 | 1 | -5/+5 |
|
|
* | SF bug #733667: kwargs handled incorrectly | Raymond Hettinger | 2003-05-31 | 1 | -1/+1 |
|
|
* | Don't use fast_next_opcode for JUMP_* opcodes. This fixes the problem | Neil Schemenauer | 2003-05-30 | 1 | -6/+6 |
|
|
* | Added functions CFObj_New and CFObj_Convert, general functions to convert | Jack Jansen | 2003-05-27 | 1 | -0/+3 |
|
|
* | SF bug #644345, Poor error message for augmented assign | Neal Norwitz | 2003-05-22 | 1 | -2/+2 |
|
|
* | Use macro to get length of list. | Jeremy Hylton | 2003-05-22 | 1 | -8/+2 |
|
|
* | Remove comment with very long lines that explained what the code used | Jeremy Hylton | 2003-05-22 | 1 | -3/+3 |
|
|
* | Fix for SF [ 734869 ] Lambda functions in list comprehensions | Jeremy Hylton | 2003-05-21 | 2 | -14/+24 |
|
|
* | cmp_type(): The grammar stopped allowing '=' as a comparison operator | Tim Peters | 2003-05-12 | 1 | -3/+2 |
|
|
* | Patch #734231: Update RiscOS support. In particular, correct | Martin v. Löwis | 2003-05-10 | 1 | -1/+1 |
|
|
* | Patch #612627: Add encoding attribute to file objects, and determine | Martin v. Löwis | 2003-05-10 | 1 | -0/+43 |
|
|
* | Patch #708604: Check more function results. Will backport to 2.2. | Martin v. Löwis | 2003-05-03 | 1 | -7/+37 |
|
|
* | Patch #684981: Add cleanup capability for argument parsers. Fixes 501716. | Martin v. Löwis | 2003-05-03 | 1 | -28/+90 |
|
|
* | Patch #708495: Port more stuff to OpenVMS. | Martin v. Löwis | 2003-05-03 | 2 | -0/+47 |
|
|
* | Patch #729300: Disable error message if Python is not built for threads. | Martin v. Löwis | 2003-05-01 | 1 | -1/+1 |
|
|
* | Use Tim's suggestion to fix | Michael W. Hudson | 2003-04-29 | 1 | -1/+1 |
|
|
* | Armin Rigo's fix & test for | Michael W. Hudson | 2003-04-29 | 1 | -9/+10 |
|
|
* | Revert the previous enhancement to the bytecode optimizer. | Raymond Hettinger | 2003-04-24 | 2 | -86/+9 |
|
|
* | some more error-message enhancements | Alex Martelli | 2003-04-23 | 1 | -10/+10 |
|
|
* | complete and clarify some error messages for range() | Alex Martelli | 2003-04-23 | 1 | -5/+5 |
|
|
* | PyGILState cleanup was too early - destructors called via module cleanup may ... | Mark Hammond | 2003-04-22 | 1 | -5/+5 |
|
|
* | fixed a potential refcount bug (thanks Raymond!). | Alex Martelli | 2003-04-22 | 1 | -1/+1 |
|
|
* | Adding new built-in function sum, with docs and tests. | Alex Martelli | 2003-04-22 | 1 | -0/+61 |
|
|
* | Improved the bytecode optimizer. | Raymond Hettinger | 2003-04-22 | 2 | -9/+86 |
|
|
* | handle_system_exit(): This leaked the current exception info, in | Tim Peters | 2003-04-19 | 1 | -4/+16 |
|
|
* | New PyGILState_ API - implements pep 311, from patch 684256. | Mark Hammond | 2003-04-19 | 5 | -81/+265 |
|
|
* | Patch #716969: Detect thread creation failure. Will backport to 2.2. | Martin v. Löwis | 2003-04-19 | 2 | -9/+9 |
|
|
* | Patch #711835: Remove unnecessary lock operations. Will backport to 2.2. | Martin v. Löwis | 2003-04-18 | 1 | -8/+4 |
|
|
* | Roll back changes to 'h' format code -- too much breaks. Other | Guido van Rossum | 2003-04-18 | 1 | -5/+5 |
|
|
* | dded missing k and K format specifiers to Py_BuildValue and friends. | Jack Jansen | 2003-04-17 | 1 | -0/+6 |
|
|
* | Oops, 'k' is the new format code for un unchecked 32 bit quantity, | Jack Jansen | 2003-04-17 | 1 | -2/+2 |
|
|
* | Converted manually written code to the new K format specifier. | Jack Jansen | 2003-04-17 | 1 | -2/+2 |
|
|
* | _Py_PrintReferences(): Changed to print object address at start of each | Tim Peters | 2003-04-17 | 1 | -2/+9 |
|
|
* | SF # 595026: support for masks in getargs.c. | Thomas Heller | 2003-04-17 | 1 | -27/+49 |
|
|
* | - New C API PyGC_Collect(), same as calling gc.collect(). | Guido van Rossum | 2003-04-17 | 1 | -0/+8 |
|
|
* | A missing piece of the PEP 269 patch: add PyParser_SetError(), a | Guido van Rossum | 2003-04-17 | 1 | -0/+9 |
|
|
* | Trimmed trailing whitespace. | Tim Peters | 2003-04-17 | 1 | -10/+10 |
|
|
* | Py_Finalize(): Reverted recent changes that tried to move the | Tim Peters | 2003-04-17 | 1 | -8/+11 |
|
|
* | - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences() | Guido van Rossum | 2003-04-15 | 2 | -13/+17 |
|
|
* | Move the call to _Py_PrintReferences() a bit further down. This | Guido van Rossum | 2003-04-15 | 1 | -7/+12 |
|
|
* | Some errors from range() should be TypeError, not ValueError. | Guido van Rossum | 2003-04-15 | 1 | -3/+3 |
|
|
* | Extend SF patch #707257: Improve code generation | Raymond Hettinger | 2003-04-15 | 1 | -8/+20 |
|
|
* | Prompted by Tim's comment, when handle_range_longs() sees an | Guido van Rossum | 2003-04-14 | 1 | -9/+9 |
|
|
* | handle_range_longs(): refcount handling is very delicate here, and | Tim Peters | 2003-04-13 | 1 | -31/+50 |
|
|
* | Patch by Chad Netzer (with significant change): | Guido van Rossum | 2003-04-11 | 1 | -5/+190 |
|
|
* | Move declaration of enc to scope where it is used | Neal Norwitz | 2003-04-10 | 1 | -2/+1 |
|
|