summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* Patch #716969: Detect thread creation failure. Will backport to 2.2.Martin v. Löwis2003-04-192-9/+9
* Patch #711835: Remove unnecessary lock operations. Will backport to 2.2.Martin v. Löwis2003-04-181-8/+4
* Roll back changes to 'h' format code -- too much breaks. OtherGuido van Rossum2003-04-181-5/+5
* dded missing k and K format specifiers to Py_BuildValue and friends.Jack Jansen2003-04-171-0/+6
* Oops, 'k' is the new format code for un unchecked 32 bit quantity,Jack Jansen2003-04-171-2/+2
* Converted manually written code to the new K format specifier.Jack Jansen2003-04-171-2/+2
* _Py_PrintReferences(): Changed to print object address at start of eachTim Peters2003-04-171-2/+9
* SF # 595026: support for masks in getargs.c.Thomas Heller2003-04-171-27/+49
* - New C API PyGC_Collect(), same as calling gc.collect().Guido van Rossum2003-04-171-0/+8
* A missing piece of the PEP 269 patch: add PyParser_SetError(), aGuido van Rossum2003-04-171-0/+9
* Trimmed trailing whitespace.Tim Peters2003-04-171-10/+10
* Py_Finalize(): Reverted recent changes that tried to move theTim Peters2003-04-171-8/+11
* - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences()Guido van Rossum2003-04-152-13/+17
* Move the call to _Py_PrintReferences() a bit further down. ThisGuido van Rossum2003-04-151-7/+12
* Some errors from range() should be TypeError, not ValueError.Guido van Rossum2003-04-151-3/+3
* Extend SF patch #707257: Improve code generationRaymond Hettinger2003-04-151-8/+20
* Prompted by Tim's comment, when handle_range_longs() sees anGuido van Rossum2003-04-141-9/+9
* handle_range_longs(): refcount handling is very delicate here, andTim Peters2003-04-131-31/+50
* Patch by Chad Netzer (with significant change):Guido van Rossum2003-04-111-5/+190
* Move declaration of enc to scope where it is usedNeal Norwitz2003-04-101-2/+1
* PyErr_NormalizeException(): in the type==NULL test, we should simplyGuido van Rossum2003-04-101-3/+2
* - New function sys.call_tracing() allows pdb to debug codeGuido van Rossum2003-04-092-0/+37
* SF patch #701494: more apply removalsRaymond Hettinger2003-04-061-1/+4
* Rename LONG_LONG to PY_LONG_LONG. Fixes #710285.Martin v. Löwis2003-03-292-7/+7
* Factored out test for absolute jumps.Raymond Hettinger2003-03-281-2/+3
* SF patch #707257: Improve code generationRaymond Hettinger2003-03-261-2/+94
* symtable_cellvar_offsets(): This leaked references to little integersTim Peters2003-03-241-1/+5
* Improved new Py_TRACE_REFS gimmicks.Tim Peters2003-03-231-2/+16
* SF patch #708201, unchecked return value in import.c by Jason HarperNeal Norwitz2003-03-231-0/+2
* Include Python.h first which defines _XOPEN_SOURCENeal Norwitz2003-03-221-3/+3
* Fixed SF bug #663074. The codec system was using global staticGustavo Niemeyer2003-03-193-92/+71
* Eliminate data dependency in predict macro.Raymond Hettinger2003-03-161-2/+8
* Fix comment and whitespace.Raymond Hettinger2003-03-161-3/+4
* Introduced macros for a simple opcode prediction protocol.Raymond Hettinger2003-03-161-6/+35
* SF patch #701907: More use of fast_next_opcodeRaymond Hettinger2003-03-141-11/+11
* Declare all variables at the start of their scope.Fred Drake2003-03-051-1/+1
* Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize,Martin v. Löwis2003-03-052-0/+48
* Use Carbon.File for FSSpec and FSRef conversion, not macfs.Jack Jansen2003-03-021-4/+4
* Added implementation notes for [re]set_exc_info().Guido van Rossum2003-03-011-0/+61
* - New function sys.exc_clear() clears the current exception. This isGuido van Rossum2003-03-011-4/+37
* In the process of adding all the extended slice support I attempted toMichael W. Hudson2003-02-271-4/+4
* Micro-optimizations.Raymond Hettinger2003-02-261-4/+18
* Addendum to #683658:Just van Rossum2003-02-251-2/+2
* Remove unused variables.Walter Dörwald2003-02-241-9/+0
* Fix SF bug #690435, apply fails to check if warning raises exceptionNeal Norwitz2003-02-231-3/+4
* After the removal of SET_LINENO, PyCode_Addr2Line has always beenMichael W. Hudson2003-02-221-3/+0
* - PyEval_GetFrame() is now declared to return a PyFrameObject *Guido van Rossum2003-02-192-9/+9
* - sys.path[0] (the directory from which the script is loaded) is nowGuido van Rossum2003-02-191-2/+10
* Fix bug 683658 - PyErr_Warn may cause import deadlock.Mark Hammond2003-02-192-5/+15
* Remove PyArg_ParseTuple() for methods which take no args,Neal Norwitz2003-02-171-23/+13