| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | PyErr_NormalizeException(): in the type==NULL test, we should simply | Guido van Rossum | 2003-04-10 | 1 | -3/+2 |
|
|
* | - New function sys.call_tracing() allows pdb to debug code | Guido van Rossum | 2003-04-09 | 2 | -0/+37 |
|
|
* | SF patch #701494: more apply removals | Raymond Hettinger | 2003-04-06 | 1 | -1/+4 |
|
|
* | Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. | Martin v. Löwis | 2003-03-29 | 2 | -7/+7 |
|
|
* | Factored out test for absolute jumps. | Raymond Hettinger | 2003-03-28 | 1 | -2/+3 |
|
|
* | SF patch #707257: Improve code generation | Raymond Hettinger | 2003-03-26 | 1 | -2/+94 |
|
|
* | symtable_cellvar_offsets(): This leaked references to little integers | Tim Peters | 2003-03-24 | 1 | -1/+5 |
|
|
* | Improved new Py_TRACE_REFS gimmicks. | Tim Peters | 2003-03-23 | 1 | -2/+16 |
|
|
* | SF patch #708201, unchecked return value in import.c by Jason Harper | Neal Norwitz | 2003-03-23 | 1 | -0/+2 |
|
|
* | Include Python.h first which defines _XOPEN_SOURCE | Neal Norwitz | 2003-03-22 | 1 | -3/+3 |
|
|
* | Fixed SF bug #663074. The codec system was using global static | Gustavo Niemeyer | 2003-03-19 | 3 | -92/+71 |
|
|
* | Eliminate data dependency in predict macro. | Raymond Hettinger | 2003-03-16 | 1 | -2/+8 |
|
|
* | Fix comment and whitespace. | Raymond Hettinger | 2003-03-16 | 1 | -3/+4 |
|
|
* | Introduced macros for a simple opcode prediction protocol. | Raymond Hettinger | 2003-03-16 | 1 | -6/+35 |
|
|
* | SF patch #701907: More use of fast_next_opcode | Raymond Hettinger | 2003-03-14 | 1 | -11/+11 |
|
|
* | Declare all variables at the start of their scope. | Fred Drake | 2003-03-05 | 1 | -1/+1 |
|
|
* | Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize, | Martin v. Löwis | 2003-03-05 | 2 | -0/+48 |
|
|
* | Use Carbon.File for FSSpec and FSRef conversion, not macfs. | Jack Jansen | 2003-03-02 | 1 | -4/+4 |
|
|
* | Added implementation notes for [re]set_exc_info(). | Guido van Rossum | 2003-03-01 | 1 | -0/+61 |
|
|
* | - New function sys.exc_clear() clears the current exception. This is | Guido van Rossum | 2003-03-01 | 1 | -4/+37 |
|
|
* | In the process of adding all the extended slice support I attempted to | Michael W. Hudson | 2003-02-27 | 1 | -4/+4 |
|
|
* | Micro-optimizations. | Raymond Hettinger | 2003-02-26 | 1 | -4/+18 |
|
|
* | Addendum to #683658: | Just van Rossum | 2003-02-25 | 1 | -2/+2 |
|
|
* | Remove unused variables. | Walter Dörwald | 2003-02-24 | 1 | -9/+0 |
|
|
* | Fix SF bug #690435, apply fails to check if warning raises exception | Neal Norwitz | 2003-02-23 | 1 | -3/+4 |
|
|
* | After the removal of SET_LINENO, PyCode_Addr2Line has always been | Michael W. Hudson | 2003-02-22 | 1 | -3/+0 |
|
|