summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* backport bug [ 1262320 ] minidom.py alternate newl support is brokenGeorg Brandl2005-08-251-4/+11
|
* backport bug [ 1262320 ] minidom.py alternate newl support is brokenGeorg Brandl2005-08-251-6/+6
|
* Backport fixes for bugs #1191043 and #1215928.Georg Brandl2005-08-251-1/+17
|
* Make IDNA return an empty string when the input is empty. Fixes #1163178.Martin v. Löwis2005-08-252-0/+12
|
* Backport bug #735248: fix urllib2.parse_http_list().Georg Brandl2005-08-242-39/+44
|
* Backport bug #1016563: Bug in urllib2 proxy authGeorg Brandl2005-08-241-1/+1
|
* Patch #1167716: Support Unicode filenames in mkpath. Fixes #1121494.Martin v. Löwis2005-08-241-1/+1
|
* Return complete lines from codec stream readersMartin v. Löwis2005-08-241-3/+17
| | | | | even if there is an exception in later lines, resulting in correct line numbers for decoding errors in source code. Fixes #1178484.
* backport bug [ 1192315 ] 'clear -1' in pdbGeorg Brandl2005-08-241-1/+4
|
* backport bug [ 728515 ] mmap's resize method resizes the file in win32 but ↵Georg Brandl2005-08-241-0/+8
| | | | not unix
* Revert previous checkin.Martin v. Löwis2005-08-241-7/+20
|
* Patch #1262036: Make tarfile name absolute. Fixes #1257255.Martin v. Löwis2005-08-241-20/+7
|
* Backport 1.74Raymond Hettinger2005-08-241-7/+16
|
* - Mac line endings were incorrect when pasting code from some browsersKurt B. Kaiser2005-08-232-0/+10
| | | | | | | when using X11 and the Fink distribution. Python Bug 1263656. Modified Files: Tag: release24-maint NEWS.txt ScriptBinding.py
* add note about "markupbase" not being intended for direct useFred Drake2005-08-231-1/+7
| | | | (closes SF bug #736659, patch #901369; backport of Lib/markupbase.py 1.11)
* backport bug [ 1266296 ] Mistakes in decimal.Context.subtract documentationGeorg Brandl2005-08-221-1/+1
|
* backport bug #1266283: add lexists to os.path.__all__Georg Brandl2005-08-224-11/+11
|
* SF bug #1242657: list(obj) can swallow KeyboardInterruptRaymond Hettinger2005-08-211-0/+9
| | | | | | Fix over-aggressive PyErr_Clear(). The same code fragment appears in various guises in list.extend(), map(), filter(), zip(), and internally in PySequence_Tuple().
* Fix for SF bug # 900092, hotshot.stats.load assertion failure. This patchBarry Warsaw2005-08-151-0/+1
| | | | | | | restores the tracing of a 'return' event for exceptions that cause a function to exit. Also, update the unit test. I will port to Python 2.5.
* Complete backport of #1172785 fix.Georg Brandl2005-08-132-0/+4
|
* Teach set modules to correctly compute s-=s and s^=s as the empty set.Raymond Hettinger2005-08-133-0/+29
|
* * SF bug #1257731: Fix logic in set.__contains__(), set.remove(),Raymond Hettinger2005-08-121-0/+13
| | | | | | | | and set.discard for handling keys that both inherite from set and define their own __hash__() function. * Fixed O(n) performance issue with set.pop() which should have been an O(1) process.
* Patch #827386: Support absolute source paths in msvccompiler.py.Martin v. Löwis2005-08-071-0/+2
|
* backport patch [ 1252706 ] poplib list() docstring fix (and docs too)Georg Brandl2005-08-051-1/+1
|
* add support for svn: and svn+ssh: URL schemes to urlparseFred Drake2005-07-292-1/+7
| | | | (backported from trunk urlparse.py 1.48, test_urlparse.py 1.15)
* (Backport)Guido van Rossum2005-07-261-6/+0
| | | | | | Fix a problem in Tkinter introduced by SF patch #869468 (checked in as 1.179): delete bogus __hasattr__ and __delattr__ methods on class Tk that were breaking Tkdnd.
* That was one too much.Georg Brandl2005-07-221-1/+1
|
* Fix all wrong instances of "it's".Georg Brandl2005-07-2211-16/+16
|
* [ 1243081 ] repair typosGeorg Brandl2005-07-223-3/+3
|
* Backport checkin:Walter Dörwald2005-07-202-6/+25
| | | | | | Make attributes and local variables in the StreamReader str objects instead of unicode objects, so that codecs that do a str->str decoding won't promote the result to unicode. This fixes SF bug #1241507.
* backport bug [ 957505 ] SocketServer module documentation misleadingGeorg Brandl2005-07-181-2/+2
|
* backport Bug #1015140: disambiguated the term "article id" in nntplib docs andGeorg Brandl2005-07-171-2/+2
| | | | docstrings to either "article number" or "message id".
* backport bug #1177468: don't cache /dev/urandom file descriptor in os.urandomGeorg Brandl2005-07-041-8/+4
|
* backport doctest for weakref examplesGeorg Brandl2005-07-021-0/+86
|
* backport patch [ 1231538 ] Typo fix in compiler/transformer.py (WalkerEror)Georg Brandl2005-07-021-11/+11
|
* backport bug [ 839151 ] attempt to access sys.argv when it doesn't existGeorg Brandl2005-06-261-1/+5
|
* backport bug [ 1172785 ] doctest.script_from_examples() result sometimes ↵Georg Brandl2005-06-261-1/+2
| | | | un-exec-able
* backport bug [ 1155638 ] self.length shield exception in httplibGeorg Brandl2005-06-261-0/+1
|
* Backport: Prevent creating a HTML link to file://?/Georg Brandl2005-06-261-2/+5
|
* backport bug [ 1100201 ] Cross-site scripting on BaseHTTPServerGeorg Brandl2005-06-261-1/+4
|
* SF bug #1224621: tokenize module does not detect inconsistent dedentsRaymond Hettinger2005-06-212-1/+22
|
* SF patch #1200018: Restore GC support to set objectsRaymond Hettinger2005-06-191-0/+10
| | | | | Reverts 1.26 and 1.27. And adds cycle testing.
* backport Lib/test/test_class.py revision 1.13:Michael W. Hudson2005-06-161-1/+1
| | | | | Don't use 'is not' to compare strings. (spotted by reading pypy-svn :)
* [Patch #1005892 from Alexandr Zamaraev] Fix two errors in the curses test suiteAndrew M. Kuchling2005-06-151-1/+2
|
* SF bug #1219361 Fix typoRaymond Hettinger2005-06-131-1/+1
|
* Backport 1.37 namespace cleanup.Raymond Hettinger2005-06-121-2/+2
|
* [Bug #1074261, patch #1074381] Restrict the size of chunks read from the ↵Andrew M. Kuchling2005-06-091-2/+3
| | | | file in order to avoid overflow or huge memory consumption. Patch by Mark Eichin
* [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-082-5/+5
|