Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix bug #511786 (2.2.1 candidate): ensure that custom-supplied headers | Greg Ward | 2002-02-11 | 1 | -1/+1 |
| | | | | are preserved for redirected requests. | ||||
* | SF #515020, delete global variables which are used only for temporary | Neal Norwitz | 2002-02-11 | 1 | -1/+2 |
| | | | | values in for loops (dircase, prefix, sitedir). | ||||
* | SF #515005, change "1 + ''" (which pychecker warns about being invalid) | Neal Norwitz | 2002-02-11 | 1 | -2/+2 |
| | | | | into "raise Exception". | ||||
* | SF #515022 remove unused variable | Neal Norwitz | 2002-02-11 | 1 | -1/+0 |
| | |||||
* | SF #515009, delete global variable that was apparently used only | Neal Norwitz | 2002-02-11 | 1 | -0/+1 |
| | | | | in a for loop. | ||||
* | SF #515018, delete global variable that was apparently used only | Neal Norwitz | 2002-02-11 | 1 | -0/+1 |
| | | | | in a list comprehension. | ||||
* | SF #515026, delete global variable that was apparently used only | Neal Norwitz | 2002-02-11 | 1 | -0/+1 |
| | | | | in a for loop. | ||||
* | SF #515024 remove unused variable | Neal Norwitz | 2002-02-11 | 1 | -1/+0 |
| | |||||
* | SF #515021, print the refused list to the DEBUGSTREAM, so the parameter is used | Neal Norwitz | 2002-02-11 | 1 | -2/+2 |
| | | | | Note: There is a TBD (aka FIXME) for how best to handle the refused addresses | ||||
* | SF #515012, cleanup: remove unused variable | Neal Norwitz | 2002-02-11 | 1 | -1/+0 |
| | |||||
* | SF #515011, cleanup: remove "or 0" condition | Neal Norwitz | 2002-02-11 | 1 | -2/+1 |
| | |||||
* | SF #515006, remove unnecessary import | Neal Norwitz | 2002-02-11 | 1 | -1/+0 |
| | |||||
* | SF #515004 cleanup | Neal Norwitz | 2002-02-11 | 1 | -4/+2 |
| | | | | | - remove unnecessary imports - rename dum -> dummy | ||||
* | SF #515000, print result of f.tell() in test() instead of ignoring | Neal Norwitz | 2002-02-11 | 1 | -1/+1 |
| | |||||
* | Corrected import behaviour for codecs which live outside the encodings | Marc-André Lemburg | 2002-02-11 | 2 | -17/+12 |
| | | | | package. | ||||
* | on MacOSX/Darwin, use ranlib when building static libs. | Just van Rossum | 2002-02-11 | 1 | -1/+4 |
| | |||||
* | improvement to keybinding re-use check | Steven M. Gava | 2002-02-11 | 4 | -86/+80 |
| | |||||
* | base GetHighlight on GetThemeDict for better defaults | Steven M. Gava | 2002-02-11 | 2 | -20/+9 |
| | |||||
* | further work on config saving | Steven M. Gava | 2002-02-11 | 1 | -35/+0 |
| | |||||
* | further work on config saving | Steven M. Gava | 2002-02-11 | 4 | -76/+217 |
| | |||||
* | Add IANA character set aliases to the encodings alias dictionary | Marc-André Lemburg | 2002-02-10 | 2 | -106/+355 |
| | | | | | | | and make alias lookup lazy. Note that only those IANA character set aliases were added for which we actually have codecs in the encodings package. | ||||
* | Added regression test for start()/stop() returning bogus NULL. | Fred Drake | 2002-02-08 | 1 | -0/+10 |
| | |||||
* | Whitespace cleanup. | Guido van Rossum | 2002-02-08 | 1 | -3/+3 |
| | |||||
* | Fix typo | Neal Norwitz | 2002-02-08 | 1 | -1/+1 |
| | |||||
* | Python 10 was a success, commemorate it\! | Fred Drake | 2002-02-08 | 1 | -0/+28 |
| | |||||
* | Make it 1.5.2 compatible again. | Thomas Heller | 2002-02-08 | 1 | -4/+5 |
| | |||||
* | Fix to the UTF-8 encoder: it failed on 0-length input strings. | Marc-André Lemburg | 2002-02-07 | 2 | -24/+34 |
| | | | | | | | | | | | | | | Fix for the UTF-8 decoder: it will now accept isolated surrogates (previously it raised an exception which causes round-trips to fail). Added new tests for UTF-8 round-trip safety (we rely on UTF-8 for marshalling Unicode objects, so we better make sure it works for all Unicode code points, including isolated surrogates). Bumped the PYC magic in a non-standard way -- please review. This was needed because the old PYC format used illegal UTF-8 sequences for isolated high surrogates which now raise an exception. | ||||
* | Forgot to add the new emxccompiler.py from Andrew I. MacIntyre's | Marc-André Lemburg | 2002-02-06 | 1 | -0/+334 |
| | | | | | | distutils patch for OS/2. Here it is... | ||||
* | Fix for the UTF-8 memory allocation bug and the UTF-8 encoding | Marc-André Lemburg | 2002-02-06 | 1 | -12/+11 |
| | | | | bug related to lone high surrogates. | ||||
* | further work on config system and config saving | Steven M. Gava | 2002-02-05 | 5 | -102/+335 |
| | |||||
* | [Bug #220993; may also fix bug #479469] Fix flakiness when old | Andrew M. Kuchling | 2002-02-01 | 1 | -0/+7 |
| | | | | | | | | | installations are present, by always unlinking the destination file before copying to it. Without the unlink(), the copied file remains owned by its previous UID, causing the subsequent chmod() to fail. Bugfix candidate, though it may cause changes on platforms where file ownership behaves differently. | ||||
* | Wesley Chun's SF patch 511380: add CGIHTTPServer error supt for Win32 | Guido van Rossum | 2002-02-01 | 1 | -4/+18 |
| | | | | | | | This uses os.popen3 (if it exists) to ensure that errors from a non-Python CGI script are logged. Bugfix candidate. | ||||
* | package_dir must be converted from the distutils path conventions to | Thomas Heller | 2002-02-01 | 1 | -1/+5 |
| | | | | | | local conventions before being used by build_py. Fixes SF bug #509288, probably a candidate for 2.2.1 | ||||
* | improve user config dir handling | Steven M. Gava | 2002-02-01 | 1 | -13/+31 |
| | |||||
* | more work on configuration saving | Steven M. Gava | 2002-02-01 | 3 | -34/+57 |
| | |||||
* | Restrict the mode to the lowest four octal positions; higher positions | Andrew M. Kuchling | 2002-01-31 | 1 | -1/+1 |
| | | | | | | | | contain the type of the file (regular file, socket, link, &c.). This means that install_scripts will now print "changing mode of <file> to 775" instead of "... to 100775". 2.2 bugfix candidate, I suppose, though this isn't actually fixing a bug. | ||||
* | OS/2 patches by Andrew I MacIntyre for distutils. | Marc-André Lemburg | 2002-01-31 | 8 | -4/+108 |
| | | | | Closes patch #435381. | ||||
* | string.split() docstring described the interpretation of the maxsplit | Fred Drake | 2002-01-30 | 1 | -3/+3 |
| | | | | | argument incorrectly. This closes SF bug #505997. | ||||
* | Thanks to Detlef Lannert for pointing out a typo in the code that | Tim Peters | 2002-01-30 | 1 | -1/+1 |
| | | | | uses _DummyMutex on platforms without threads. | ||||
* | New TemporaryFile implementation for Windows: this doesn't need a | Tim Peters | 2002-01-30 | 1 | -1/+17 |
| | | | | | | | | | | | TemproraryFileWrapper wrapper anymore, and should be immune from the problem that a temp file inherited by a spawned process caused an attempt to close the temp file in the spawning process to blow up (the unlink in TemporaryFileWrapper.close() blew up with a "Permission denied" error because, despite that the temp file got closed in the spawning process, the spawned process still had it open by virtue of C-level file descriptor inheritance). In context, that bug took days to figure out <wink/sigh>. | ||||
* | This test left a new set of 3 junk files behind each time it was run. | Tim Peters | 2002-01-30 | 1 | -11/+18 |
| | |||||
* | Encode MSVC paths as mbcs. Fixes #509117. 2.2.1 candidate. | Martin v. Löwis | 2002-01-29 | 1 | -0/+4 |
| | |||||
* | further work on config saving | Steven M. Gava | 2002-01-29 | 2 | -17/+90 |
| | |||||
* | SF bug #509805 tempfile.gettempdir not threadsafe | Tim Peters | 2002-01-28 | 1 | -2/+28 |
| | | | | | | | | | | | | | | | This is an ancient race when multiple threads call gettempdir() (or anything relying on it) for the first time. Fixed x-platform via the Big Hammer of rearranging the code to serialize the first calls. Subsequent calls are as fast as before. Note that the Python test suite can't provoke this bug: it requires setting up multiple threads making the very first calls into tempfile, but the test suite uses tempfile several times before getting to test_threadedtempfile. Bugfix candidate. | ||||
* | Test case of a singleton multipart; i.e. a multipart/* with only one | Barry Warsaw | 2002-01-27 | 1 | -0/+8 |
| | | | | subpart. | ||||
* | test_multipart_one_part(): Idempotency test case for a multipart/* | Barry Warsaw | 2002-01-27 | 1 | -1/+5 |
| | | | | with only one subpart. | ||||
* | _parsebody(): When adding subparts to a multipart container, make sure | Barry Warsaw | 2002-01-27 | 1 | -2/+7 |
| | | | | | | that the first subpart added makes the payload a list object. Otherwise, a multipart/* with only one subpart will not have the proper structure. | ||||
* | further work on saving configs | Steven M. Gava | 2002-01-24 | 3 | -47/+165 |
| | |||||
* | dialog for getting a new config file section name | Steven M. Gava | 2002-01-24 | 1 | -0/+99 |
| | |||||
* | staying current with python idle fixes | Steven M. Gava | 2002-01-23 | 1 | -2/+2 |
| |