| Commit message (Expand) | Author | Age | Files | Lines |
* | Shuffle premature decref; nuke unreachable code block. | Tim Peters | 2001-02-23 | 1 | -9/+3 |
|
|
* | Hide the ProgressBar before raising KeyboardInterrupt. Not doing so resulted ... | Jack Jansen | 2001-02-23 | 1 | -2/+8 |
|
|
* | Turn on the "multifinder aware" bit. This should always have been on, but was... | Jack Jansen | 2001-02-23 | 1 | -1/+1 |
|
|
* | Do not hide a failure to create a temporary file; if it fails the work | Fred Drake | 2001-02-23 | 1 | -5/+1 |
|
|
* | Minor adjustments, including markup corrections. | Fred Drake | 2001-02-23 | 1 | -5/+6 |
|
|
* | Fix extra backslash in example. | Fred Drake | 2001-02-23 | 1 | -4/+1 |
|
|
* | Another name. | Fred Drake | 2001-02-23 | 1 | -0/+1 |
|
|
* | Fix up the markup in some recently-added portions of the text. | Fred Drake | 2001-02-23 | 1 | -26/+27 |
|
|
* | Describe -s a little more generically. | Barry Warsaw | 2001-02-23 | 1 | -5/+6 |
|
|
* | symtable_update_free_vars(), symtable_undo_free(), | Barry Warsaw | 2001-02-23 | 1 | -3/+3 |
|
|
* | Fix for bug 133489: compiler leaks memory | Jeremy Hylton | 2001-02-23 | 2 | -5/+11 |
|
|
* | Py_Main(): When compiled by Insure (i.e. __INSURE__ is defined), call | Barry Warsaw | 2001-02-23 | 1 | -0/+14 |
|
|
* | _Py_ReleaseInternedStrings(): Private API function to decref and | Barry Warsaw | 2001-02-23 | 2 | -0/+12 |
|
|
* | Patch #103899: Don't compile modules configured in Setup. This seems much | Andrew M. Kuchling | 2001-02-23 | 1 | -0/+16 |
|
|
* | Patch #103937: Attempt to get the BSDDB autodetection right (or at least | Andrew M. Kuchling | 2001-02-23 | 1 | -10/+15 |
|
|
* | Checkin updated version of patch #103933 . As Thomas says, fixes the bugs #1... | Mark Hammond | 2001-02-23 | 1 | -2/+10 |
|
|
* | Patch 103928: Correct zlib freeze settings for Win32. | Tim Peters | 2001-02-23 | 1 | -2/+2 |
|
|
* | Work around the broken formatting of sys.ps1 prompts in running text. | Fred Drake | 2001-02-22 | 1 | -46/+48 |
|
|
* | cd to the html/ directory to generate the global module index so the links | Fred Drake | 2001-02-22 | 1 | -2/+3 |
|
|
* | The ACKS file is in the current directory when converted to HTML; this was | Fred Drake | 2001-02-22 | 1 | -1/+1 |
|
|
* | Remove entry for soundex module! | Fred Drake | 2001-02-22 | 1 | -1/+0 |
|
|
* | _PyObject_Dump(): If argument is NULL, print "NULL" instead of | Barry Warsaw | 2001-02-22 | 1 | -3/+7 |
|
|
* | In try_3way_to_rich_compare(), swap the call to default_3way_compare() | Guido van Rossum | 2001-02-22 | 1 | -2/+2 |
|
|
* | Sequence indexes are non-negative, not natural (0 is not a natural number). | Fred Drake | 2001-02-22 | 1 | -32/+32 |
|
|
* | Remove documentation for the soundex module; the module is no longer | Fred Drake | 2001-02-22 | 2 | -76/+32 |
|
|
* | asin micro-optimization suggested in email. | Tim Peters | 2001-02-22 | 1 | -2/+3 |
|
|
* | Windows: Remove soundex from pythoncore subproject. | Tim Peters | 2001-02-22 | 1 | -15/+0 |
|
|
* | Mention the removal of soundex.c | Andrew M. Kuchling | 2001-02-22 | 1 | -0/+2 |
|
|
* | Patch #103926: fix two warnings from Tru64's compiler | Andrew M. Kuchling | 2001-02-22 | 2 | -2/+4 |
|
|
* | Remove soundex module, as stated by GvR. | Andrew M. Kuchling | 2001-02-22 | 2 | -182/+0 |
|
|
* | Patch #103885: Add dynamic registration and lookup of DOM implementations. | Martin v. Löwis | 2001-02-22 | 4 | -0/+111 |
|
|
* | Fix previous checkin, hopelessly broken as it was; reported by Detlef Lannert. | Jeremy Hylton | 2001-02-22 | 1 | -7/+7 |
|
|
* | Add a line to "python -h" output about PYTHONCASEOK. | Tim Peters | 2001-02-22 | 1 | -0/+1 |
|
|
* | Rip out various module-enabling switches, made obsolete by setup.py | Andrew M. Kuchling | 2001-02-21 | 3 | -906/+343 |
|
|
* | Move the signal module back into Setup.config.in so it can be enabled | Andrew M. Kuchling | 2001-02-21 | 2 | -3/+3 |
|
|
* | replace exec with simple assignments | Jeremy Hylton | 2001-02-21 | 1 | -3/+7 |
|
|
* | Release a PYC resource after reading it. No need to keep it incore. | Jack Jansen | 2001-02-21 | 1 | -0/+2 |
|
|
* | Waste 2.0 has many more options for the undo label. | Jack Jansen | 2001-02-21 | 1 | -2/+6 |
|
|
* | Use re in stead of regex, so we get rid of the annoying warning during startup. | Jack Jansen | 2001-02-21 | 5 | -47/+54 |
|
|
* | The code to write timestamps couldn't handle negative times (and time | Jack Jansen | 2001-02-21 | 1 | -0/+2 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-02-21 | 4 | -5/+4 |
|
|
* | Bug #133297: cmath.asin is the same as cmath.asinh. | Tim Peters | 2001-02-21 | 1 | -8/+9 |
|
|
* | Patch #103544: always compile the dl and nis modules on Unix; let's see | Andrew M. Kuchling | 2001-02-21 | 1 | -2/+9 |
|
|
* | Add Donovan Baarda for fixing a tortuous zlibmodule bug (but aren't they all?) | Andrew M. Kuchling | 2001-02-21 | 1 | -0/+1 |
|
|
* | Add test case from bug #124981: zlib decompress of sync-flushed data | Andrew M. Kuchling | 2001-02-21 | 2 | -0/+27 |
|
|
* | Patch #103373 from Donovan Baarda: This patch: | Andrew M. Kuchling | 2001-02-21 | 1 | -194/+131 |
|
|
* | Patch #103854: raises an exception if a non-Attr node is passed to | Andrew M. Kuchling | 2001-02-21 | 2 | -0/+14 |
|
|
* | Added test for patch #103473: test an unquoted cookie value containing '=' | Andrew M. Kuchling | 2001-02-21 | 2 | -0/+7 |
|
|
* | (py-execute-region): This one's easy... kill the temporary file's | Barry Warsaw | 2001-02-20 | 1 | -2/+4 |
|
|
* | On OSX passing NULL to NewUniversalFilterProc() does not return NULL but a cr... | Jack Jansen | 2001-02-20 | 2 | -12/+20 |
|
|