1. ca84d65 Expanded the unittests for the new width sensitive PyUnicode_Contains(). by Raymond Hettinger · 22 years ago
  2. 2d70246 Add testcase for SF bug 574207 (chained __slots__ dealloc segfault). by Guido van Rossum · 22 years ago
  3. e067417 Added a test for PyUnicode_Contains() taking into account the width of by Barry Warsaw · 22 years ago
  4. fce538c Add a coding cookie, because of the møøse quote. by Guido van Rossum · 22 years ago
  5. 0855dd8 Bump the LOOPS count. 50,000 iterations takes about 5 seconds on my by Guido van Rossum · 22 years ago
  6. 8ee5243 Mark xreadlines deprecated. Don't use f.xreadlines() in test_iter.py. by Guido van Rossum · 22 years ago
  7. 97c5fcc Remove mention of deprecated xreadlines method. by Guido van Rossum · 22 years ago
  8. 817918c Committing patch #591250 which provides "str1 in str2" when str1 is a by Barry Warsaw · 22 years ago
  9. 3c668c1 Add next and __iter__ to the list of file methods that should raise by Guido van Rossum · 22 years ago
  10. 63c4220 We only need to check for StopIteration here. by Fred Drake · 22 years ago
  11. aed51d8 SF patch 590294: os._execvpe security fix (Zack Weinberg). by Guido van Rossum · 22 years ago
  12. 8dcdb77 GvR provided solution to the socket rebinding timeout problem. by Kurt B. Kaiser · 22 years ago
  13. 4c561b3 Test whether a Cyrillic text correctly appears in a Unicode literal. by Martin v. Löwis · 22 years ago
  14. 6782d6a We don't really need the name of the test in the "test skipped" msg, and by Tim Peters · 22 years ago
  15. 283ead8 Oops! Forgot the closing paren. by Tim Peters · 22 years ago
  16. 32ef169 Finally got around to figuring out and documenting why this test fails by Tim Peters · 22 years ago
  17. a729daf Add encoding declaration. by Martin v. Löwis · 22 years ago
  18. 09776b7 Add encoding declaration. by Martin v. Löwis · 22 years ago
  19. 8d30b1e I don't know what's going on with this test, but the last change from by Tim Peters · 22 years ago
  20. 4104db3 - comment improvement - implement viable library search routine for EMX by Andrew MacIntyre · 22 years ago
  21. 428a38c add parameter missing following Jeremy's compiler class refactoring by Andrew MacIntyre · 22 years ago
  22. 6681de2 _siftup(): __le__ is now the only comparison operator used on array elements. by Tim Peters · 22 years ago
  23. dc96ae6 revert to version 1.2 by Piers Lauder · 22 years ago
  24. 0cd53a6 Added new heapreplace(heap, item) function, to pop (and return) the by Tim Peters · 22 years ago
  25. 657fe38 Large code rearrangement to use better algorithms, in the sense of needing by Tim Peters · 22 years ago
  26. 30e0bea Remove cut 'n paste silliness. by Tim Peters · 22 years ago
  27. aa7d243 Minor fiddling, including a simple class to implement a heap iterator by Tim Peters · 22 years ago
  28. fbb2992 Augment credits. by Guido van Rossum · 22 years ago
  29. 28c2552 Hmm! I thought I checked this in before! Oh well. by Tim Peters · 22 years ago
  30. 4b48d6b Add a PEP-263-style encoding turd^H^H^H^Hdeclaration, because there's by Guido van Rossum · 22 years ago
  31. 62abc2f heappop(): Added comments; simplified and sped the code. by Tim Peters · 22 years ago
  32. a0b3a00 heappop(): Use "while True" instead of "while 1". by Tim Peters · 22 years ago
  33. d2cf1ab check_invariant(): Use the same child->parent "formula" used by heapq.py. by Tim Peters · 22 years ago
  34. d9ea39d Don't use true division where int division was intended. For that matter, by Tim Peters · 22 years ago
  35. 0b19178 Adding the heap queue algorithm, per discussion in python-dev last week. by Guido van Rossum · 22 years ago
  36. 404378f catch the situation where Berkeley DB is used to emulate dbm(3) library by Skip Montanaro · 22 years ago
  37. 13a5678 regression test for the whichdb module by Skip Montanaro · 22 years ago
  38. 37c3b27 Add Kevin O'Connor, author of the heapq code. by Guido van Rossum · 22 years ago
  39. 0a82438 Adding the heap queue algorithm, per discussion in python-dev last week. by Guido van Rossum · 22 years ago
  40. f443330 testGetServByName shouldn't check for getservbyname - the socket module by Skip Montanaro · 22 years ago
  41. d5f4359 New test %sort. This takes a sorted list, picks 1% of the list positions by Tim Peters · 22 years ago
  42. d3c884d modify testGetServByName so it tries a few different protocols. In this day by Skip Montanaro · 22 years ago
  43. b54c27c Fix for SF bug 570678 (can't flush read-only file on Mac OS X). by Guido van Rossum · 22 years ago
  44. 0dbab4c5 SF patch 588728 (Nathan Srebro). by Guido van Rossum · 22 years ago
  45. 2d8b765 New test for sorting sanity. Note that this will fail in earlier Pythons, by Tim Peters · 22 years ago
  46. 6be1475 Restore a full arglist to the socket wrapper, so it supports keyword by Tim Peters · 22 years ago
  47. 8c3fb87 For platforms (like Windows) that wrap _socket.socket: by Tim Peters · 22 years ago
  48. 108b791 Reverting this to rev 1.3. It's apparently broken everywhere at rev by Tim Peters · 22 years ago
  49. b995eb7 Enable test_socket again, if only to prevent mistakes like Jeremy by Guido van Rossum · 22 years ago
  50. cbd5b89 Repair testNtoH for large long arguments. by Jeremy Hylton · 22 years ago
  51. 408b6d3 Complete the absolute import patch for the test suite. All relative by Barry Warsaw · 22 years ago
  52. 3e1c18a Fix SF 588452: debug build crashes on marshal.dumps([128] * 1000). by Thomas Heller · 22 years ago
  53. 56796f6 Fix for by Michael W. Hudson · 22 years ago
  54. b9e0764 Revert #571603 since it is ok to import codecs that are not subdirectories by Martin v. Löwis · 22 years ago
  55. f4ad4ce Recompiled the exe and updated bdist_wininst.py. by Thomas Heller · 22 years ago
  56. ad9eba7 Add 'engine' back. IDLE used this, others might have copied it from there. by Guido van Rossum · 22 years ago
  57. 301b1cd Patch #586999: Fix multiline string in sendmail example. by Martin v. Löwis · 22 years ago
  58. 88fe4ff Fix the problem of not raising a TypeError exception when doing: by Neal Norwitz · 22 years ago
  59. fc4c24c Patch #571603: Refer to encodings package explicitly. by Martin v. Löwis · 22 years ago
  60. e567114 Patch #543498: Use License: field instead of Copyright:. by Martin v. Löwis · 22 years ago
  61. 6c611fa Patch #581705: Catch OSError, termios.error in spawn. 2.2 bugfix candidate. by Martin v. Löwis · 22 years ago
  62. d694c1f Reset the Python execution server environment to its initial value prior by Kurt B. Kaiser · 22 years ago
  63. 139bccb remove redundant import by Piers Lauder · 22 years ago
  64. 8b6bb4f remove redundant code by Piers Lauder · 22 years ago
  65. 385a77a remove o/s dependancy from test by Piers Lauder · 22 years ago
  66. f03c692 Use os.environ.get() in stead of os.getenv() (which is platform-dependent). by Jack Jansen · 22 years ago
  67. aeb6a60 Reorganized so the test is skipped if os.popen() doesn't exist (in stead of failing). by Jack Jansen · 22 years ago
  68. b417936 Reverse the RPC socket connection: Python execution server connects to by Kurt B. Kaiser · 22 years ago
  69. fd83374 Remove duplicate checks of the Node.allnodes variable. by Fred Drake · 22 years ago
  70. e80c0d3 Add an XXX comment and a pointer to a full bug report. by Fred Drake · 22 years ago
  71. 186bec2 typo by Skip Montanaro · 22 years ago
  72. c075e19 Extended socket.htonl and ntohl to accept longs. by Jeremy Hylton · 22 years ago
  73. b8a690d Remove test that was none too picky about whether attributes exist. by Jeremy Hylton · 22 years ago
  74. 9e4e050 Use full package paths in imports. by Barry Warsaw · 22 years ago
  75. 10d0d59 Added a couple of more tests for Header charset handling. by Barry Warsaw · 22 years ago
  76. b5da606 Oops, missed an import of test_support. by Barry Warsaw · 22 years ago
  77. 1bfab7b A few updates about how/where to import test_support from. by Barry Warsaw · 22 years ago
  78. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
  79. 92825a9 append(): Bite the bullet and let charset be the string name of a by Barry Warsaw · 22 years ago
  80. 15d3739 make_header(): Watch out for charset is None, which decode_header() by Barry Warsaw · 22 years ago
  81. 58b63bf SF patch #581396, Canvas "select_item" always returns None by Neal Norwitz · 22 years ago
  82. 7ea39b1 New test "+sort", tacking 10 random floats on to the end of a sorted by Tim Peters · 22 years ago
  83. 53d019c Changed import from by Tim Peters · 22 years ago
  84. 1bf4c2d Bug: clearing the shell undo list after a prompt was allowing files to be by Kurt B. Kaiser · 22 years ago
  85. d69030d Get popen test to work even if python is not in the path by Neal Norwitz · 22 years ago
  86. 0a30e64 Added new test "3sort". This is sorted data but with 3 random exchanges. by Tim Peters · 22 years ago
  87. 6569257 Move the setting of os.environ['LANGUAGE'] to setup(), and reset it to by Guido van Rossum · 22 years ago
  88. d33d474 Shut the test up and add a missing import by Barry Warsaw · 22 years ago
  89. 190390b The email package's tests live much better in a subpackage by Barry Warsaw · 22 years ago
  90. 6290380 The email package's tests live much better in a subpackage by Barry Warsaw · 22 years ago
  91. d8e8e54 message_from_string(), message_from_file(): The consensus on the by Barry Warsaw · 22 years ago
  92. bb26b45 Parser.__init__(): The consensus on the mimelib-devel list is that by Barry Warsaw · 22 years ago
  93. c106864 To better support default content types, fix an API wart, and preserve by Barry Warsaw · 22 years ago
  94. d438574 _structure(): Take an optional `fp' argument which would be the object by Barry Warsaw · 22 years ago
  95. 1cecdc6 _dispatch(): Use the new Message.get_content_type() method as hashed by Barry Warsaw · 22 years ago
  96. c441f7b Follow PyXML: Remove all prints from successful tests. This means we can by Fred Drake · 22 years ago
  97. 246a58a Remove a few lines that aren't used and cause problems on platforms by Guido van Rossum · 22 years ago
  98. 00efe7e Pure Python strptime implementation by Brett Cannon. See SF patch 474274. by Guido van Rossum · 22 years ago
  99. f0d777c A few days ago, Guido said (in the thread "[Python-Dev] Python by Michael W. Hudson · 22 years ago
  100. b6cc7d2 Add test for previous core dump when sending on closed socket with timeout. by Guido van Rossum · 22 years ago