summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* Make str/str8 comparisons return True/False for !=/==.Brett Cannon2007-10-226-187/+150
* Issue 1267, continued.Guido van Rossum2007-10-221-0/+17
* Patch 1267 by Christian Heimes.Guido van Rossum2007-10-191-0/+7
* Patch 1280, by Alexandre Vassalotti.Guido van Rossum2007-10-194-11/+15
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-1616-38/+42
* For PEP3137: Adds missing methods to the mutable PyBytes object (soonGregory P. Smith2007-10-162-10/+244
* Make it possible to run this test stand-alone.Guido van Rossum2007-10-151-0/+3
* remove hotshot profiler from Py3kFred Drake2007-10-111-132/+0
* Two changes that are definitely problem-free and avoid calling print()Guido van Rossum2007-10-102-6/+4
* Don't depend on str8.splitlines() in test_chunkcoding().Guido van Rossum2007-10-101-2/+8
* use a reliable hostGregory P. Smith2007-10-091-4/+1
* Patch #1049 by Thomas Lee.Guido van Rossum2007-10-091-5/+7
* Breaking ground for PEP 3137 implementation:Guido van Rossum2007-10-089-130/+20
* Patch # 1145 by Thomas Lee:Guido van Rossum2007-09-273-7/+10
* Merged revisions 58211-58220 via svnmerge fromThomas Wouters2007-09-201-0/+32
* Merged revisions 58203-58210 via svnmerge fromThomas Wouters2007-09-191-0/+9
* Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge fromThomas Wouters2007-09-19160-2642/+58688
* Fix for bug 1148: str/bytes issue in httplib's _safe_read().Guido van Rossum2007-09-121-1/+1
* Thomas Wouters pointed out that _Abstract.__new__ should use super().__new__()Guido van Rossum2007-09-111-0/+14
* Added __format__ method to datetime.datetime, datetime.date, and datetime.time.Eric Smith2007-09-111-0/+78
* Merged revisions 58053-58090 via svnmerge fromThomas Wouters2007-09-101-3/+6
* Bug # 1125 (my code).Guido van Rossum2007-09-101-4/+50
* merge this from trunk:Gregory P. Smith2007-09-091-9/+7
* email address updateGregory P. Smith2007-09-091-1/+1
* Merged revisions 57778-58052 via svnmerge fromThomas Wouters2007-09-085-30/+34
* Add REPORT_NDIFF option to o test that was hard to debug recently.Guido van Rossum2007-09-081-0/+1
* Forgot to run the tests after making the places and msg argument keyword-only.Jeffrey Yasskin2007-09-072-6/+6
* Check in some documentation tweaks for PEP 3141, add some tests, and implementJeffrey Yasskin2007-09-073-13/+4
* Add a test for fail*AlmostEqual, including the new support for complex numbers.Jeffrey Yasskin2007-09-071-1/+22
* Use an event variable to wait for the server to be ready, not time.sleep().Guido van Rossum2007-09-061-3/+5
* Fix doctest failure introduced by r57949.Guido van Rossum2007-09-051-1/+1
* Changed some ValueError's to KeyError and IndexError.Eric Smith2007-09-041-15/+16
* Fix segfault discovered by Ron Adam. Not checking for terminating right brac...Eric Smith2007-09-031-0/+2
* Patch #1076: Use wide API for registry functions.Martin v. Löwis2007-09-031-13/+17
* Fix refleaks in test_with caused by reusing the same exception instance over ...Collin Winter2007-09-011-2/+4
* Fix refleaks exposed by test_raise.Collin Winter2007-09-011-0/+24
* Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking...Eric Smith2007-09-012-5/+10
* Restore test_email for a1. It passes completely.Barry Warsaw2007-08-311-0/+13
* string.maketrans() now produces translation tables for bytes.translate() -- w...Georg Brandl2007-08-312-5/+5
* Revert 57722. Move error dialog APIs to msvcrt instead,Martin v. Löwis2007-08-311-2/+18
* Fix test_startfile and remove duplicated test.Thomas Heller2007-08-311-8/+0
* Force test_mailbox and test_old_mailbox into submission.Guido van Rossum2007-08-312-2/+4
* Changed signature of string.Formatter.get_field, per suggestion byEric Smith2007-08-311-0/+22
* Fixed test name.Eric Smith2007-08-311-1/+1
* Added test cases for string.Formatter subclassing.Eric Smith2007-08-312-8/+53
* Cut test_raise down to size.Collin Winter2007-08-311-278/+0
* Fix test_smtplib by munging asynchat some more.Thomas Wouters2007-08-311-2/+2
* Issue #1066: implement PEP 3109, 2/3 of PEP 3134.Collin Winter2007-08-319-20/+494
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-3011-114/+42
* Merged revisions 57772-57777 via svnmerge fromThomas Wouters2007-08-301-2/+3