summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* Maintain backwards compatibility with python < 2.3 by dynamicallyGregory P. Smith2003-09-201-18/+30
* SF patch 809915: Fix bogus address to hopefully always break.Tim Peters2003-09-201-1/+8
* test__locale (two underscores) can't pass on Windows: RADIXCHAR doesn'tTim Peters2003-09-201-0/+1
* Patch #707167: Pass dircache exceptions to the caller. Fixes #682813.Martin v. Löwis2003-09-202-9/+3
* Patch #808362: Fix typos.Martin v. Löwis2003-09-201-1/+1
* Patch #793559: Reset __starttext_tag. Fixes #709491. Backported to 2.3.Martin v. Löwis2003-09-201-1/+1
* Patch #805976: Add DOTBOX and UNDERLINE.Martin v. Löwis2003-09-201-0/+5
* SF patch #806246: use basestring where possibleRaymond Hettinger2003-09-173-3/+3
* Test __all__ for unittest.pyRaymond Hettinger2003-09-161-1/+2
* Explicitly define public symbols via __all__: see discussion with RaymondSteve Purcell2003-09-151-0/+10
* * Converted test to unittest format.Raymond Hettinger2003-09-131-85/+158
* The previous change works much faster (one lookup per key) whenRaymond Hettinger2003-09-131-0/+9
* SF bug #804115: bad argument handling(unittest.py)Raymond Hettinger2003-09-131-2/+2
* Simplify doctest of tee().Raymond Hettinger2003-09-131-6/+2
* Patch #793021: Implement htmllib.HTMLParser.reset. Fixes #711632.Martin v. Löwis2003-09-121-0/+3
* Patch #790000: Allow os.access to handle Unicode file name.Martin v. Löwis2003-09-121-0/+1
* SF #662923Raymond Hettinger2003-09-122-7/+28
* 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