summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Use fast_next_opcode shortcut for forward jump opcodes (it's safe andNeil Schemenauer2003-06-011-5/+5
* SF bug #733667: kwargs handled incorrectlyRaymond Hettinger2003-05-311-1/+1
* Don't use fast_next_opcode for JUMP_* opcodes. This fixes the problemNeil Schemenauer2003-05-301-6/+6
* Added functions CFObj_New and CFObj_Convert, general functions to convertJack Jansen2003-05-271-0/+3
* SF bug #644345, Poor error message for augmented assignNeal Norwitz2003-05-221-2/+2
* Use macro to get length of list.Jeremy Hylton2003-05-221-8/+2
* Remove comment with very long lines that explained what the code usedJeremy Hylton2003-05-221-3/+3
* Fix for SF [ 734869 ] Lambda functions in list comprehensionsJeremy Hylton2003-05-212-14/+24
* cmp_type(): The grammar stopped allowing '=' as a comparison operatorTim Peters2003-05-121-3/+2
* Patch #734231: Update RiscOS support. In particular, correctMartin v. Löwis2003-05-101-1/+1
* Patch #612627: Add encoding attribute to file objects, and determineMartin v. Löwis2003-05-101-0/+43
* Patch #708604: Check more function results. Will backport to 2.2.Martin v. Löwis2003-05-031-7/+37
* Patch #684981: Add cleanup capability for argument parsers. Fixes 501716.Martin v. Löwis2003-05-031-28/+90
* Patch #708495: Port more stuff to OpenVMS.Martin v. Löwis2003-05-032-0/+47
* Patch #729300: Disable error message if Python is not built for threads.Martin v. Löwis2003-05-011-1/+1
* Use Tim's suggestion to fixMichael W. Hudson2003-04-291-1/+1
* Armin Rigo's fix & test forMichael W. Hudson2003-04-291-9/+10
* Revert the previous enhancement to the bytecode optimizer.Raymond Hettinger2003-04-242-86/+9
* some more error-message enhancementsAlex Martelli2003-04-231-10/+10
* complete and clarify some error messages for range()Alex Martelli2003-04-231-5/+5
* PyGILState cleanup was too early - destructors called via module cleanup may ...Mark Hammond2003-04-221-5/+5
* fixed a potential refcount bug (thanks Raymond!).Alex Martelli2003-04-221-1/+1
* Adding new built-in function sum, with docs and tests.Alex Martelli2003-04-221-0/+61
* Improved the bytecode optimizer.Raymond Hettinger2003-04-222-9/+86
* handle_system_exit(): This leaked the current exception info, inTim Peters2003-04-191-4/+16
* New PyGILState_ API - implements pep 311, from patch 684256.Mark Hammond2003-04-195-81/+265
* 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