1. f443330 testGetServByName shouldn't check for getservbyname - the socket module by Skip Montanaro · 22 years ago
  2. d5f4359 New test %sort. This takes a sorted list, picks 1% of the list positions by Tim Peters · 22 years ago
  3. d3c884d modify testGetServByName so it tries a few different protocols. In this day by Skip Montanaro · 22 years ago
  4. 0dbab4c5 SF patch 588728 (Nathan Srebro). by Guido van Rossum · 22 years ago
  5. 2d8b765 New test for sorting sanity. Note that this will fail in earlier Pythons, by Tim Peters · 22 years ago
  6. 108b791 Reverting this to rev 1.3. It's apparently broken everywhere at rev by Tim Peters · 22 years ago
  7. b995eb7 Enable test_socket again, if only to prevent mistakes like Jeremy by Guido van Rossum · 22 years ago
  8. cbd5b89 Repair testNtoH for large long arguments. by Jeremy Hylton · 22 years ago
  9. 408b6d3 Complete the absolute import patch for the test suite. All relative by Barry Warsaw · 22 years ago
  10. 3e1c18a Fix SF 588452: debug build crashes on marshal.dumps([128] * 1000). by Thomas Heller · 22 years ago
  11. 56796f6 Fix for by Michael W. Hudson · 22 years ago
  12. 88fe4ff Fix the problem of not raising a TypeError exception when doing: by Neal Norwitz · 22 years ago
  13. 139bccb remove redundant import by Piers Lauder · 22 years ago
  14. 8b6bb4f remove redundant code by Piers Lauder · 22 years ago
  15. 385a77a remove o/s dependancy from test by Piers Lauder · 22 years ago
  16. aeb6a60 Reorganized so the test is skipped if os.popen() doesn't exist (in stead of failing). by Jack Jansen · 22 years ago
  17. fd83374 Remove duplicate checks of the Node.allnodes variable. by Fred Drake · 22 years ago
  18. c075e19 Extended socket.htonl and ntohl to accept longs. by Jeremy Hylton · 22 years ago
  19. b8a690d Remove test that was none too picky about whether attributes exist. by Jeremy Hylton · 22 years ago
  20. b5da606 Oops, missed an import of test_support. by Barry Warsaw · 22 years ago
  21. 1bfab7b A few updates about how/where to import test_support from. by Barry Warsaw · 22 years ago
  22. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
  23. 7ea39b1 New test "+sort", tacking 10 random floats on to the end of a sorted by Tim Peters · 22 years ago
  24. d69030d Get popen test to work even if python is not in the path by Neal Norwitz · 22 years ago
  25. 0a30e64 Added new test "3sort". This is sorted data but with 3 random exchanges. by Tim Peters · 22 years ago
  26. 6569257 Move the setting of os.environ['LANGUAGE'] to setup(), and reset it to by Guido van Rossum · 22 years ago
  27. d33d474 Shut the test up and add a missing import by Barry Warsaw · 22 years ago
  28. 190390b The email package's tests live much better in a subpackage by Barry Warsaw · 22 years ago
  29. c441f7b Follow PyXML: Remove all prints from successful tests. This means we can by Fred Drake · 22 years ago
  30. 246a58a Remove a few lines that aren't used and cause problems on platforms by Guido van Rossum · 22 years ago
  31. 00efe7e Pure Python strptime implementation by Brett Cannon. See SF patch 474274. by Guido van Rossum · 22 years ago
  32. f0d777c A few days ago, Guido said (in the thread "[Python-Dev] Python by Michael W. Hudson · 22 years ago
  33. b6cc7d2 Add test for previous core dump when sending on closed socket with timeout. by Guido van Rossum · 22 years ago
  34. 9d0c8ce Add default timeout functionality. This adds setdefaulttimeout() and by Guido van Rossum · 22 years ago
  35. 8b6ec79 Gave this a facelift: "/" vs "//", whrandom vs random, etc. Boosted by Tim Peters · 22 years ago
  36. 30d4896 Gave hotshot.LogReader a close() method, to allow users to close the by Tim Peters · 22 years ago
  37. ba8c069 test_hotshot fails on Windows now. Added XXX comment explaining why, by Tim Peters · 22 years ago
  38. 7fadcab Add a test for the 'closed' attribute on the C-profiler object. by Guido van Rossum · 22 years ago
  39. ed375e1 Add missing comma. by Jeremy Hylton · 22 years ago
  40. 11c3f09 Add a rather generous set of tests allowed to be skipped on sunos5. by Guido van Rossum · 22 years ago
  41. c7b6bed Use sys.executable to run Python, as suggested by Neal Norwitz. by Tim Peters · 22 years ago
  42. 674eae6 Bunch of tests to make sure that StopIteration is a sink state. by Guido van Rossum · 22 years ago
  43. c411dba Whitespace normalization. by Tim Peters · 22 years ago
  44. 012b69c The atexit module effectively turned itself off if sys.exitfunc already by Tim Peters · 22 years ago
  45. 754140e Tim_one's change to aggressively overallocate nodes when adding child by Andrew MacIntyre · 22 years ago
  46. b2622a4 Remove httplib from tested modules. by Jeremy Hylton · 22 years ago
  47. 39c0380 Change _begin() back to begin(). by Jeremy Hylton · 22 years ago
  48. c62b95e test_trashcan() and supporting class Ouch(): Jeremy noted that this test by Tim Peters · 22 years ago
  49. 72351b9 subtype_resurrection(): Removed unused import. by Tim Peters · 22 years ago
  50. df3f793 Extend function() to support an optional closure argument. by Jeremy Hylton · 22 years ago
  51. 14cb1e1 subtype_resurrection(): The test suite with -l properly reported the by Tim Peters · 22 years ago
  52. 45228ca Repaired optimistic comment in new test. by Tim Peters · 22 years ago
  53. 2484aae Added a test that provokes the hypothesized (in my last checkin comment) by Tim Peters · 22 years ago
  54. 5e5ca56 assertHasattr(): Made failure msg better than useless. by Tim Peters · 22 years ago
  55. c53b29e ndiffAssertEqual(): Stringify the arguments before running by Barry Warsaw · 22 years ago
  56. 6b17abf Fix SF Bug 564931: compile() traceback must include filename. by Thomas Heller · 22 years ago
  57. 329d3af TestEmailBase.ndiffAssertEqual(): Python 2.1's difflib doesn't have an by Barry Warsaw · 22 years ago
  58. e5270ae New files which test the corners of multipart/message and by Barry Warsaw · 22 years ago
  59. 1695bcb Got rid of special case for Macintosh realloc slowdown: Tim fixed the problem. by Jack Jansen · 22 years ago
  60. 6d0a4c7 Fix for SF bug #432621: httplib: multiple Set-Cookie headers by Jeremy Hylton · 22 years ago
  61. ba78bc4 printlist(): Replaced the guts with a call to textwrap. Yay! by Tim Peters · 22 years ago
  62. 7d650ca Implement the encoding argument for toxml and toprettyxml. Document toprettyxml. by Martin v. Löwis · 22 years ago
  63. 1969817 Another test of long headers. by Barry Warsaw · 22 years ago
  64. 9546e79 Oleg Broytmann's support for RFC 2231 encoded parameters, SF patch #549133 by Barry Warsaw · 22 years ago
  65. 3fdc889 test_multilingual(): Test for Header.__unicode__(). by Barry Warsaw · 22 years ago
  66. 566fe9e Track change of begin() to _begin(). by Jeremy Hylton · 22 years ago
  67. b6a9213 Lots of new and updated tests to check for proper ascii header by Barry Warsaw · 22 years ago
  68. 2a3d7db Added character data buffering to pyexpat parser objects. by Fred Drake · 22 years ago
  69. 1add023 Integrate the tests for name interning from PyXML (test_pyexpat.py by Fred Drake · 22 years ago
  70. 3a159a8 Suppress the variable verbose output from test.xmltests; the inclusion of by Fred Drake · 22 years ago
  71. 867de94 Add convenience module to run all the XML tests. by Fred Drake · 22 years ago
  72. ab5dae3 Fix SF bug 572567: Memory leak in object comparison. by Raymond Hettinger · 22 years ago
  73. 10f36d9 Add a check that the bug Jeremy just fixed in _PyTuple_Resize() is fixed. by Guido van Rossum · 22 years ago
  74. 0ae0c07 SF 569257 -- Name mangle double underscored variable names in __slots__. by Raymond Hettinger · 22 years ago
  75. e36a8e8 Disable the test for importing very long lists for MacPython: it triggers by Jack Jansen · 22 years ago
  76. 8db890a Removed the generator future-stmt -- not needed for 2.3. by Tim Peters · 22 years ago
  77. 3875e90 I get failures half of the time that I run this, so I'll disable by Guido van Rossum · 22 years ago
  78. 9c14bad Fix the bug described in by Michael W. Hudson · 22 years ago
  79. 83ccb4e Michael fixed the race conditions and removed the sleeps. by Guido van Rossum · 22 years ago
  80. a96b0df Patch from SF bug 570483 (Tim Northover). by Guido van Rossum · 22 years ago
  81. f0a70f6 Alter text test arg to obey new rule, also include inverse test to make time-zone independant by Piers Lauder · 22 years ago
  82. 0f1afb1 test_module_with_large_stack(): This failed when Python was run with -O, by Tim Peters · 22 years ago
  83. 0672712 test_module_with_large_stack(): This failed on Windows, for the wrong by Tim Peters · 22 years ago
  84. e7f3e24 Test for the bug in recurse_down_subclasses() that I just fixed. by Guido van Rossum · 22 years ago
  85. 7fdcb41 Fix SF bug # 561858 Assertion with very long lists by Neal Norwitz · 22 years ago
  86. 1f68fc7 SF bug # 493951 string.{starts,ends}with vs slices by Neal Norwitz · 22 years ago
  87. 1b738e9 Test exceptional condition in select() by Neal Norwitz · 22 years ago
  88. 6fc36c5 Test exceptional conditions in list.sort() by Neal Norwitz · 22 years ago
  89. 16b93b3 Fix for SF bug 532646. This is a little simpler than what Neal by Guido van Rossum · 22 years ago
  90. 654c11e Temporarily disable the timeout and socket tests. by Guido van Rossum · 22 years ago
  91. 09638c1 Hopefully this addresses the remaining issues of SF bugs 459235 and by Guido van Rossum · 22 years ago
  92. 597257b Comment out testHostnameRes() -- it depends on a correctly working by Guido van Rossum · 22 years ago
  93. 7b8bac1 Fix non-blocking connect() for Windows. Refactored the code by Guido van Rossum · 22 years ago
  94. 11ba094 Major overhaul of timeout sockets: by Guido van Rossum · 22 years ago
  95. dfad1a9 Fix a typo. by Guido van Rossum · 22 years ago
  96. 3fcd452 Whitespace nit. by Guido van Rossum · 22 years ago
  97. ab65996 Remove some overly complicated ways to concatenate and repeat strings by Guido van Rossum · 22 years ago
  98. 284a2cf Don't test for Java, test for sys.getrefcount. by Guido van Rossum · 22 years ago
  99. 1c93801 Some provisional changes to get more tests to run on Windows (I hope). by Guido van Rossum · 22 years ago
  100. 8e95ca8 Argh. Typo. :-( by Guido van Rossum · 22 years ago