1. da563bf Closes #14158: We now track test_support.TESTFN cleanup, and test_mailbox uses shutil.rmtree for simpler code. by Vinay Sajip · 13 years ago
  2. 8366b84 Followup to issue #11867: Use socketpair(), since FreeBSD < 8 doesn't really by Charles-François Natali · 13 years ago
  3. 52aa260 Issue #11867: Make test_mailbox.test_lock_conflict deterministic (and fix a by Charles-François Natali · 13 years ago
  4. ab42abd Update mailbox.Maildir tests by Petri Lehtinen · 13 years ago
  5. 49aa72e Fix Maildir initialization so that maildir contents are read correctly. by Petri Lehtinen · 13 years ago
  6. f1138bb #11700: proxy object close methods can now be called multiple times by R David Murray · 13 years ago
  7. 8b26c4b #11999: sync based on comparing mtimes, not mtime to system clock by R David Murray · 13 years ago
  8. 04d8b22 Merged revisions 85401 via svnmerge from by Brian Curtin · 14 years ago
  9. b72b0eb #7627: MH.remove() would fail if the MH mailbox was locked; by Andrew M. Kuchling · 15 years ago
  10. a2d4653 #7092: silence py3k warnings for deprecated modules by Ezio Melotti · 15 years ago
  11. ce8e33a Reverting the Revision: 77368. I committed Flox's big patch for tests by by Senthil Kumaran · 15 years ago
  12. 3ddc435 Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox by Senthil Kumaran · 15 years ago
  13. e4c6b16 This should finally fix #6896. Let's watch the buildbots. by Antoine Pitrou · 15 years ago
  14. 0da5cb8 Use richer assertions in test_mailbox (for better failure messages). by Antoine Pitrou · 15 years ago
  15. 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 15 years ago
  16. 420d4eb #1607951: Make mailbox.Maildir re-read the directories less frequently. by Andrew M. Kuchling · 15 years ago
  17. 52720c5 Add missing iteritems() call to the for loop in mailbox.MH.get_message(). by R. David Murray · 16 years ago
  18. 10288e1 Bug 3228: take a test from Niels Gustaebel's patch, and based on his patch, check for having os.stat available by Andrew M. Kuchling · 16 years ago
  19. 70a6dbd Bug 3228: Explicitly supply the file mode to avoid creating executable files, by Andrew M. Kuchling · 16 years ago
  20. 5b63acd #2503 make singletons compared with "is" not == or != by Benjamin Peterson · 17 years ago
  21. 22b3e3a Ensure that the mailbox is closed to prevent problems on Windows with removing by Neal Norwitz · 17 years ago
  22. 07974d7 Correct test_mailbox on win32: since the test sets a custom 'colon' attribute by Amaury Forgeot d'Arc · 17 years ago
  23. 15ce880 Bug 1277: make Maildir use the user-provided factory instead of hard-wiring MaildirMessage. by Andrew M. Kuchling · 17 years ago
  24. 2b09ef0 Avoid exception if there's a stray directory inside a Maildir folder. by Andrew M. Kuchling · 17 years ago
  25. 6cbd8de Try to be a little more resilient to errors. This might help the test by Neal Norwitz · 18 years ago
  26. b0a7d4e Try to make this test more resistant to dropping from previous runs (ie, files that may exist but cause the test to fail). Should be backported (assuming it works :-) by Neal Norwitz · 18 years ago
  27. f733abb Whitespace normalization. by Tim Peters · 18 years ago
  28. 5a096e1 Use new email module names (#1637162, #1637159, #1637157). by Georg Brandl · 18 years ago
  29. 8c456f3 Remove file-locking in MH.pack() method. by Andrew M. Kuchling · 18 years ago
  30. a3e5d37 [Bug #1569790] mailbox.Maildir.get_folder() loses factory information by Andrew M. Kuchling · 18 years ago
  31. abd8a33 Whitespace normalization. by Tim Peters · 18 years ago
  32. 0f87183 [Bug #1575506] The _singlefileMailbox class was using the wrong file object in its flush() method, causing an error by Andrew M. Kuchling · 18 years ago
  33. 003c9e2 Fix the failures on cygwin (2006-08-10 fixed the actual locking issue). by Neal Norwitz · 18 years ago
  34. afa358f Get mailbox module working on OS/2 EMX port. by Andrew MacIntyre · 18 years ago
  35. b15ac31 Add new utility function, reap_children(), to test_support. This should by Neal Norwitz · 18 years ago
  36. 3249d00 Whitespace normalization. by Tim Peters · 18 years ago
  37. 15486f7 Attempt to fix build failure on OS X and Debian alpha; the symptom is by Andrew M. Kuchling · 18 years ago
  38. ec3c368 Windows doesn't have os.fork(). I'll just disable this test for now by Andrew M. Kuchling · 18 years ago
  39. 9afbace Add a test for a conflicting lock. by Andrew M. Kuchling · 18 years ago
  40. 214db63 Use open() instead of file() by Andrew M. Kuchling · 18 years ago
  41. b204583 Hopefully this will fix the spurious failures of test_mailbox.py that I'm by Guido van Rossum · 18 years ago
  42. 6d7cd7d Whitespace normalization. by Tim Peters · 19 years ago
  43. 1da4a94 Add Gregory K. Johnson's revised version of mailbox.py (funded by by Andrew M. Kuchling · 19 years ago
  44. 5253da1 added test for bug #996359. by Skip Montanaro · 20 years ago
  45. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
  46. e2ae77b SF patch #474590 -- RISC OS support by Guido van Rossum · 23 years ago
  47. 2e2be37 Change the PyUnit-based tests to use the test_main() approach. This by Fred Drake · 23 years ago
  48. 97df7b6 The test used int(time.time()) to get a random number, but this doesn't work on the mac (where times are bigger than ints). Changed to int(time.time()%1000000). by Jack Jansen · 23 years ago
  49. 6626c1f create_message(): When os.link() doesn't exist, make a copy of the msg by Tim Peters · 23 years ago
  50. c02bc3e Re-write the mailbox test suite to use PyUnit. Cover a lot more ground by Fred Drake · 23 years ago
  51. 75ebb29 Some other tests, when failing, don't always remove their TESTFN file. by Guido van Rossum · 24 years ago
  52. ca956e2 When catching errors from os.rmdir(), test for os.error, not IOError! by Guido van Rossum · 24 years ago
  53. 0aaed27 Added test for regression on SourceForge bug #117490. by Fred Drake · 24 years ago