1. 402b270 #2383: remove obsolete XXX comment in stat.py. by Georg Brandl · 17 years ago
  2. 6af3db8 Attempt to fix the Solaris Sparc 10 buildbot. It was failing with an invalid by Gregory P. Smith · 17 years ago
  3. 00b53ea Revert r61650; the intent of this commit was to try and address alarm failures on some of the build slaves. As Neal points out, it's called after test_main(), so it's not going to factor into the test when run via regrtest.py (and removes the original functionality that Jeffrey wanted that would kill the test if it took longer than 3 seconds to run when executing it directly during development). by Trent Nelson · 17 years ago
  4. ac2ed1e Issue #2143: Fix embedded readline() hang on SSL socket EOF. by Sean Reifscheider · 17 years ago
  5. a5cfcad Prevent ioctl op codes from being sign extended from int to unsigned long by Gregory P. Smith · 17 years ago
  6. 48581c5 Make sure that the warnings filter is not reset or changed beyond the current by Brett Cannon · 17 years ago
  7. a0ce6b6 Bump the SIGALM delay from 3 seconds to 20 seconds, mainly in an effort to see if it fixes the alarm failures in this test experienced by some of the buildbots. by Trent Nelson · 17 years ago
  8. f15cde3 Improve the error message when the CRCs don't match. by Gregory P. Smith · 17 years ago
  9. 10dca6e The filter() function does support a None argument in Py3.0. by Raymond Hettinger · 17 years ago
  10. 0538786 Issue 2354: Fix-up compare warning. Patch contributed by Jeff Balogh. by Raymond Hettinger · 17 years ago
  11. 977eb02 Use sys.py3kwarning instead of trying to trigger a Py3k-related warning. by Brett Cannon · 17 years ago
  12. 7919d98 test_nis would fail if test.test_support.verbose was true but NIS was not set by Brett Cannon · 17 years ago
  13. 8ff4963 Trivial typo. by Eric Smith · 17 years ago
  14. e504445 Use test.test_support.captured_stdout instead of a custom contextmanager. by Eric Smith · 17 years ago
  15. 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
  16. 16b2e6b Import relimport using a relative import. by Martin v. Löwis · 17 years ago
  17. ab41b37 Merged revisions 61598-61599,61601 via svnmerge from by Martin v. Löwis · 17 years ago
  18. 5e37bae Import lib2to3. by Martin v. Löwis · 17 years ago
  19. a4d7789 Issue #2400: Allow relative imports to "import *". by Martin v. Löwis · 17 years ago
  20. bf02e3b Fix the struct module DeprecationWarnings that zipfile was triggering by by Gregory P. Smith · 17 years ago
  21. 14cae96 Another test for __future__ print_function. by Eric Smith · 17 years ago
  22. 2724ab9 Added zip, map, filter to future_bultins (#2171) by David Wolever · 17 years ago
  23. 5d5c63f Fixed compiler module so __future__ print_function is compilable. by Eric Smith · 17 years ago
  24. b89a096 Use zlib's crc32 routine instead of binascii when available. zlib's is faster by Gregory P. Smith · 17 years ago
  25. bde4007 Mention that crc32 and adler32 are available in a different module (zlib). by Gregory P. Smith · 17 years ago
  26. 7c47894 Backport of the print function, using a __future__ import. by Eric Smith · 17 years ago
  27. c856fa8 Add a test to make sure zlib.crc32 and binascii.crc32 return the same thing. by Gregory P. Smith · 17 years ago
  28. 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
  29. e8e22cf Have regrtest skip test_py3kwarn when the -3 flag is missing. by Steven Bethard · 17 years ago
  30. 0c1ef47 Import the test properly. This is especially important for py3k. by Neal Norwitz · 17 years ago
  31. 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
  32. 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
  33. 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
  34. 5fe5cf6 Get regrtest working when re-running tests by Neal Norwitz · 17 years ago
  35. 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
  36. 493894c Issue 1577: shutil.move() where destination is a directory was doing a by Sean Reifscheider · 17 years ago
  37. 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
  38. f084e04 Fix test_errno to only check for error numbers that are defined by Standard C. by Brett Cannon · 17 years ago
  39. 66e2663 Note that the stderr output of the test is intentional. by Martin v. Löwis · 17 years ago
  40. afb416b Add WSA errors. by Martin v. Löwis · 17 years ago
  41. 637f239 Add more Linux error codes. by Martin v. Löwis · 17 years ago
  42. d43ca3b norwitz-amd64 (gentoo) has EREMOTEIO. by Martin v. Löwis · 17 years ago
  43. 496ad27 The behaviour of winsound.Beep() seems to differ between different versions of Windows when there's either: by Trent Nelson · 17 years ago
  44. d1befd7 Add some info to the failure messages by Neal Norwitz · 17 years ago
  45. 36dbcb9 Add a -S/--slow flag to regrtest to have it print the 10 slowest tests with by Jeffrey Yasskin · 17 years ago
  46. 08811dd Improve the error message for a test that failed on the S-390 Debian buildbot. by Brett Cannon · 17 years ago
  47. 819f139 Try increasing the timeout to reduce the flakiness of this test. by Neal Norwitz · 17 years ago
  48. ed41465 Speed up test_dict by about 10x by only checking selected dict literal sizes, by Jeffrey Yasskin · 17 years ago
  49. a145853 Speed test_thread up from 51.328s to 0.081s by reducing its sleep times. We by Jeffrey Yasskin · 17 years ago
  50. 0bfc896 Block the "socket.ssl() is deprecated" warning from test_socket_ssl. by Jeffrey Yasskin · 17 years ago
  51. a5573b3 The output directory for tests that compare against stdout is now gone! by Brett Cannon · 17 years ago
  52. b7ec8e5 test_errno was a no-op test; now it actually tests things and uses unittest. by Brett Cannon · 17 years ago
  53. 0bb7950 Move test_extcall to doctest. by Brett Cannon · 17 years ago
  54. ba17cfc Convert test_dummy_threading and test_dbm to unittest. by Brett Cannon · 17 years ago
  55. 6eeaddc Convert test_strftime, test_getargs, and test_pep247 to use unittest. by Brett Cannon · 17 years ago
  56. 0aed07a Added PEP 3127 support to tokenize (with tests); added PEP 3127 to NEWS. by Eric Smith · 17 years ago
  57. f48f9d3 Force zlib.crc32 and zlib.adler32 to return a signed integer on all platforms by Gregory P. Smith · 17 years ago
  58. 9ff19b5 Finished backporting PEP 3127, Integer Literal Support and Syntax. by Eric Smith · 17 years ago
  59. b9e15f7 Make isinstance(OldstyleClass, NewstyleClass) return False instead of raising by Jeffrey Yasskin · 17 years ago
  60. 8113ca6 Issue 2264: empty float presentation type needs to have at least one digit past the decimal point. by Eric Smith · 17 years ago
  61. cd6bfab Zap one more use of Exact/Inexact. by Raymond Hettinger · 17 years ago
  62. 6b46762 Removed Exact/Inexact after discussion with Yasskin. by Raymond Hettinger · 17 years ago
  63. fc070d2 add %f format to datetime - issue 1158 by Skip Montanaro · 17 years ago
  64. c23b8a7 Issue 705836: Fix struct.pack(">f", 1e40) to behave consistently by Mark Dickinson · 17 years ago
  65. 6119540 Remove a bad test. by Brett Cannon · 17 years ago
  66. 1f5182b Convert test_fcntl to unittest. by Brett Cannon · 17 years ago
  67. 4a6e8d6 Move test_gdbm to use unittest. by Brett Cannon · 17 years ago
  68. 2e0f9f3 Convert test_contains, test_crypt, and test_select to unittest. by Brett Cannon · 17 years ago
  69. b8d3735 Move test_tokenize to doctest. by Brett Cannon · 17 years ago
  70. 66865d2 Move test_thread over to unittest. Commits GHOP 237. by Brett Cannon · 17 years ago
  71. 83aa6a3 Simplify the nlargest() code using heappushpop(). by Raymond Hettinger · 17 years ago
  72. 53bdf09 Issue 2274: Add heapq.heappushpop(). by Raymond Hettinger · 17 years ago
  73. e8b4b60 Add recipe to docs. by Raymond Hettinger · 17 years ago
  74. 0098c9d Introduce a lock to fix a race condition which caused an exception in the test. by Neal Norwitz · 17 years ago
  75. c54aec1 Issue 1106316. post_mortem()'s parameter, traceback, is now by Facundo Batista · 17 years ago
  76. 50967bd Add new name for Mandrake: Mandriva. by Marc-André Lemburg · 17 years ago
  77. 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
  78. e75f59a Progress on issue #1193577 by adding a polling .shutdown() method to by Jeffrey Yasskin · 17 years ago
  79. 38fb9be Tweak recipes and tests by Raymond Hettinger · 17 years ago
  80. a1ca94a Issue 2246: itertools grouper object did not participate in GC (should be backported). by Raymond Hettinger · 17 years ago
  81. ad47fa1 More tests. by Raymond Hettinger · 17 years ago
  82. 4286138 #2220: handle matching failure more gracefully. by Georg Brandl · 17 years ago
  83. a7bd27f #2225: return nonzero status code from py_compile if not all files could be compiled. by Georg Brandl · 17 years ago
  84. d2bbe52 Patch #2232: os.tmpfile might fail on Windows if the user has no by Martin v. Löwis · 17 years ago
  85. 1df0340 #1725737: ignore other VC directories other than CVS and SVN's too. by Georg Brandl · 17 years ago
  86. 66f91ea C implementation of itertools.permutations(). by Raymond Hettinger · 17 years ago
  87. f3c0559 Issue 1872: Changed the struct module typecode from 't' to '?', for by Thomas Heller · 17 years ago
  88. f28896d Fix test_socketserver on Windows after r61099 added several signal.alarm() by Jeffrey Yasskin · 17 years ago
  89. 48309d5 Make the timeout longer to give slow machines a chance to pass the test by Neal Norwitz · 17 years ago
  90. ce52788 Catch OSError when trying to remove a file in case removal fails. This by Neal Norwitz · 17 years ago
  91. 2180725 Get this test to pass even when there is no sound card in the system. by Neal Norwitz · 17 years ago
  92. 31e8893 Remove the files/dirs after closing the DB so the tests work on Windows. by Neal Norwitz · 17 years ago
  93. d21fb4c Issue#2238: some syntax errors from *args or **kwargs expressions by Amaury Forgeot d'Arc · 17 years ago
  94. a28df13 fix typo by Fred Drake · 17 years ago
  95. 4a50d26 Close the file before trying to remove the directory so it works on Windows. by Neal Norwitz · 17 years ago
  96. d553d85 Beef-up docs and tests for itertools. Fix-up end-case for product(). by Raymond Hettinger · 17 years ago
  97. 10ac19b Issue 2226: Callable checked for the wrong abstract method. by Raymond Hettinger · 17 years ago
  98. 972fb07 Remove dependency on itertools -- a simple genexp suffices. by Raymond Hettinger · 17 years ago
  99. d2f7680 Actually import itertools. by Georg Brandl · 17 years ago
  100. 26bc177 15 -> 16, the 2nd by Georg Brandl · 17 years ago