1. 5bdfd91 Remove out-of-date comment by Raymond Hettinger · 14 years ago
  2. d0ebc75 Fix mmap and test_mmap under Windows too (followup to r88022) by Antoine Pitrou · 14 years ago
  3. 3988ed8 Bump to 3.2rc1. by Georg Brandl · 14 years ago
  4. 5cc3dcb Update pydoc topics. by Georg Brandl · 14 years ago
  5. 85f4615 Issue #10916: mmap should not segfault when a file is mapped using 0 as by Antoine Pitrou · 14 years ago
  6. 4ce92b2 #10907: Warn OS X 10.6 IDLE users to use ActiveState Tcl/Tk 8.5, by Ned Deily · 14 years ago
  7. f1c7ca9 cgi: use isinstance(x, list) instead of type(x) == type([]) by Victor Stinner · 14 years ago
  8. 5c23b8e Issue #4953: cgi.FieldStorage and cgi.parse() parse the request as bytes, not by Victor Stinner · 14 years ago
  9. 1d87deb test_urlparse: add tests for encoding and errors arguments by Victor Stinner · 14 years ago
  10. ac71c54 Add encoding and errors arguments to urllib.parse_qs() and urllib.parse_qsl() by Victor Stinner · 14 years ago
  11. d958ea7 Issue 10899: Remove function type annotations from the stdlib by Raymond Hettinger · 14 years ago
  12. cbb8089 Issue #10899: Move function type annotations into docstrings. by Raymond Hettinger · 14 years ago
  13. 4d73b57 More PEP 8: no space around "=" in argument lists. by Georg Brandl · 14 years ago
  14. 00fa039 Issue 10899: Remove function type annotations from the stdlib by Raymond Hettinger · 14 years ago
  15. cd92f37 Issue 10899: Remove function type annotations from the stdlib by Raymond Hettinger · 14 years ago
  16. 3c94024 Issue #10899: No function type annotations in the standard library. by Raymond Hettinger · 14 years ago
  17. 1e28513 Fix test_bigaddrspace (some tests didn't trigger the expected MemoryError) by Antoine Pitrou · 14 years ago
  18. 98c62bd A better message again by Antoine Pitrou · 14 years ago
  19. e0d3f8a More informative skip message in @bigaddrspace by Antoine Pitrou · 14 years ago
  20. 9dd1171 Fix @bigmemtest when no limit is given by the user (oops) by Antoine Pitrou · 14 years ago
  21. aca5fa7 Make test skipping message nicer, and remove the rather useless "overhead" parameter. by Antoine Pitrou · 14 years ago
  22. 219c300 Remove the funky function annotation from numbers.py. by Raymond Hettinger · 14 years ago
  23. 45545f7 Fix the expected memory use of utf-8 encoding. Also, release the by Antoine Pitrou · 14 years ago
  24. b3d89a4 Remove function annotations that slipped into _abcoll. by Raymond Hettinger · 14 years ago
  25. 318b8f3 Issue #10822: Fix test_posix:test_getgroups failure under Solaris. Patch by Antoine Pitrou · 14 years ago
  26. 477ba91 don't segfault on deleting __abstractmethods__ #10892 by Benjamin Peterson · 14 years ago
  27. 5e8dada oops, wrong class by Benjamin Peterson · 14 years ago
  28. 1c02a44 move this test to test_descr; it's not abc specific by Benjamin Peterson · 14 years ago
  29. e993b10 Issue 10889: Support slicing and indexing of large ranges (no docs changes, since, as far as I know, we never said anywhere that this *didn't* work) by Nick Coghlan · 14 years ago
  30. 524359f Add comment. by Raymond Hettinger · 14 years ago
  31. ef4a03f Issue #5109: array.array constructor will now use fast code when by Alexander Belopolsky · 14 years ago
  32. 5cee47f Add entry for Barrier objects. by Raymond Hettinger · 14 years ago
  33. a3e8f3d Typo. by Eric Smith · 14 years ago
  34. 90be5fb Issue 10556: test_zipimport_support implicitly imports too many modules (including _ssl) to safely clobber sys.modules after each test by Nick Coghlan · 14 years ago
  35. a689241 This should fix mktime test on Windows by Alexander Belopolsky · 14 years ago
  36. 31c5dd6 Make mktime test more robust. by Alexander Belopolsky · 14 years ago
  37. b7d40d1 Issue #1726687: time.mktime() will now correctly compute value one by Alexander Belopolsky · 14 years ago
  38. a4815ca Issue #10872: The repr() of TextIOWrapper objects now includes the mode by Antoine Pitrou · 14 years ago
  39. d7e81cc #10874: test_urllib2 shouldn't use `is` operator for comparing strings by Łukasz Langa · 14 years ago
  40. efb6902 Add missing line. by Georg Brandl · 14 years ago
  41. 619e7ba #10869: do not visit root node twice in ast.increment_lineno(). by Georg Brandl · 14 years ago
  42. 5b2d9dd #5871: protect against header injection attacks. by R. David Murray · 14 years ago
  43. 5d938cb Add EHOSTUNREACH ('No route to host') to the errnos trapped by transient_internet(). by Antoine Pitrou · 14 years ago
  44. 160fd93 Fix test_ssl after r87849 by Antoine Pitrou · 14 years ago
  45. 67b212e Issue #10859: Make `contextlib.GeneratorContextManager` officially by Antoine Pitrou · 14 years ago
  46. 23f9fc3 Issue #10042: Fixed the total_ordering decorator to handle cross-type by Raymond Hettinger · 14 years ago
  47. f332abb test_ssl: test SHA256 using sha256.tbs-internet.com instead of sha2.hboeck.de by Victor Stinner · 14 years ago
  48. 301f121 Issue #1777412: Remove all limits on tm_year from time.strftime() by Victor Stinner · 14 years ago
  49. af5aee5 Issue #1777412: fix test_time for Mac OS X and OpenIndiana by Victor Stinner · 14 years ago
  50. 7369132 Issue #1777412: test large years value for strftime('%Y') by Victor Stinner · 14 years ago
  51. 73ea29c Issue #1777412: strftime() accepts year >= 1 instead of year >= 1900 by Victor Stinner · 14 years ago
  52. 0dd06f4 Fixed error handling branches. Thanks Victor Stinner for pointing this out. by Alexander Belopolsky · 14 years ago
  53. b8bb466 Issue #1777412: extended year range of strftime down to 1000. by Alexander Belopolsky · 14 years ago
  54. 9253214 #10686: recode non-ASCII headers to 'unknown-8bit' instead of ?s. by R. David Murray · 14 years ago
  55. 6f0022d Fix formatting of values with embedded newlines when rfc2047 encoding by R. David Murray · 14 years ago
  56. c64708a Issue #10827: Changed the rules for 2-digit years. The time.asctime by Alexander Belopolsky · 14 years ago
  57. 63eef1e Get --coverage to be an acceptable flag for test.regrtest again. by Brett Cannon · 14 years ago
  58. 610e544 Further simplify gettmarg() by Alexander Belopolsky · 14 years ago
  59. b715fac Issue #3839: wsgiref should not override a Content-Length header set by by Antoine Pitrou · 14 years ago
  60. e98628d Remove doc for nonexisting parameter. by Georg Brandl · 14 years ago
  61. ca023ca Issue #1677694: Refactor and improve test_timeout. Original patch by by Antoine Pitrou · 14 years ago
  62. 7beae8a Issue 10825: Minor updates to the test suite. by Raymond Hettinger · 14 years ago
  63. 4bd8172 Issue #10492: bdb.Bdb.run() only traces the execution of the code by Victor Stinner · 14 years ago
  64. 457ab06 test_atexit: fix code saving/restoring stdout and stderr by Victor Stinner · 14 years ago
  65. 73efd62 test_imaplib: reap_server() closes the server when done by Victor Stinner · 14 years ago
  66. 33e649c imaplib: IMAP4 constructor closes the socket on error by Victor Stinner · 14 years ago
  67. a686725 - time.accept2dyear = True is now equivalent to time.accept2dyear = 1 by Alexander Belopolsky · 14 years ago
  68. be41a48 On Py3k, -tt and -3 are no-op and unsupported respectively. by Georg Brandl · 14 years ago
  69. 600232b Issue #7995: When calling accept() on a socket with a timeout, the returned by Antoine Pitrou · 14 years ago
  70. 7d96771 Update tests and whatsnew for the 'quiet' flag by Raymond Hettinger · 14 years ago
  71. 452196f Issue #5485: Add tests for the UseForeignDTD method of expat parser objects. by Antoine Pitrou · 14 years ago
  72. b996f74 test_time: assertEquals => assertEqual by Victor Stinner · 14 years ago
  73. c932b65 test_threading: use Popen.communicate() instead of .wait() by Victor Stinner · 14 years ago
  74. 4b2b43d regrtest: close the new stdout and restore the original stdout at exit by Victor Stinner · 14 years ago
  75. 358e11d Issue #10756: atexit normalizes the exception before displaying it. by Victor Stinner · 14 years ago
  76. 29e762c test_bytes: test PyBytes_FromFormat() using ctypes by Victor Stinner · 14 years ago
  77. 477efb3 #10790: make append work when output codec is different from input codec by R. David Murray · 14 years ago
  78. ca1e7ec test_unicode: use ctypes to test PyUnicode_FromFormat() by Victor Stinner · 14 years ago
  79. 1ec121d Fix test_time under Windows by Antoine Pitrou · 14 years ago
  80. c998232 In subprocess, wrap pipe fds before launching the child. Hopefully this by Antoine Pitrou · 14 years ago
  81. 9bd4a24 Fix the new bug introduced in the r87710 fix for issue 6643. DummyThread by Gregory P. Smith · 14 years ago
  82. 3fb97ae Fix exception catching. by Georg Brandl · 14 years ago
  83. ecebdc7 Issue #8013: Fix time.ctime test failure on 32-bit platforms. by Alexander Belopolsky · 14 years ago
  84. b9588b5 Issue #8013: time.asctime and time.ctime no longer call system asctime by Alexander Belopolsky · 14 years ago
  85. c3a51ec Issue #10819: SocketIO.name property returns -1 when its closed, instead of by Victor Stinner · 14 years ago
  86. 8848c7a Issue #8650: zlib.compress() and zlib.decompress() raise an OverflowError if by Victor Stinner · 14 years ago
  87. b3c9e07 Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file by Victor Stinner · 14 years ago
  88. 560f9da Issue #10267: Fix refleak in test_ttk_guionly. Patch by Hirokazu Yamamoto. by Antoine Pitrou · 14 years ago
  89. 04ba966 test_httplib: fix a DeprecationWarning, assertEquals=>assertEqual by Victor Stinner · 14 years ago
  90. 7a6a009 test_array: fix the DeprecationWarning('object.__init__() takes no parameters') by Victor Stinner · 14 years ago
  91. cae969e fix test_unittest: ignore DeprecationWarning on assertDictContainsSubset() by Victor Stinner · 14 years ago
  92. 47f14ba Un-complicate some code by Antoine Pitrou · 14 years ago
  93. dcdc3b4 Add some more output by Antoine Pitrou · 14 years ago
  94. c43ec08 Temporary debug output for intermittent failures in test_subprocess by Antoine Pitrou · 14 years ago
  95. 95aaeee Add a subprocess test of remapping standard file descriptors (issue #1187). by Antoine Pitrou · 14 years ago
  96. 96c886c issue6643 - Two locks held within the threading module on each thread instance by Gregory P. Smith · 14 years ago
  97. 68530ac Mention --randseed in option list by Antoine Pitrou · 14 years ago
  98. 3c4402f Issue #6293: Have regrtest.py echo back sys.flags. This is done by default by Antoine Pitrou · 14 years ago
  99. c9c83ba Issue #10806, issue #9905: Fix subprocess pipes when some of the standard by Antoine Pitrou · 14 years ago
  100. 63ebe1c Fix test_site for systems without unsetenv. Reported by Zsolt Cserna. by Éric Araujo · 14 years ago