summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* Improved test set for int() and long() string conversions.Guido van Rossum1998-06-301-0/+59
|
* Remove RCS and #! cruft at top.Guido van Rossum1998-06-261-4/+0
|
* With the recent change that makes numbers compare smaller than anything,Guido van Rossum1998-06-111-3/+3
| | | | the outcome of the test for max has changed.
* Now that test_MimeWriter is untabified, do the same here!Guido van Rossum1998-06-111-15/+15
|
* Changed runs of 8 spaces to tab -- to satisfy the tab nanny.Guido van Rossum1998-06-091-7/+7
|
* Untabified -- to satisfy the tab nanny.Guido van Rossum1998-06-091-44/+44
|
* Add Tim's worst case scenario.Guido van Rossum1998-05-261-6/+11
| | | | Revert to using whrandom so it will work with older versions of Python.
* Added some tests to make sure that long->int conversions nearGuido van Rossum1998-05-261-0/+12
| | | | sys.maxint and near -sys.maxint-1 work correctly.
* Change the last 4-space indent into a 1-tab indent.Guido van Rossum1998-05-221-1/+1
|
* Use random instead of whrandom.Guido van Rossum1998-05-202-12/+12
|
* Test that "import sys.imp" fails as it should.Guido van Rossum1998-05-191-1/+12
|
* Reduce memory requirements.Guido van Rossum1998-05-121-1/+4
|
* Add a few doc strings.Guido van Rossum1998-05-101-6/+31
|
* benchmark for list.sort()Guido van Rossum1998-05-101-0/+109
|
* Use hex() when outputting the various checksums so the test output is theGuido van Rossum1998-04-242-5/+5
| | | | same on 32 and 64 bit machines.
* New test sample -- "Nobody expects the Spanish Inquisition!"Guido van Rossum1998-04-231-0/+0
|
* Move unified findfile() into test_support.pyGuido van Rossum1998-04-235-50/+16
|
* Add test for MimeWriter moduleGuido van Rossum1998-04-232-0/+280
|
* Add writelines() method to Compare class.Guido van Rossum1998-04-231-0/+3
|
* AMK's latestGuido van Rossum1998-04-032-25/+100
|
* Track changes in tokenize.pyGuido van Rossum1998-04-031-30/+30
|
* Mass check-in after untabifying all files that need it.Guido van Rossum1998-03-2636-930/+930
|
* Add test for core dump -- make sure it doesn't come back!Guido van Rossum1998-02-251-0/+5
|
* Adding output of test_xmllib.pyGuido van Rossum1998-02-131-0/+1
|
* Make this test work when imported from the interpreter instead of runGuido van Rossum1998-01-291-1/+6
| | | | from regrtest.py (it still works there too, of course).
* New version of xmllib from Sjoerd.Guido van Rossum1998-01-291-0/+25
| | | | | | | | | | | | | The main incompatibility is that the error reporting method is now called as parser.syntax_error(msg) instead of parser.syntax_error(lineno, msg) This new version also has some code to deal with the <?xml?> and <!DOCTYPE> tags at the start of an XML document. The documentation has been updated, and a small test module has been created.
* Added tests for qualified sub and splitGuido van Rossum1998-01-141-0/+15
|
* Add tests for re.L(OCALE).Guido van Rossum1997-12-301-1/+7
|
* Make this test succeed even when using "import test.test_zlib".Guido van Rossum1997-12-181-2/+5
|
* Move %x test to nonstandard section because it appears to be locale specific.Guido van Rossum1997-12-151-2/+3
|
* Believe it or not, some people have an empty group database.Guido van Rossum1997-12-151-7/+10
| | | | Prevent the test from failing there.
* Use long() instead of int() to compare mktime(localtime(t) with t...Guido van Rossum1997-12-081-1/+1
|
* New re version from AMKGuido van Rossum1997-12-082-19/+108
|
* Support for netbsd1 and freebsd3, after suggestions by Anders AndersenGuido van Rossum1997-12-021-2/+7
| | | | and Jacques Vidrine.
* Added strop.split tests when sep is None.Barry Warsaw1997-12-021-0/+6
|
* Added tests of strop.replace()Barry Warsaw1997-11-291-0/+9
|
* Use fuzzy comparison from test_support to compare outcome ofGuido van Rossum1997-11-241-1/+4
| | | | pow(x,y,z) to pow(x,y)%z.
* os2 patch by Jeff RushGuido van Rossum1997-11-222-4/+3
|
* Separate out a function pystones(loops=LOOPS) which runs the benchmarkGuido van Rossum1997-11-061-8/+12
| | | | | and returns a (benchtime, stones) tuple. The main() function now calls this and prints the report. Fred Drake's code.
* Add __init__.py to test package.Guido van Rossum1997-11-061-0/+1
|
* Add empty __init__.py files to the test packages so the new policyGuido van Rossum1997-10-311-1/+4
| | | | will recognize them.
* Tests for tokenize.py (Ka-Ping Yee)Guido van Rossum1997-10-273-0/+775
|
* Catch KeyboardInterrupt separately and propagate it, instead ofGuido van Rossum1997-10-201-1/+4
| | | | | | reporting a "crash". Use sys.exc_info() instead of sys.exc_type and sys.exc_value.
* Added separate tests for {}.get().Guido van Rossum1997-10-201-0/+3
|
* Added tests of dict.get()Barry Warsaw1997-10-201-0/+6
|
* Change test for re.sub() involving g<...> to use a multi-characterGuido van Rossum1997-10-081-1/+1
| | | | | identifier. The previous re.py had a bug that wouldn't show up with single-char identifier...
* Use `...` around binary strings.Guido van Rossum1997-10-071-1/+1
|
* Fix path search for test data file so it works under more circumstances.Guido van Rossum1997-10-011-1/+6
|
* There was actually a test that ensured that raising an exception AGuido van Rossum1997-10-011-3/+2
| | | | | | | with an instance of a derived class B would really raise an A, not a B. Since Barry fixed this anomalous behaviour, I though I might as well fix the test! (Hmm, Barry, did you not run the tests or did you miss that test_opcodes failed?)
* Fixed test for socket.error to work when it's a class exception.Guido van Rossum1997-10-011-1/+2
|