summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* Patch #794826: Add __file__ in dynamically loaded modules for multipleMartin v. Löwis2003-09-041-2/+3
* Bug #794140: cygwin builds do not embedJason Tishler2003-09-042-2/+2
* Fix for SF bug [ 784075 ] Fatal Python error: unknown scopeJeremy Hylton2003-08-281-4/+12
* Fix a crash: when sq_item failed the code continued blindly and used theWalter Dörwald2003-08-181-3/+10
* Fix refcount leak in the UnicodeError constructor:Walter Dörwald2003-08-141-1/+1
* Make filter(bool, ...) as fast as filter(None, ...).Neil Schemenauer2003-08-141-1/+1
* Add a unicode prefix to the characters in the UnicodeEncodeError andWalter Dörwald2003-08-121-6/+6
* Enhance message for UnicodeEncodeError and UnicodeTranslateError.Walter Dörwald2003-08-121-5/+21
* Fix refcounting and cut & paste error (?) in last checkin.Michael W. Hudson2003-08-111-3/+1
* Move initialization of sys.std{in,out}.encoding to Py_Initialize.Martin v. Löwis2003-08-092-33/+51
* As discussed on python-dev, changed builtin.zip() to handle zero argumentsRaymond Hettinger2003-08-021-5/+3
* Patch 775605: Cygwin pthread_sigmask() workaround patchJason Tishler2003-07-221-1/+1
* Correct previous patch looking for warnings module: sys.modules, notMark Hammond2003-07-161-1/+1
* Fix [ 771097 ] frozen programs fail due to implicit import of "warnings".Mark Hammond2003-07-152-8/+40
* SF patch 763201: handling of SyntaxErrors in symbol table buildJeremy Hylton2003-07-151-33/+47
* Initialize thread_id to 0 in unthreaded build. Fixes #770247.Martin v. Löwis2003-07-131-0/+4
* - fix typoFred Drake2003-07-111-1/+1
* New function sys.getcheckinterval(), to complement setcheckinterval().Tim Peters2003-07-061-0/+12
* An Anonymous Coward on c.l.py posted a little program with bizarreTim Peters2003-07-041-23/+30
* Fix SF #762455, segfault when sys.stdout is changed in getattrNeal Norwitz2003-06-291-0/+6
* Add PyThreadState_SetAsyncExc(long, PyObject *).Guido van Rossum2003-06-282-1/+47
* Better error messageJeremy Hylton2003-06-211-1/+7
* Removed bytecode transformation for sequence packing/unpacking.Raymond Hettinger2003-06-201-28/+0
* Don't use the module object setattr when importing submodules. Instead,Neil Schemenauer2003-06-161-18/+38
* 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