summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* Now in find, rfind, index, and rindex, you can use None as defaults,Facundo Batista2007-11-161-0/+28
* add the certificate for the Python SVN repository for testing SSLBill Janssen2007-11-151-0/+31
* Accept Issac Morland's suggestion for __replace__ to allow multiple replacementsRaymond Hettinger2007-11-151-1/+1
* Add test for __fields__ being read-onlyRaymond Hettinger2007-11-141-0/+8
* Merge from py3k branch:Amaury Forgeot d'Arc2007-11-131-2/+47
* Add the test from issue 1704621 (the issue itself is already fixed here).Guido van Rossum2007-11-121-0/+7
* Issue 1416. Add getter, setter, deleter methods to properties that can beGuido van Rossum2007-11-101-0/+65
* Correct a comment about testing methods - nowadays mostGeorg Brandl2007-11-091-4/+3
* Add set.isdisjoint()Raymond Hettinger2007-11-081-2/+47
* Optimize dict.fromkeys() with dict inputs. Useful for resetting bag/muliset ...Raymond Hettinger2007-11-071-0/+4
* Fix marshal's incorrect handling of subclasses of builtin types (backport can...Raymond Hettinger2007-11-071-0/+11
* Fixes Issue 1385: The hmac module now computes the correct hmac when usingGregory P. Smith2007-11-061-5/+159
* Add a missing quotation mark.Brett Cannon2007-11-031-1/+1
* Fix for bug 1705170 - contextmanager swallowing StopIteration (2.5 backport c...Nick Coghlan2007-11-021-0/+17
* Removed non ASCII text from test as requested by Guido. Sorry :/Christian Heimes2007-11-011-20/+2
* Backport of import tests for bug http://bugs.python.org/issue1293 and bug htt...Christian Heimes2007-11-011-2/+43
* Enable platform-specific tweaks for FreeBSD 8 (exactly same to FreeBSD 7's yet)Hye-Shik Chang2007-10-283-2/+3
* Shorter name for namedtuple()Raymond Hettinger2007-10-231-17/+17
* Add phuang patch from Issue 708374 which adds offset parameter to mmap module.Travis E. Oliphant2007-10-231-0/+44
* Remove duplicate crasher.Georg Brandl2007-10-211-8/+0
* Add a crasher for the long-standing issue with closing a fileArmin Rigo2007-10-211-0/+14
* The constructor from tuple was way too permissive: it allowed badFacundo Batista2007-10-191-0/+27
* Issue #1580738. When HTTPConnection reads the whole stream with read(),Facundo Batista2007-10-181-2/+13
* Fix the overflow checking of list_repeat.Armin Rigo2007-10-171-0/+9
* More docs, error messages, and testsRaymond Hettinger2007-10-161-6/+11
* test_bigbits was not testing what it seemed to.Armin Rigo2007-10-151-4/+8
* Let the O/S supply a port if none of the default ports can be used.Neal Norwitz2007-10-141-4/+12
* Fix test of count.__repr__() to ignore the 'L' if the count is a longRaymond Hettinger2007-10-121-1/+4
* Accept Jim Jewett's api suggestion to use None instead of -1 to indicate unbo...Raymond Hettinger2007-10-101-1/+18
* Eliminate camelcase function nameRaymond Hettinger2007-10-081-12/+14
* Add comments to NamedTuple code.Raymond Hettinger2007-10-081-0/+5
* Ensure that this test will pass even if another test left an unwritable TESTFN.Neal Norwitz2007-10-061-5/+4
* Use the host the author likely meant in the first place. pop.gmail.com isGregory P. Smith2007-10-061-4/+1
* Add __asdict__() to NamedTuple and refine the docs.Raymond Hettinger2007-10-052-26/+66
* itertools.count() no longer limited to sys.maxint.Raymond Hettinger2007-10-041-1/+6
* Made the various is_* operations return booleans. This was discussedFacundo Batista2007-10-022-13/+2145
* Patch # 188 by Philip Jenvey.Guido van Rossum2007-09-221-0/+7
* Issue #1772851. Optimization of __hash__ to behave better for big bigFacundo Batista2007-09-191-0/+32
* Fix obvious typo in threaded test.Thomas Wouters2007-09-191-1/+1
* Issue #1772851. Alters long.__hash__ from being *almost* completelyFacundo Batista2007-09-191-0/+11
* Handle corner cased on 0-tuples and 1-tuples. Add verbose option so people c...Raymond Hettinger2007-09-181-0/+6
* The methods always return Decimal classes, even if they'reFacundo Batista2007-09-171-0/+15
* Sync-up named tuples with the latest version of the ASPN recipe.Raymond Hettinger2007-09-171-0/+7
* use binary mode when reading files for testAsyncore to make Windows happyBill Janssen2007-09-161-1/+1
* Add support for asyncore server-side SSL support. This requiresBill Janssen2007-09-162-105/+271
* Merged the decimal-branch (revisions 54886 to 58140). Decimal is nowFacundo Batista2007-09-13148-2335/+57695
* Bug #1153: repr.repr() now doesn't require set and dictionary itemsGeorg Brandl2007-09-121-0/+10
* root certificate for https://svn.python.org/, used in test_sslBill Janssen2007-09-121-0/+26
* Generators had their throw() method allowing string exceptions. That's aBrett Cannon2007-09-111-1/+1
* Always use the -E flag when spawning subprocesses in test_cmd_line (Issue 1056)Nick Coghlan2007-09-111-5/+2