| Commit message (Expand) | Author | Age | Files | Lines |
* | - Removed FutureWarnings related to hex/oct literals and conversions | Guido van Rossum | 2003-11-29 | 1 | -13/+1 |
|
|
* | Getting rid of all the code inside #ifdef macintosh too. | Jack Jansen | 2003-11-20 | 6 | -146/+2 |
|
|
* | Getting rid of code dependent on GUSI or the MetroWerks compiler. | Jack Jansen | 2003-11-19 | 2 | -12/+0 |
|
|
* | Getting rid of code conditional on TARGET_API_MAC_*. | Jack Jansen | 2003-11-19 | 1 | -37/+0 |
|
|
* | WITHOUT_FRAMEWORKS conditional code bites the dust: this was for | Jack Jansen | 2003-11-19 | 1 | -4/+0 |
|
|
* | Getting rid of support for the ancient Apple MPW compiler. | Jack Jansen | 2003-11-19 | 4 | -23/+0 |
|
|
* | MacOS9 support is gone. | Jack Jansen | 2003-11-19 | 1 | -113/+0 |
|
|
* | * Migrate set() and frozenset() from the sandbox. | Raymond Hettinger | 2003-11-16 | 1 | -0/+2 |
|
|
* | Patch #804543: strdup saved locales. Backported to 2.3. | Martin v. Löwis | 2003-11-13 | 1 | -1/+2 |
|
|
* | Implement and apply PEP 322, reverse iteration | Raymond Hettinger | 2003-11-06 | 1 | -0/+1 |
|
|
* | Make undetected error on stack unwind a fatal error. | Jeremy Hylton | 2003-11-05 | 1 | -4/+4 |
|
|
* | Deleting cyclic object comparison. | Armin Rigo | 2003-10-28 | 1 | -20/+36 |
|
|
* | regressing the performance bugfix -- Guido wants the performance bug left | Alex Martelli | 2003-10-25 | 1 | -1/+1 |
|
|
* | oh dear. Wrong manipulation. Committed a version of ceval.c from my | Armin Rigo | 2003-10-25 | 1 | -28/+20 |
|
|
* | Made function declaration a proper C prototype | Armin Rigo | 2003-10-25 | 2 | -21/+29 |
|
|
* | Changed builtin_sum to use PyNumber_InPlaceAdd (same semantics, but fixes | Alex Martelli | 2003-10-25 | 1 | -1/+1 |
|
|
* | Use PyArg_UnpackTuple() where possible. | Raymond Hettinger | 2003-10-25 | 1 | -1/+1 |
|
|
* | Patch #828384: Don't discard nested exception in AddObject. | Martin v. Löwis | 2003-10-24 | 1 | -2/+3 |
|
|
* | Fix a bunch of typos in documentation, docstrings and comments. | Walter Dörwald | 2003-10-20 | 1 | -1/+1 |
|
|
* | Patch #792869: Clarify error message for parameters declared global, | Martin v. Löwis | 2003-10-18 | 1 | -4/+3 |
|
|
* | Simplify and speedup uses of Py_BuildValue(): | Raymond Hettinger | 2003-10-12 | 6 | -14/+14 |
|
|
* | Fix SF bug [ 808594 ] leak on lambda with duplicate arguments error. | Jeremy Hylton | 2003-09-22 | 1 | -15/+16 |
|
|
* | Patch #805613: Fix usage of the PTH library. | Martin v. Löwis | 2003-09-20 | 2 | -1/+7 |
|
|
* | Improve the leak fix so that PyTuple_New is only called when needed. | Raymond Hettinger | 2003-09-16 | 1 | -9/+11 |
|
|
* | Correct check of PyUnicode_Resize() return value. | Jeremy Hylton | 2003-09-16 | 1 | -1/+2 |
|
|
* | Reflow long lines and reformat. | Jeremy Hylton | 2003-09-16 | 1 | -13/+13 |
|
|
* | Fix leak discovered in test_new by Michael Hudson. | Raymond Hettinger | 2003-09-15 | 1 | -17/+14 |
|
|
* | Patch #794826: Add __file__ in dynamically loaded modules for multiple | Martin v. Löwis | 2003-09-04 | 1 | -2/+3 |
|
|
* | Bug #794140: cygwin builds do not embed | Jason Tishler | 2003-09-04 | 2 | -2/+2 |
|
|
* | Fix for SF bug [ 784075 ] Fatal Python error: unknown scope | Jeremy Hylton | 2003-08-28 | 1 | -4/+12 |
|
|
* | Fix a crash: when sq_item failed the code continued blindly and used the | Walter Dörwald | 2003-08-18 | 1 | -3/+10 |
|
|
* | Fix refcount leak in the UnicodeError constructor: | Walter Dörwald | 2003-08-14 | 1 | -1/+1 |
|
|
* | Make filter(bool, ...) as fast as filter(None, ...). | Neil Schemenauer | 2003-08-14 | 1 | -1/+1 |
|
|
* | Add a unicode prefix to the characters in the UnicodeEncodeError and | Walter Dörwald | 2003-08-12 | 1 | -6/+6 |
|
|
* | Enhance message for UnicodeEncodeError and UnicodeTranslateError. | Walter Dörwald | 2003-08-12 | 1 | -5/+21 |
|
|
* | Fix refcounting and cut & paste error (?) in last checkin. | Michael W. Hudson | 2003-08-11 | 1 | -3/+1 |
|
|
* | Move initialization of sys.std{in,out}.encoding to Py_Initialize. | Martin v. Löwis | 2003-08-09 | 2 | -33/+51 |
|
|
* | As discussed on python-dev, changed builtin.zip() to handle zero arguments | Raymond Hettinger | 2003-08-02 | 1 | -5/+3 |
|
|
* | Patch 775605: Cygwin pthread_sigmask() workaround patch | Jason Tishler | 2003-07-22 | 1 | -1/+1 |
|
|
* | Correct previous patch looking for warnings module: sys.modules, not | Mark Hammond | 2003-07-16 | 1 | -1/+1 |
|
|
* | Fix [ 771097 ] frozen programs fail due to implicit import of "warnings". | Mark Hammond | 2003-07-15 | 2 | -8/+40 |
|
|
* | SF patch 763201: handling of SyntaxErrors in symbol table build | Jeremy Hylton | 2003-07-15 | 1 | -33/+47 |
|
|
* | Initialize thread_id to 0 in unthreaded build. Fixes #770247. | Martin v. Löwis | 2003-07-13 | 1 | -0/+4 |
|
|
* | - fix typo | Fred Drake | 2003-07-11 | 1 | -1/+1 |
|
|
* | New function sys.getcheckinterval(), to complement setcheckinterval(). | Tim Peters | 2003-07-06 | 1 | -0/+12 |
|
|
* | An Anonymous Coward on c.l.py posted a little program with bizarre | Tim Peters | 2003-07-04 | 1 | -23/+30 |
|
|
* | Fix SF #762455, segfault when sys.stdout is changed in getattr | Neal Norwitz | 2003-06-29 | 1 | -0/+6 |
|
|
* | Add PyThreadState_SetAsyncExc(long, PyObject *). | Guido van Rossum | 2003-06-28 | 2 | -1/+47 |
|
|
* | Better error message | Jeremy Hylton | 2003-06-21 | 1 | -1/+7 |
|
|
* | Removed bytecode transformation for sequence packing/unpacking. | Raymond Hettinger | 2003-06-20 | 1 | -28/+0 |
|
|