summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Oops. Really fix the indentation problem this time.Jeremy Hylton2003-09-101-13/+13
* Fix inconsistent mix of tabs and spaces that caused test to fail.Jeremy Hylton2003-09-101-5/+4
* display link to module docs when it looks like the object module is a coreSkip Montanaro2003-09-101-1/+47
* Python Bug 775061Kurt B. Kaiser2003-09-103-97/+2
* Add an example to address a common question of how to split iterators.Raymond Hettinger2003-09-081-4/+30
* Set the warnings stacklevel to two.Raymond Hettinger2003-09-081-2/+2
* SF bug 801631: file.truncate fault on windows.Tim Peters2003-09-071-0/+28
* **kwds arg was missing from __init__ for Dict{Reader,Writer} classes.Skip Montanaro2003-09-062-4/+11
* SF bug #801342: Bug (documentation or real, your choice) in random.sample.Raymond Hettinger2003-09-062-0/+14
* SF bug #800796: Difference between hash() and __hash__()Raymond Hettinger2003-09-051-0/+5
* Patch #798145: Return correct information from nl_langinfo(RADIXCHAR).Martin v. Löwis2003-09-041-0/+34
* Catch locale.error as well. Fixes #788378. Will backport to 2.3.Martin v. Löwis2003-09-031-1/+1
* test_get_param_with_semis_in_quotes(): Test case for SF bug #794466.Barry Warsaw2003-09-031-0/+7
* A fix for parsing parameters when there are semicolons inside theBarry Warsaw2003-09-031-1/+18
* use the long names for re compilation options; this makes it easier toFred Drake2003-09-021-1/+1
* Modernize code a bit: use isinstance instead of type(); return True/FalseAndrew M. Kuchling2003-09-021-4/+7
* [Patch #759208] Fix has_key emulation to not raise KeyErrorAndrew M. Kuchling2003-09-021-1/+3
* Only apply case-insensitivity test on appropriate platforms.' test_filecmp.pyRaymond Hettinger2003-09-021-2/+6
* SF bug #453515: filecmp.dircmp case sensitivity bugRaymond Hettinger2003-09-022-8/+12
* SF 798269: bug fix for doctest (sf bug id: 798254Raymond Hettinger2003-09-021-2/+3
* SF patch #736962: Port tests to unittest (Part 2)Raymond Hettinger2003-09-021-12/+90
* SF patch #790443: add SafeConfigParser to __all__Raymond Hettinger2003-09-011-1/+1
* SF bug #785222: zlib monotonic testRaymond Hettinger2003-08-311-11/+0
* SF patch #736962: Port tests to unittestRaymond Hettinger2003-08-305-33/+145
* SF bug 797650: Infinite loop in textwrap.pyRaymond Hettinger2003-08-302-1/+11
* Eliminate unnecessary eval() in testsRaymond Hettinger2003-08-301-19/+18
* SF bug #793826: using itertools.izip to mutate tuplesRaymond Hettinger2003-08-291-1/+32
* Rework previous fix slightly; the &0x20 test seems useless, and the isprint()...Andrew M. Kuchling2003-08-291-4/+2
* Add tests for meta- bit setAndrew M. Kuchling2003-08-291-1/+4
* [Bug #790356] unctrl() doesn't work for full printable charset. Fix by Dave ...Andrew M. Kuchling2003-08-291-0/+2
* Add simple unit test for ascii.unctrl() functionAndrew M. Kuchling2003-08-291-0/+13
* [Bug #776542] open_https() generates a bad Authorization header because it ca...Andrew M. Kuchling2003-08-291-1/+1
* Make sure parentheses are escaped when used in the format string.Brett Cannon2003-08-292-1/+10
* Support DBEnv.set_shm_key() to allow multi-threaded multi-processGregory P. Smith2003-08-281-0/+2
* Fix SF bug [ 788011 ] compiler.compileFile fails on csv.pyJeremy Hylton2003-08-281-1/+6
* Fix typo in docstring: The switch is '-x', not '-s'.Thomas Heller2003-08-271-1/+1
* Remove a typo. (Or is this some markup I don't understand? ;-)Thomas Heller2003-08-271-1/+1
* SF bug #795506: Wrong handling of string format code for float values.Raymond Hettinger2003-08-271-0/+1
* test_largefile can leave its temp file open if one of many tests fail. OnJason Tishler2003-08-261-73/+81
* Bump the version number for the standalone mimelib package.Barry Warsaw2003-08-191-1/+1
* test_rfc2231_no_language_or_charset_in_filename(),Barry Warsaw2003-08-191-0/+37
* get_param(): Update the docstring to explain how CHARSET and LANGUAGEBarry Warsaw2003-08-191-7/+12
* decode_rfc2231(): We need to urllib.unquote() the value even if theBarry Warsaw2003-08-191-1/+1
* Improvements to set.py:Raymond Hettinger2003-08-172-49/+190
* Keep doctests in sync with the docs.Raymond Hettinger2003-08-161-5/+5
* Make sets.py compatible with Py2.2Raymond Hettinger2003-08-151-1/+19
* Make a copy of L before appending, so the global L remainsWalter Dörwald2003-08-151-4/+4
* Fix forMichael W. Hudson2003-08-151-0/+31
* IDLE didn't start correctly when Python was installed in "Program Files"Kurt B. Kaiser2003-08-142-2/+19
* [Patch #739124] Add use_default_colors() to curses moduleAndrew M. Kuchling2003-08-131-0/+3