1. ecf0f02 Merge back from r23b1-branch by Guido van Rossum · 21 years ago
  2. 5ba0054 final bit of tests converted from test_sre by Skip Montanaro · 21 years ago
  3. 9593792 test_sre is dead! long live test_re! by Skip Montanaro · 21 years ago
  4. 35b9ff3 deleted more tests which were either already in test_re or that I migrated by Skip Montanaro · 21 years ago
  5. 1e703c6 more tests converted from test_sre by Skip Montanaro · 21 years ago
  6. bf7ad96 Remove tests which were migrated to test_re.py. There are still more tests by Skip Montanaro · 21 years ago
  7. f4001ee Skip testing inet_ntop() an inet_pton() if they aren't defined. by Guido van Rossum · 21 years ago
  8. 51735b0 Fix the tests on Windows, by writing the test data file in binary mode. by Guido van Rossum · 21 years ago
  9. 48816c6 some sniffer tests by Skip Montanaro · 21 years ago
  10. 2726fcd more tests from test_sre by Skip Montanaro · 21 years ago
  11. 376e636 New version from Vinaj, should solve the threading problems (hopefully). by Guido van Rossum · 21 years ago
  12. 7d9963f copy a few tests from test_sre by Skip Montanaro · 21 years ago
  13. dbcede5 Port test_bool.py to PyUnit. From SF patch #662807. by Walter Dörwald · 21 years ago
  14. 74bfd70 Complete rewrite of module. Only has tests using temporary files; net tests by Brett Cannon · 21 years ago
  15. c4e0940 New generator os.walk() does a bit more than os.path.walk() does, and by Tim Peters · 21 years ago
  16. 47dfa4a Patch by Jp Calderone: by Guido van Rossum · 21 years ago
  17. 45f4130 test_re is no longer needed by Guido van Rossum · 21 years ago
  18. 46144be Fix test_limitations(). The match there is *expected* to raise RuntimeError. by Guido van Rossum · 21 years ago
  19. 0b85203 [Patch #628208] Test the 'nil' extension by Andrew M. Kuchling · 21 years ago
  20. 8ed06da first cut at unittest version of re tests by Skip Montanaro · 21 years ago
  21. d839ecd if the test is run directly (__name__ == "__main__") don't actually require by Skip Montanaro · 21 years ago
  22. 142da98 remove test_socketserver from the skip lists by Skip Montanaro · 21 years ago
  23. edb155f UnicodeTranslationsTest.setUp(): Removed the coerce flag to the by Barry Warsaw · 21 years ago
  24. 9928571 SF bug 665835: filter() treatment of str and tuple inconsistent by Raymond Hettinger · 21 years ago
  25. 54aa578 This test now uses the separate getargs_X functions from _testcapimodule. by Thomas Heller · 21 years ago
  26. 0eadaac Whitespace normalization. by Tim Peters · 21 years ago
  27. 352f947 SF patch 695710: fix bug 678519: cStringIO self iterator by Raymond Hettinger · 21 years ago
  28. 9f4eb6b [Patch #679505] Silence DeprecationWarning when testing rotor module by Andrew M. Kuchling · 21 years ago
  29. ce07c8a Max OS X returns "*" as the password in grp.getgrall() by Walter Dörwald · 21 years ago
  30. b28271f Do a little more searching for the data file for the test: this allows by Fred Drake · 21 years ago
  31. ecd2fdc Change test_pwd and test_grp so they can handle duplicate user by Walter Dörwald · 21 years ago
  32. a70b191 Adding new built-in function sum, with docs and tests. by Alex Martelli · 21 years ago
  33. 5549322 Test suite for optparse. This is a slightly-edited copy of by Greg Ward · 21 years ago
  34. be733ee More work on bug #672491 and patch #712900. by Gustavo Niemeyer · 21 years ago
  35. 48f3dcc - Changed shlex.split() method to have more useful and meaningful parameters. by Gustavo Niemeyer · 21 years ago
  36. 153c9e4 Patch #553171: Add writeback parameter. Also add protocol parameter. by Martin v. Löwis · 21 years ago
  37. aa86e35 - bool() called without arguments now returns False rather than by Guido van Rossum · 21 years ago
  38. 8d98d2c New PyGILState_ API - implements pep 311, from patch 684256. by Mark Hammond · 21 years ago
  39. b4cb664 New file. by Martin v. Löwis · 21 years ago
  40. 53d93ad Patch #681152: Support escaped Unicode characters in classes. Fixes #612074. by Martin v. Löwis · 21 years ago
  41. 1e91d8e Make _strptime escape regex syntax in format string to prevent use in internal regex. by Brett Cannon · 21 years ago
  42. b5c4b7b Skip nameprep test 3.43, as we do allow unassigned characters. The test by Martin v. Löwis · 21 years ago
  43. 2548c73 Implement IDNA (Internationalized Domain Names in Applications). by Martin v. Löwis · 21 years ago
  44. bbb931b Delete the 'h' test -- 'h' is no longer unsigned so the machinery here by Guido van Rossum · 21 years ago
  45. aa1ac54 Get test to work under regrtest when running whole suite by Neal Norwitz · 21 years ago
  46. fafd56f Add test that demonstrates SGML-style handling of processing instructions. by Fred Drake · 21 years ago
  47. 68d8cef Implemented posix-mode parsing support in shlex.py, as dicussed in by Gustavo Niemeyer · 21 years ago
  48. a4ea603 SF # 595026: support for masks in getargs.c. by Thomas Heller · 21 years ago
  49. a4541a3 - super() no longer ignores data descriptors, except __class__. See by Guido van Rossum · 21 years ago
  50. a95eab5 Test SystemEvents too. by Jack Jansen · 21 years ago
  51. 52b2705 Ouch, it's Carlo Verre, not Verre Carlo. by Guido van Rossum · 21 years ago
  52. 357981e Add a few errors tests for range(). by Walter Dörwald · 21 years ago
  53. 64976e7 Fix copy & paste error in comment. by Walter Dörwald · 21 years ago
  54. 43bc1f1 Fix the test so that it works even when /etc/group has two entries by Walter Dörwald · 21 years ago
  55. 66e1e50 Fix the test so that it works even when /etc/passwd has two entries by Walter Dörwald · 21 years ago
  56. 299b3df test_range(): The C code changed to raise TypeError in one of these by Tim Peters · 21 years ago
  57. b1ded1e Port test_pwd.py to PyUnit. Check that getpwall() and by Walter Dörwald · 21 years ago
  58. 8b7a9a3 The date class is now properly subclassable. (SF bug #720908) by Guido van Rossum · 21 years ago
  59. 4dcdb78 Close off the "Verre Carlo hack" as discussed on python-dev. by Guido van Rossum · 21 years ago
  60. 3a3cca5 - list.insert(i, x) now interprets negative i as it would be by Guido van Rossum · 21 years ago
  61. 41c99e7 SF patch #720991 by Gary Herron: by Guido van Rossum · 21 years ago
  62. ae32319 Get test working if gzip support is not available by Neal Norwitz · 21 years ago
  63. efbbb1c Patch by Chad Netzer (with significant change): by Guido van Rossum · 21 years ago
  64. a1ce93f From http://mail.python.org/pipermail/i18n-sig/2003-April/001557.html by Barry Warsaw · 21 years ago
  65. 7f2588c SF patch #706707, time.tzset standards compliance update by Stuart Bishop by Neal Norwitz · 21 years ago
  66. 126f2b7 Avoid creating one of the TestSuite objects. by Fred Drake · 21 years ago
  67. ffe33b7 Attempt to make all the various string *strip methods the same. by Neal Norwitz · 21 years ago
  68. 594adac hoist contents of csv submodule up to the package level by Skip Montanaro · 21 years ago
  69. 11d204c Add test for MessageBeep() by Guido van Rossum · 21 years ago
  70. 8805e66 New tests identical to boom and boom2, except using new-style classes. by Tim Peters · 21 years ago
  71. 730f553 s/referrents/referents/g. Gotta love that referrers remains rife with rs. by Tim Peters · 21 years ago
  72. 0f81ab6 Finished implementing gc.get_referrents(): dealt with error and end by Tim Peters · 21 years ago
  73. f6b8045 Reworked has_finalizer() to use the new _PyObject_Lookup() instead by Tim Peters · 21 years ago
  74. f394df4 SF bug #699934: Obscure error message by Raymond Hettinger · 21 years ago
  75. ff41c48 SF patch #701494: more apply removals by Raymond Hettinger · 21 years ago
  76. bf384c2 Reworked move_finalizer_reachable() to create two distinct lists: by Tim Peters · 21 years ago
  77. 2f74fdd test_boom: More comments. Also check that len(gc.garbage) doesn't by Tim Peters · 21 years ago
  78. dee38ac Add Tim's gc boom test to the test suite. by Jeremy Hylton · 21 years ago
  79. 7fb697b Revert Patch #670715: iconv support. by Martin v. Löwis · 21 years ago
  80. 44f527f Change formatchar(), so that u"%c" % 0xffffffff now raises by Walter Dörwald · 21 years ago
  81. 56fbcb5 Remove duplicate test. by Walter Dörwald · 21 years ago
  82. 43440a6 Fix PyString_Format() so that '%c' % u'a' returns u'a' by Walter Dörwald · 21 years ago
  83. 3163a3b Patch #545300: Support marked sections. by Martin v. Löwis · 21 years ago
  84. 89feabc The socket module now always uses the _socketobject wrapper class, even on by Skip Montanaro · 21 years ago
  85. 7035c98 Move Mac/Windows specific expected skips from each platform list by Neal Norwitz · 21 years ago
  86. c2a7f22 Minimal test suite of the generated packages in plat-mac/lib-scriptpackages. by Jack Jansen · 21 years ago
  87. 97951de Add two tests for simple error cases. by Walter Dörwald · 21 years ago
  88. 590fe02 CommandTests.testgetoutput(): by Thomas Wouters · 21 years ago
  89. 3e0196c Adding unicode filename support to FSRefs broke things on MacOS9. "Fixed" by disabling unicode filenames on OS9. by Jack Jansen · 21 years ago
  90. 7d81452 Prevent the pty test from hanging by setting an alarm. by Neal Norwitz · 21 years ago
  91. e3d1df0 The message "*** skipping leakage tests ***" was causing the test to by Guido van Rossum · 21 years ago
  92. b4a0417 new CSV file processing module - see PEP 305 by Skip Montanaro · 21 years ago
  93. d50ade6 SF bug 705836: struct.pack of floats in non-native endian order by Tim Peters · 21 years ago
  94. 26f42f6 Skip the ioctl test if we can't open /dev/tty. This happens on by Neal Norwitz · 21 years ago
  95. 6e54f57 Fix SF bug #697556, test_posix fails: getlogin by Neal Norwitz · 21 years ago
  96. c2ca32d Test for UnicodeError instead of ImportError to determine whether by Martin v. Löwis · 21 years ago
  97. 9e1c192 binascii_a2b_base64: Properly return an empty string if the input was all by Thomas Wouters · 21 years ago
  98. d2b738e If time.tzset doesn't exist, don't test it. by Guido van Rossum · 21 years ago
  99. d11b62e - New function time.tzset() provides access to the C library tzet() by Guido van Rossum · 21 years ago
  100. 0834d77 Accept commas in unquoted attribute values. This closes SF patch #669683. by Fred Drake · 21 years ago