summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* Start of a test suite for the "os" module -- this only tests the temporaryFred Drake2001-07-171-0/+60
* Use the "st" versions of the "ast" calls in the parser module -- there isFred Drake2001-07-171-2/+2
* Added tests for the new yield support in the parser module.Fred Drake2001-07-171-1/+132
* This has never worked on Windows. Now it does. If it breaks on Unix now,Tim Peters2001-07-161-1/+7
* test_basic(): Add a test for "person@dom.ain (User J. Person)" whichBarry Warsaw2001-07-161-0/+12
* Add a unit test for sgmllib (needs work, but has already caught problems).Fred Drake2001-07-161-0/+243
* Give more useful information about a failing PyUnit-style test.Fred Drake2001-07-161-2/+11
* Remove a duplicate test.Fred Drake2001-07-161-1/+0
* Part way to allowing "from __future__ import generators" to communicateTim Peters2001-07-161-0/+2
* Should raise TestSkipped, not ImportError, when deciding to skip theGuido van Rossum2001-07-131-2/+2
* Having fun on my own time: quicker flat_conjoin; Knights Tour solverTim Peters2001-07-131-113/+123
* Remove the last remnants of the hacks to worm around leaks.Tim Peters2001-07-121-12/+3
* Repair flawed example.Tim Peters2001-07-121-1/+1
* Remove now-unnecessary "from __future__ import nested_scopes" stmts.Tim Peters2001-07-122-10/+6
* Remove reference cycle breaking code. The GC now takes care of it.Neil Schemenauer2001-07-121-7/+1
* Test GC of frame objects.Neil Schemenauer2001-07-121-0/+11
* Make the test pass now that 10**-15 returns a float instead of raisingGuido van Rossum2001-07-121-3/+1
* SF patch #440170: Tests for fileinput module.Tim Peters2001-07-112-1/+159
* SF patch #440144: Tests and minor bugfix for uu module.Tim Peters2001-07-112-1/+124
* Ported to Windows:Guido van Rossum2001-07-101-5/+6
* A test suite for SocketServer.py that exposes the various bugs justGuido van Rossum2001-07-101-0/+161
* When reading a continuation line, make sure we still use the transformedFred Drake2001-07-061-0/+7
* Rip out tests for xrange() features no longer supported.Guido van Rossum2001-07-051-14/+0
* Added a non-recursive implementation of conjoin(), and a Knight's Tourunknown2001-07-041-2/+291
* reapplied darryl gallion's minimizing repeat fix. I'm still not 100%Fredrik Lundh2001-07-022-1/+3
* A clever union-find implementation from c.l.py, due to David Eppstein.Tim Peters2001-07-021-0/+77
* Derive an industrial-strength conjoin() via cross-recursion loop unrolling,Tim Peters2001-06-301-9/+83
* Added a simple but general backtracking generator (conjoin), and a coupleTim Peters2001-06-291-1/+162
* Another "if 0:" hack, this time to complain about otherwise invisibleTim Peters2001-06-281-0/+33
* This no longer leaks memory when run in an infinite loop. However,Tim Peters2001-06-271-81/+58
* Encode surrogates in UTF-8 even for a wide Py_UNICODE.Martin v. Löwis2001-06-271-2/+2
* gen_getattr: make the gi_running and gi_frame members discoverable (butTim Peters2001-06-261-2/+22
* Add a bunch of tests for extended dict.update() where the argument isBarry Warsaw2001-06-261-0/+70
* SF bug #436207: "if 0: yield x" is ignored.Tim Peters2001-06-261-7/+128
* Teach the types module about generators. Thanks to James Althoff on theTim Peters2001-06-251-0/+20
* Repair indentation in comment.Tim Peters2001-06-251-2/+9
* Added a "generate k-combinations of a list" example posted to c.l.py.Tim Peters2001-06-241-1/+49
* New tests to provoke SyntaxErrors unique to generators. Minor fiddlingTim Peters2001-06-241-6/+85
* Another variant of the 2-3-5 test, mixing generators with a LazyList class.Tim Peters2001-06-241-0/+37
* More tests.Tim Peters2001-06-241-1/+68
* Add a recursive Sieve of Eratosthenes prime generator. Not practical,Tim Peters2001-06-231-1/+39
* Add all the examples from PEP 255, and a few email examples.Tim Peters2001-06-231-2/+183
* New std test for generators, initially populated with doctests NeilS putTim Peters2001-06-231-0/+139
* Teach the UNPACK_SEQUENCE opcode how to tease an iterable object intoTim Peters2001-06-211-0/+53
* Add a bunch of sample strings to test soft line breaks of varying endBarry Warsaw2001-06-191-1/+28
* The test used int(time.time()) to get a random number, but this doesn't work ...Jack Jansen2001-06-191-1/+1
* Test by Martin v. Loewis for the new UTF-16 codec handling of BOMMarc-André Lemburg2001-06-191-0/+25
* A unittest-based test for the quopri module.Barry Warsaw2001-06-191-0/+112
* Added "i" and "l" to the list of std-mode struct codes that don't range-Tim Peters2001-06-181-1/+4
* SF bug 434186: 0x80000000/2 != 0x80000000>>1Tim Peters2001-06-181-0/+7