summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* * Migrate set() and frozenset() from the sandbox.Raymond Hettinger2003-11-161-0/+2
* Patch #804543: strdup saved locales. Backported to 2.3.Martin v. Löwis2003-11-131-1/+2
* Implement and apply PEP 322, reverse iterationRaymond Hettinger2003-11-061-0/+1
* Make undetected error on stack unwind a fatal error.Jeremy Hylton2003-11-051-4/+4
* Deleting cyclic object comparison.Armin Rigo2003-10-281-20/+36
* regressing the performance bugfix -- Guido wants the performance bug leftAlex Martelli2003-10-251-1/+1
* oh dear. Wrong manipulation. Committed a version of ceval.c from myArmin Rigo2003-10-251-28/+20
* Made function declaration a proper C prototypeArmin Rigo2003-10-252-21/+29
* Changed builtin_sum to use PyNumber_InPlaceAdd (same semantics, but fixesAlex Martelli2003-10-251-1/+1
* Use PyArg_UnpackTuple() where possible.Raymond Hettinger2003-10-251-1/+1
* Patch #828384: Don't discard nested exception in AddObject.Martin v. Löwis2003-10-241-2/+3
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-1/+1
* Patch #792869: Clarify error message for parameters declared global,Martin v. Löwis2003-10-181-4/+3
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-126-14/+14
* Fix SF bug [ 808594 ] leak on lambda with duplicate arguments error.Jeremy Hylton2003-09-221-15/+16
* Patch #805613: Fix usage of the PTH library.Martin v. Löwis2003-09-202-1/+7
* Improve the leak fix so that PyTuple_New is only called when needed.Raymond Hettinger2003-09-161-9/+11
* Correct check of PyUnicode_Resize() return value.Jeremy Hylton2003-09-161-1/+2
* Reflow long lines and reformat.Jeremy Hylton2003-09-161-13/+13
* Fix leak discovered in test_new by Michael Hudson.Raymond Hettinger2003-09-151-17/+14
* 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