summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Move the sha tests to PyUnit.Fred Drake2001-05-222-22/+20
* Convert binhex regression test to PyUnit. We could use a better testFred Drake2001-05-221-40/+38
* Convert copy_reg test to PyUnit.Fred Drake2001-05-221-29/+19
* Remove unused import.Fred Drake2001-05-221-1/+0
* Simple conversion to PyUnit -- this test really needs more work!Fred Drake2001-05-221-9/+14
* Convert dospath test suite to PyUnit, adding a couple more cases forFred Drake2001-05-221-46/+55
* Re-write the rfc822 tests to use PyUnit.Fred Drake2001-05-221-138/+162
* Per discussion with Barry, make the default value for both get() andFred Drake2001-05-221-5/+4
* Implementing an idea from Guido on the checkins list:Tim Peters2001-05-222-24/+25
* Convert time module tests to PyUnit.Fred Drake2001-05-221-37/+49
* Migrate the strop test to PyUnit.Fred Drake2001-05-222-84/+118
* create_message(): When os.link() doesn't exist, make a copy of the msgTim Peters2001-05-221-1/+6
* Application of patch #401842 by Denis S. Otkidach to supportBarry Warsaw2001-05-221-9/+11
* Add tests for the new .get() and .setdefault() methods of rfc822.MessageFred Drake2001-05-221-1/+19
* Added .get() and .setdefault() support to rfc822.Message.Fred Drake2001-05-221-0/+20
* New test adapted from the ancient Demo/threads/bug.py.Tim Peters2001-05-221-0/+52
* Remove all files of expected output that contain only the name of theFred Drake2001-05-2165-65/+0
* If the file containing expected output does not exist, assume that itFred Drake2001-05-211-1/+6
* Fix bug #418369: typo in bdist_rpmAndrew M. Kuchling2001-05-211-1/+1
* Re-write the mailbox test suite to use PyUnit. Cover a lot more groundFred Drake2001-05-212-22/+81
* parse_declaration(): be more lenient in what we accept. We nowGuido van Rossum2001-05-211-12/+7
* Update a comment.Fred Drake2001-05-181-2/+2
* Simple conversion to PyUnit.Fred Drake2001-05-181-11/+19
* Simple conversion to PyUnit.Fred Drake2001-05-181-23/+20
* Added test suite for the new HTMLParser module, originally from theFred Drake2001-05-182-0/+255
* A much improved HTML parser -- a replacement for sgmllib. The API isGuido van Rossum2001-05-181-0/+432
* Fixed botched indent in _init_mac() code. (It may never be executed,Guido van Rossum2001-05-171-1/+1
* Made distutils understand the MacPython Carbon runtime model. Distutils will ...Jack Jansen2001-05-172-0/+6
* Moved the encoding map building logic from the individual mappingMarc-André Lemburg2001-05-1654-159/+74
* Just changed "x,y" to "x, y" everywhere (i.e., inserted horizontal spaceTim Peters2001-05-151-37/+34
* Add quoted-printable codecGuido van Rossum2001-05-152-0/+59
* abspath(): Fix inconsistent indentation.Fred Drake2001-05-151-1/+1
* This patch changes the way the string .encode() method works slightlyMarc-André Lemburg2001-05-158-0/+434
* Add warnings to the strop module, for to those functions that reallyGuido van Rossum2001-05-151-0/+2
* Convert a couple of comments to docstrings -- PyUnit can use these whenFred Drake2001-05-141-2/+2
* pprint's workhorse _safe_repr() function took time quadratic in the # ofTim Peters2001-05-142-39/+44
* Convert the pprint test to use PyUnit.Fred Drake2001-05-141-35/+57
* SF bug[ #423781: pprint.isrecursive() broken.Tim Peters2001-05-143-21/+66
* A disgusting "fix" for the test___all__ failure under Windows.Tim Peters2001-05-131-0/+11
* Add support for Windows using "mbcs" as the default Unicode encoding when dea...Mark Hammond2001-05-134-13/+91
* Get rid of the superstitious "~" in dict hashing's "i = (~hash) & mask".Tim Peters2001-05-139-36/+52
* Fix one bare except: clause.Fred Drake2001-05-111-1/+1
* Remove a bare try/except completely -- it just did not make sense!Fred Drake2001-05-111-12/+12
* When guarding an import, only catch ImportError.Fred Drake2001-05-111-1/+1
* Clean up a bare except where we only expect to catch pcre.error.Fred Drake2001-05-111-1/+1
* Clean up bare except where only IOError makes sense.Fred Drake2001-05-111-1/+1
* Clean up bare except: when determining whether a file is seekable.Fred Drake2001-05-111-2/+2
* Opening a file for reading can raise IOError, so only catch that.Fred Drake2001-05-111-1/+1
* int() of a string is only expected to through ValueError, so do not useFred Drake2001-05-111-2/+2
* <socket>.getsockopt() and <socket>.setsockopt() can only raise socket.error,Fred Drake2001-05-111-1/+1