summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Fix bug #511786 (2.2.1 candidate): ensure that custom-supplied headersGreg Ward2002-02-111-1/+1
| | | | are preserved for redirected requests.
* SF #515020, delete global variables which are used only for temporaryNeal Norwitz2002-02-111-1/+2
| | | | values in for loops (dircase, prefix, sitedir).
* SF #515005, change "1 + ''" (which pychecker warns about being invalid)Neal Norwitz2002-02-111-2/+2
| | | | into "raise Exception".
* SF #515022 remove unused variableNeal Norwitz2002-02-111-1/+0
|
* SF #515009, delete global variable that was apparently used onlyNeal Norwitz2002-02-111-0/+1
| | | | in a for loop.
* SF #515018, delete global variable that was apparently used onlyNeal Norwitz2002-02-111-0/+1
| | | | in a list comprehension.
* SF #515026, delete global variable that was apparently used onlyNeal Norwitz2002-02-111-0/+1
| | | | in a for loop.
* SF #515024 remove unused variableNeal Norwitz2002-02-111-1/+0
|
* SF #515021, print the refused list to the DEBUGSTREAM, so the parameter is usedNeal Norwitz2002-02-111-2/+2
| | | | Note: There is a TBD (aka FIXME) for how best to handle the refused addresses
* SF #515012, cleanup: remove unused variableNeal Norwitz2002-02-111-1/+0
|
* SF #515011, cleanup: remove "or 0" conditionNeal Norwitz2002-02-111-2/+1
|
* SF #515006, remove unnecessary importNeal Norwitz2002-02-111-1/+0
|
* SF #515004 cleanupNeal Norwitz2002-02-111-4/+2
| | | | | - remove unnecessary imports - rename dum -> dummy
* SF #515000, print result of f.tell() in test() instead of ignoringNeal Norwitz2002-02-111-1/+1
|
* Corrected import behaviour for codecs which live outside the encodingsMarc-André Lemburg2002-02-112-17/+12
| | | | package.
* on MacOSX/Darwin, use ranlib when building static libs.Just van Rossum2002-02-111-1/+4
|
* improvement to keybinding re-use checkSteven M. Gava2002-02-114-86/+80
|
* base GetHighlight on GetThemeDict for better defaultsSteven M. Gava2002-02-112-20/+9
|
* further work on config savingSteven M. Gava2002-02-111-35/+0
|
* further work on config savingSteven M. Gava2002-02-114-76/+217
|
* Add IANA character set aliases to the encodings alias dictionaryMarc-André Lemburg2002-02-102-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 Drake2002-02-081-0/+10
|
* Whitespace cleanup.Guido van Rossum2002-02-081-3/+3
|
* Fix typoNeal Norwitz2002-02-081-1/+1
|
* Python 10 was a success, commemorate it\!Fred Drake2002-02-081-0/+28
|
* Make it 1.5.2 compatible again.Thomas Heller2002-02-081-4/+5
|
* Fix to the UTF-8 encoder: it failed on 0-length input strings.Marc-André Lemburg2002-02-072-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'sMarc-André Lemburg2002-02-061-0/+334
| | | | | | distutils patch for OS/2. Here it is...
* Fix for the UTF-8 memory allocation bug and the UTF-8 encodingMarc-André Lemburg2002-02-061-12/+11
| | | | bug related to lone high surrogates.
* further work on config system and config savingSteven M. Gava2002-02-055-102/+335
|
* [Bug #220993; may also fix bug #479469] Fix flakiness when oldAndrew M. Kuchling2002-02-011-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 Win32Guido van Rossum2002-02-011-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 toThomas Heller2002-02-011-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 handlingSteven M. Gava2002-02-011-13/+31
|
* more work on configuration savingSteven M. Gava2002-02-013-34/+57
|
* Restrict the mode to the lowest four octal positions; higher positionsAndrew M. Kuchling2002-01-311-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é Lemburg2002-01-318-4/+108
| | | | Closes patch #435381.
* string.split() docstring described the interpretation of the maxsplitFred Drake2002-01-301-3/+3
| | | | | argument incorrectly. This closes SF bug #505997.
* Thanks to Detlef Lannert for pointing out a typo in the code thatTim Peters2002-01-301-1/+1
| | | | uses _DummyMutex on platforms without threads.
* New TemporaryFile implementation for Windows: this doesn't need aTim Peters2002-01-301-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 Peters2002-01-301-11/+18
|
* Encode MSVC paths as mbcs. Fixes #509117. 2.2.1 candidate.Martin v. Löwis2002-01-291-0/+4
|
* further work on config savingSteven M. Gava2002-01-292-17/+90
|
* SF bug #509805 tempfile.gettempdir not threadsafeTim Peters2002-01-281-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 oneBarry Warsaw2002-01-271-0/+8
| | | | subpart.
* test_multipart_one_part(): Idempotency test case for a multipart/*Barry Warsaw2002-01-271-1/+5
| | | | with only one subpart.
* _parsebody(): When adding subparts to a multipart container, make sureBarry Warsaw2002-01-271-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 configsSteven M. Gava2002-01-243-47/+165
|
* dialog for getting a new config file section nameSteven M. Gava2002-01-241-0/+99
|
* staying current with python idle fixesSteven M. Gava2002-01-231-2/+2
|