| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Remove tests which were migrated to test_re.py. There are still more tests | Skip Montanaro | 2003-04-25 | 1 | -262/+0 |
|
|
* | Skip testing inet_ntop() an inet_pton() if they aren't defined. | Guido van Rossum | 2003-04-25 | 1 | -0/+8 |
|
|
* | Fix the tests on Windows, by writing the test data file in binary | Guido van Rossum | 2003-04-25 | 1 | -1/+1 |
|
|
* | some sniffer tests | Skip Montanaro | 2003-04-25 | 1 | -0/+34 |
|
|
* | more tests from test_sre | Skip Montanaro | 2003-04-25 | 1 | -2/+44 |
|
|
* | New version from Vinaj, should solve the threading problems (hopefully). | Guido van Rossum | 2003-04-25 | 2 | -7/+18 |
|
|
* | copy a few tests from test_sre | Skip Montanaro | 2003-04-25 | 1 | -0/+15 |
|
|
* | Port test_bool.py to PyUnit. From SF patch #662807. | Walter Dörwald | 2003-04-25 | 1 | -253/+328 |
|
|
* | Complete rewrite of module. Only has tests using temporary files; net tests | Brett Cannon | 2003-04-25 | 1 | -102/+376 |
|
|
* | New generator os.walk() does a bit more than os.path.walk() does, and | Tim Peters | 2003-04-25 | 1 | -3/+85 |
|
|
* | Patch by Jp Calderone: | Guido van Rossum | 2003-04-25 | 1 | -0/+59 |
|
|
* | test_re is no longer needed | Guido van Rossum | 2003-04-25 | 1 | -2/+0 |
|
|
* | Fix test_limitations(). The match there is *expected* to raise | Guido van Rossum | 2003-04-25 | 1 | -1/+6 |
|
|
* | [Patch #628208] Test the 'nil' extension | Andrew M. Kuchling | 2003-04-25 | 1 | -0/+8 |
|
|
* | first cut at unittest version of re tests | Skip Montanaro | 2003-04-24 | 1 | -374/+297 |
|
|
* | if the test is run directly (__name__ == "__main__") don't actually require | Skip Montanaro | 2003-04-24 | 1 | -0/+4 |
|
|
* | remove test_socketserver from the skip lists | Skip Montanaro | 2003-04-24 | 1 | -11/+0 |
|
|
* | UnicodeTranslationsTest.setUp(): Removed the coerce flag to the | Barry Warsaw | 2003-04-24 | 1 | -1/+1 |
|
|
* | SF bug 665835: filter() treatment of str and tuple inconsistent | Raymond Hettinger | 2003-04-24 | 1 | -0/+12 |
|
|
* | This test now uses the separate getargs_X functions from _testcapimodule. | Thomas Heller | 2003-04-24 | 1 | -101/+109 |
|
|
* | Whitespace normalization. | Tim Peters | 2003-04-24 | 14 | -41/+36 |
|
|
* | SF patch 695710: fix bug 678519: cStringIO self iterator | Raymond Hettinger | 2003-04-24 | 1 | -3/+3 |
|
|
* | [Patch #679505] Silence DeprecationWarning when testing rotor module | Andrew M. Kuchling | 2003-04-24 | 1 | -0/+6 |
|
|
* | Max OS X returns "*" as the password in grp.getgrall() | Walter Dörwald | 2003-04-23 | 1 | -22/+37 |
|
|
* | Do a little more searching for the data file for the test: this allows | Fred Drake | 2003-04-22 | 1 | -1/+12 |
|
|
* | Change test_pwd and test_grp so they can handle duplicate user | Walter Dörwald | 2003-04-22 | 2 | -3/+7 |
|
|
* | Adding new built-in function sum, with docs and tests. | Alex Martelli | 2003-04-22 | 1 | -0/+21 |
|
|
* | Test suite for optparse. This is a slightly-edited copy of | Greg Ward | 2003-04-21 | 1 | -0/+1210 |
|
|
* | More work on bug #672491 and patch #712900. | Gustavo Niemeyer | 2003-04-20 | 2 | -1/+7 |
|
|
* | - Changed shlex.split() method to have more useful and | Gustavo Niemeyer | 2003-04-20 | 1 | -7/+3 |
|
|
* | Patch #553171: Add writeback parameter. Also add protocol parameter. | Martin v. Löwis | 2003-04-19 | 1 | -6/+45 |
|
|
* | - bool() called without arguments now returns False rather than | Guido van Rossum | 2003-04-19 | 2 | -0/+11 |
|
|
* | New PyGILState_ API - implements pep 311, from patch 684256. | Mark Hammond | 2003-04-19 | 1 | -0/+29 |
|
|
* | New file. | Martin v. Löwis | 2003-04-19 | 1 | -0/+90 |
|
|
* | Patch #681152: Support escaped Unicode characters in classes. Fixes #612074. | Martin v. Löwis | 2003-04-19 | 1 | -0/+4 |
|
|
* | Make _strptime escape regex syntax in format string to prevent use in interna... | Brett Cannon | 2003-04-19 | 1 | -0/+14 |
|
|
* | Skip nameprep test 3.43, as we do allow unassigned characters. The test | Martin v. Löwis | 2003-04-18 | 1 | -2/+4 |
|
|
* | Implement IDNA (Internationalized Domain Names in Applications). | Martin v. Löwis | 2003-04-18 | 1 | -0/+296 |
|
|
* | Delete the 'h' test -- 'h' is no longer unsigned so the machinery here | Guido van Rossum | 2003-04-18 | 1 | -16/+1 |
|
|
* | Get test to work under regrtest when running whole suite | Neal Norwitz | 2003-04-17 | 1 | -1/+6 |
|
|
* | Add test that demonstrates SGML-style handling of processing | Fred Drake | 2003-04-17 | 1 | -0/+3 |
|
|
* | Implemented posix-mode parsing support in shlex.py, as dicussed in | Gustavo Niemeyer | 2003-04-17 | 1 | -0/+191 |
|
|
* | SF # 595026: support for masks in getargs.c. | Thomas Heller | 2003-04-17 | 1 | -0/+245 |
|
|
* | - super() no longer ignores data descriptors, except __class__. See | Guido van Rossum | 2003-04-16 | 1 | -1/+16 |
|
|
* | Test SystemEvents too. | Jack Jansen | 2003-04-15 | 1 | -1/+4 |
|
|
* | Ouch, it's Carlo Verre, not Verre Carlo. | Guido van Rossum | 2003-04-15 | 1 | -5/+5 |
|
|
* | Add a few errors tests for range(). | Walter Dörwald | 2003-04-15 | 1 | -0/+6 |
|
|
* | Fix copy & paste error in comment. | Walter Dörwald | 2003-04-15 | 1 | -1/+1 |
|
|
* | Fix the test so that it works even when /etc/group has two entries | Walter Dörwald | 2003-04-15 | 1 | -1/+12 |
|
|
* | Fix the test so that it works even when /etc/passwd has two entries | Walter Dörwald | 2003-04-15 | 1 | -1/+12 |
|
|