summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Adapt output file to new Cookie JS output.Georg Brandl2005-06-271-4/+4
|
* Fix test cases for doctest.Georg Brandl2005-06-262-0/+4
|
* bug [ 839151 ] attempt to access sys.argv when it doesn't existGeorg Brandl2005-06-261-1/+5
|
* bug [ 1172785 ] doctest.script_from_examples() result sometimes un-exec-ableGeorg Brandl2005-06-261-1/+2
|
* bug [ 1155638 ] self.length shield exception in httplibGeorg Brandl2005-06-261-0/+1
|
* bug [ 1175848 ] poorly named variable in urllib2.pyGeorg Brandl2005-06-261-2/+2
|
* Prevent creating a HTML link to file://?/Georg Brandl2005-06-261-2/+5
|
* bug [ 1100201 ] Cross-site scripting on BaseHTTPServerGeorg Brandl2005-06-261-1/+4
|
* bug [ 1108948 ] Cookie.py produces invalid codeGeorg Brandl2005-06-261-2/+2
|
* SMTP.help() was returning a tuple instead of the promised text.Kurt B. Kaiser2005-06-261-1/+1
|
* SF bug #1224621: tokenize module does not detect inconsistent dedentsRaymond Hettinger2005-06-212-1/+22
|
* Remove dead codeKurt B. Kaiser2005-06-212-20/+8
| | | | | M IdleHistory.py M PyShell.py
* test_asynchat is no longer expected to produce output.Michael W. Hudson2005-06-202-4/+3
| | | | also, wait for threads to finish before proceeding.
* Apply the _is_special guard.Raymond Hettinger2005-06-201-12/+13
|
* <Enter> when cursor is on a previous command retrieves that command. InsteadKurt B. Kaiser2005-06-192-7/+32
| | | | | | | | | of replacing the input line, the previous command is now appended to the input line. Indentation is preserved, and undo is enabled. Patch 1196917 Jeff Shute Modified Files: NEWS.txt PyShell.py
* SF patch #1200018: Restore GC support to set objectsRaymond Hettinger2005-06-181-0/+10
| | | | | Reverts 1.26 and 1.27. And adds cycle testing.
* Add tests for posix O_SHLOCK & O_EXLOCK. Missed checking this in withSkip Montanaro2005-06-171-0/+31
| | | | posixmodule.c 2.335. Really should be considered part of patch #1103951.
* [Patch #1005892 from Alexandr Zamaraev] Fix two errors in the curses test suiteAndrew M. Kuchling2005-06-151-1/+2
|
* yet another cache to clear when leak hunting.Michael W. Hudson2005-06-141-0/+2
|
* Port test_long.py to unittest.Walter Dörwald2005-06-131-508/+451
|
* Fix bugMichael W. Hudson2005-06-131-0/+9
| | | | | | | | [ 1180997 ] lax error-checking in new-in-2.4 marshal stuff which I'd assigned to Martin, but actually turned out to be easy to fix. Also, a test.
* SF bug #1219361 Fix typoRaymond Hettinger2005-06-131-1/+1
|
* 1. Clarify "tab/space" Error Dialog and "Tab Width" Dialog associated withKurt B. Kaiser2005-06-123-9/+12
| | | | | | | | | | the Untabify command. 2. Corrected "tab/space" Error Dialog to show correct menu for Untabify. Patch 1196980 Jeff Shute M EditorWindow.py M NEWS.txt M ScriptBinding.py
* 1. Patch 1196895 Jeff Shute:Kurt B. Kaiser2005-06-125-4/+13
| | | | | | | | | | | | | | New files are colorized by default, and colorizing is removed when saving as non-Python files. Patch 1196895 Jeff Shute Closes Python Bugs 775012 and 800432, partial fix IDLEfork 763524 2. Update help.txt for left/right word delete M CREDITS.txt M ColorDelegator.py M EditorWindow.py M NEWS.txt M help.txt
* Patch #1171150: add a newline to py_compile error outputGeorg Brandl2005-06-101-1/+1
|
* Add untokenize() function to allow full round-trip tokenization.Raymond Hettinger2005-06-103-7/+125
| | | | | | Should significantly enhance the utility of the module by supporting the creation of tools that modify the token stream and writeback the modified result.
* [Patch #1002763] Allow long ints as terminator values; also, treat a ↵Andrew M. Kuchling2005-06-091-2/+2
| | | | terminator of 0 like the empty string or None
* Convert asynchat test to unittest; exercise the client using a numeric value ↵Andrew M. Kuchling2005-06-091-14/+46
| | | | as the terminator
* [Bug #1074261, patch #1074381] Restrict the size of chunks read from the ↵Andrew M. Kuchling2005-06-092-2/+26
| | | | file in order to avoid overflow or huge memory consumption. Patch by Mark Eichin
* Convert gzip test suite to use unittestAndrew M. Kuchling2005-06-091-74/+110
|
* fix import to work with either module name.Gregory P. Smith2005-06-091-1/+6
|
* [Patch #1171487, bug #1170331] Fix error in base64.b32decode when encoding a ↵Andrew M. Kuchling2005-06-082-4/+12
| | | | single null byte; test a null byte in all encodings to be sure it works
* fix broken (unexecuted) testAnthony Baxter2005-06-081-3/+3
|
* Tools/scripts/reindent.py _is_ your friendAnthony Baxter2005-06-085-119/+119
|
* [Bug #1172763] dumbdbm uses eval() on lines, so it chokes if there's an ↵Andrew M. Kuchling2005-06-072-0/+19
| | | | extra \r on the end of a line; fixed by stripping off trailing whitespace.
* Minor namespace clean-up.Raymond Hettinger2005-06-071-2/+2
|
* fix more Errors (not Failures) when run using BerkeleyDB <= 4.0Gregory P. Smith2005-06-061-4/+13
|
* fix Errors (not Failures) in test cases when running with BerkeleyDB<4.2Gregory P. Smith2005-06-061-32/+61
|
* make the tests that expect uncatchable exceptions from a callback testGregory P. Smith2005-06-061-19/+48
| | | | | | for them in a roundabout way (catching and parsing stderr) keeps test output clean.
* test case for pybsddb SF bug id 1215432Gregory P. Smith2005-06-061-0/+50
|
* test DB.associate using transactions. somewhat related to SF pybsddbGregory P. Smith2005-06-061-12/+46
| | | | bug #1215432
* Documentation clarified re. config socket listener protocolVinay Sajip2005-06-051-3/+3
|
* Fix missing assignments of marshal.load() values. Closes #1214662.Skip Montanaro2005-06-041-7/+7
|
* Bug #1196315: fix weakref.WeakValueDictionary constructor.Georg Brandl2005-06-041-1/+1
|
* pybsddb 4.3.2:Gregory P. Smith2005-06-042-9/+33
| | | | | | | | | | | * the has_key() method was not raising a DBError when a database error had occurred. [SF patch id 1212590] * added a wrapper for the DBEnv.set_lg_regionmax method [SF patch id 1212590] * DBKeyEmptyError now derives from KeyError just like DBNotFoundError. * internally everywhere DB_NOTFOUND was checked for has been updated to also check for DB_KEYEMPTY. This fixes the semantics of a couple operations on recno and queue databases to be more intuitive and results in less unexpected DBKeyEmptyError exceptions being raised.
* Whitespace normalization.Tim Peters2005-06-034-195/+195
|
* Bug #1194181: bz2.BZ2File didn't handle mode 'U' correctly.Georg Brandl2005-06-031-0/+10
|
* [ 1197218 ] test_locale fix on modern linuxAnthony Baxter2005-06-031-8/+10
| | | | | | | On more modern linuxes (and probably others) straight 'en_US' isn't a valid locale. Make the code try a couple of alternates. backport candidate
* This is my patch:Michael W. Hudson2005-06-031-1/+15
| | | | | | | | | [ 1180995 ] binary formats for marshalling floats Adds 2 new type codes for marshal (binary floats and binary complexes), a new marshal version (2), updates MAGIC and fiddles the de-serializing of code objects to be less likely to clobber the real reason for failing if it fails.
* Bug #1213894: os.path.realpath didn't resolve symlinks that were the firstGeorg Brandl2005-06-032-1/+21
| | | | component of the path.