1. 7919d98 test_nis would fail if test.test_support.verbose was true but NIS was not set by Brett Cannon · 17 years ago
  2. 8ff4963 Trivial typo. by Eric Smith · 17 years ago
  3. e504445 Use test.test_support.captured_stdout instead of a custom contextmanager. by Eric Smith · 17 years ago
  4. b27745f Issue2290: Support x64 Windows builds that live in pcbuild/amd64. Without it, sysutils._python_build() returns the wrong directory, which causes the test_get_config_h_filename method in Lib/distutils/tests/test_sysconfig.py to fail. by Trent Nelson · 17 years ago
  5. 16b2e6b Import relimport using a relative import. by Martin v. Löwis · 17 years ago
  6. ab41b37 Merged revisions 61598-61599,61601 via svnmerge from by Martin v. Löwis · 17 years ago
  7. 5e37bae Import lib2to3. by Martin v. Löwis · 17 years ago
  8. a4d7789 Issue #2400: Allow relative imports to "import *". by Martin v. Löwis · 17 years ago
  9. bf02e3b Fix the struct module DeprecationWarnings that zipfile was triggering by by Gregory P. Smith · 17 years ago
  10. 14cae96 Another test for __future__ print_function. by Eric Smith · 17 years ago
  11. 2724ab9 Added zip, map, filter to future_bultins (#2171) by David Wolever · 17 years ago
  12. 5d5c63f Fixed compiler module so __future__ print_function is compilable. by Eric Smith · 17 years ago
  13. b89a096 Use zlib's crc32 routine instead of binascii when available. zlib's is faster by Gregory P. Smith · 17 years ago
  14. bde4007 Mention that crc32 and adler32 are available in a different module (zlib). by Gregory P. Smith · 17 years ago
  15. 7c47894 Backport of the print function, using a __future__ import. by Eric Smith · 17 years ago
  16. c856fa8 Add a test to make sure zlib.crc32 and binascii.crc32 return the same thing. by Gregory P. Smith · 17 years ago
  17. 6a644f9 Add py3k warnings for code and method inequality comparisons. This should resolve issue 2373. The codeobject.c and methodobject.c changes are both just backports of the Python 3 code. by Steven Bethard · 17 years ago
  18. e8e22cf Have regrtest skip test_py3kwarn when the -3 flag is missing. by Steven Bethard · 17 years ago
  19. 0c1ef47 Import the test properly. This is especially important for py3k. by Neal Norwitz · 17 years ago
  20. a7a3e28 Fix test_atexit so that it still passes when -3 is supplied. (It was catching the warning messages on stdio from using the reload() function.) by Steven Bethard · 17 years ago
  21. f48da8f Fix chown on 64-bit linux. It needed to take a long (64-bit on 64bit linux) as by Gregory P. Smith · 17 years ago
  22. 8906575 _have_soundcard() is a bad check for winsound.Beep, since you can have a soundcard but have the beep driver disabled. This revision basically disables the beep tests by wrapping them in a try/except. The Right Way To Do It is to come up with a _have_enabled_beep_driver() and use that. by Steven Bethard · 17 years ago
  23. 5fe5cf6 Get regrtest working when re-running tests by Neal Norwitz · 17 years ago
  24. ae42f33 Add py3k warnings for object, type, cell and dict comparisons. This should resolve issue2342 and partly resolve issue2373. by Steven Bethard · 17 years ago
  25. 493894c Issue 1577: shutil.move() where destination is a directory was doing a by Sean Reifscheider · 17 years ago
  26. ed427e7 Use test_support.unlink instead of os.unlink in tearDown(). (Seems to fix an occasional failure in Windows Vista.) by Steven Bethard · 17 years ago
  27. f084e04 Fix test_errno to only check for error numbers that are defined by Standard C. by Brett Cannon · 17 years ago
  28. 66e2663 Note that the stderr output of the test is intentional. by Martin v. Löwis · 17 years ago
  29. afb416b Add WSA errors. by Martin v. Löwis · 17 years ago
  30. 637f239 Add more Linux error codes. by Martin v. Löwis · 17 years ago
  31. d43ca3b norwitz-amd64 (gentoo) has EREMOTEIO. by Martin v. Löwis · 17 years ago
  32. 496ad27 The behaviour of winsound.Beep() seems to differ between different versions of Windows when there's either: by Trent Nelson · 17 years ago
  33. d1befd7 Add some info to the failure messages by Neal Norwitz · 17 years ago
  34. 36dbcb9 Add a -S/--slow flag to regrtest to have it print the 10 slowest tests with by Jeffrey Yasskin · 17 years ago
  35. 08811dd Improve the error message for a test that failed on the S-390 Debian buildbot. by Brett Cannon · 17 years ago
  36. 819f139 Try increasing the timeout to reduce the flakiness of this test. by Neal Norwitz · 17 years ago
  37. ed41465 Speed up test_dict by about 10x by only checking selected dict literal sizes, by Jeffrey Yasskin · 17 years ago
  38. a145853 Speed test_thread up from 51.328s to 0.081s by reducing its sleep times. We by Jeffrey Yasskin · 17 years ago
  39. 0bfc896 Block the "socket.ssl() is deprecated" warning from test_socket_ssl. by Jeffrey Yasskin · 17 years ago
  40. a5573b3 The output directory for tests that compare against stdout is now gone! by Brett Cannon · 17 years ago
  41. b7ec8e5 test_errno was a no-op test; now it actually tests things and uses unittest. by Brett Cannon · 17 years ago
  42. 0bb7950 Move test_extcall to doctest. by Brett Cannon · 17 years ago
  43. ba17cfc Convert test_dummy_threading and test_dbm to unittest. by Brett Cannon · 17 years ago
  44. 6eeaddc Convert test_strftime, test_getargs, and test_pep247 to use unittest. by Brett Cannon · 17 years ago
  45. 0aed07a Added PEP 3127 support to tokenize (with tests); added PEP 3127 to NEWS. by Eric Smith · 17 years ago
  46. f48f9d3 Force zlib.crc32 and zlib.adler32 to return a signed integer on all platforms by Gregory P. Smith · 17 years ago
  47. 9ff19b5 Finished backporting PEP 3127, Integer Literal Support and Syntax. by Eric Smith · 17 years ago
  48. b9e15f7 Make isinstance(OldstyleClass, NewstyleClass) return False instead of raising by Jeffrey Yasskin · 17 years ago
  49. 8113ca6 Issue 2264: empty float presentation type needs to have at least one digit past the decimal point. by Eric Smith · 17 years ago
  50. cd6bfab Zap one more use of Exact/Inexact. by Raymond Hettinger · 17 years ago
  51. 6b46762 Removed Exact/Inexact after discussion with Yasskin. by Raymond Hettinger · 17 years ago
  52. fc070d2 add %f format to datetime - issue 1158 by Skip Montanaro · 17 years ago
  53. c23b8a7 Issue 705836: Fix struct.pack(">f", 1e40) to behave consistently by Mark Dickinson · 17 years ago
  54. 6119540 Remove a bad test. by Brett Cannon · 17 years ago
  55. 1f5182b Convert test_fcntl to unittest. by Brett Cannon · 17 years ago
  56. 4a6e8d6 Move test_gdbm to use unittest. by Brett Cannon · 17 years ago
  57. 2e0f9f3 Convert test_contains, test_crypt, and test_select to unittest. by Brett Cannon · 17 years ago
  58. b8d3735 Move test_tokenize to doctest. by Brett Cannon · 17 years ago
  59. 66865d2 Move test_thread over to unittest. Commits GHOP 237. by Brett Cannon · 17 years ago
  60. 83aa6a3 Simplify the nlargest() code using heappushpop(). by Raymond Hettinger · 17 years ago
  61. 53bdf09 Issue 2274: Add heapq.heappushpop(). by Raymond Hettinger · 17 years ago
  62. e8b4b60 Add recipe to docs. by Raymond Hettinger · 17 years ago
  63. 0098c9d Introduce a lock to fix a race condition which caused an exception in the test. by Neal Norwitz · 17 years ago
  64. c54aec1 Issue 1106316. post_mortem()'s parameter, traceback, is now by Facundo Batista · 17 years ago
  65. 50967bd Add new name for Mandrake: Mandriva. by Marc-André Lemburg · 17 years ago
  66. 7af53be Speed up with statements by storing the __exit__ method on the stack instead of in a temp variable (bumps the magic number for pyc files) by Nick Coghlan · 17 years ago
  67. e75f59a Progress on issue #1193577 by adding a polling .shutdown() method to by Jeffrey Yasskin · 17 years ago
  68. 38fb9be Tweak recipes and tests by Raymond Hettinger · 17 years ago
  69. a1ca94a Issue 2246: itertools grouper object did not participate in GC (should be backported). by Raymond Hettinger · 17 years ago
  70. ad47fa1 More tests. by Raymond Hettinger · 17 years ago
  71. 4286138 #2220: handle matching failure more gracefully. by Georg Brandl · 17 years ago
  72. a7bd27f #2225: return nonzero status code from py_compile if not all files could be compiled. by Georg Brandl · 17 years ago
  73. d2bbe52 Patch #2232: os.tmpfile might fail on Windows if the user has no by Martin v. Löwis · 17 years ago
  74. 1df0340 #1725737: ignore other VC directories other than CVS and SVN's too. by Georg Brandl · 17 years ago
  75. 66f91ea C implementation of itertools.permutations(). by Raymond Hettinger · 17 years ago
  76. f3c0559 Issue 1872: Changed the struct module typecode from 't' to '?', for by Thomas Heller · 17 years ago
  77. f28896d Fix test_socketserver on Windows after r61099 added several signal.alarm() by Jeffrey Yasskin · 17 years ago
  78. 48309d5 Make the timeout longer to give slow machines a chance to pass the test by Neal Norwitz · 17 years ago
  79. ce52788 Catch OSError when trying to remove a file in case removal fails. This by Neal Norwitz · 17 years ago
  80. 2180725 Get this test to pass even when there is no sound card in the system. by Neal Norwitz · 17 years ago
  81. 31e8893 Remove the files/dirs after closing the DB so the tests work on Windows. by Neal Norwitz · 17 years ago
  82. d21fb4c Issue#2238: some syntax errors from *args or **kwargs expressions by Amaury Forgeot d'Arc · 17 years ago
  83. a28df13 fix typo by Fred Drake · 17 years ago
  84. 4a50d26 Close the file before trying to remove the directory so it works on Windows. by Neal Norwitz · 17 years ago
  85. d553d85 Beef-up docs and tests for itertools. Fix-up end-case for product(). by Raymond Hettinger · 17 years ago
  86. 10ac19b Issue 2226: Callable checked for the wrong abstract method. by Raymond Hettinger · 17 years ago
  87. 972fb07 Remove dependency on itertools -- a simple genexp suffices. by Raymond Hettinger · 17 years ago
  88. d2f7680 Actually import itertools. by Georg Brandl · 17 years ago
  89. 26bc177 15 -> 16, the 2nd by Georg Brandl · 17 years ago
  90. 728bee8 15 -> 16 by Christian Heimes · 17 years ago
  91. 608c1d8 Since abc._Abstract was replaces by a new type flags the regression test suite fails. I've added a new function inspect.isabstract(). Is the mmethod fine or should I check if object is a instance of type or subclass of object, too? by Christian Heimes · 17 years ago
  92. 7dbd918 Add test_main() functions to various tests where it was simple to do. Done so by Brett Cannon · 17 years ago
  93. 963c80f Add a note in the main test class' docstring that the order of execution of the by Brett Cannon · 17 years ago
  94. bfbf5b3 Add a note in the main test class' docstring that the order of execution of the by Brett Cannon · 17 years ago
  95. 6382ffc Move test_largefile over to using 'with' statements for open files. by Brett Cannon · 17 years ago
  96. 56c4deb Refactor test_logging to use unittest. This should finally solve the flakiness by Brett Cannon · 17 years ago
  97. 492e2bf Modify import of test_support so that the code can also be used with a by Gregory P. Smith · 17 years ago
  98. f40f684 Made sqlite3 module's regression tests work with SQLite versions that don't by Gerhard Häring · 17 years ago
  99. 9d225e6 Give IDLE a release date by Barry Warsaw · 17 years ago
  100. c853f5d bump idle version number by Barry Warsaw · 17 years ago