1. 7603fa0 Undo an accidental commit in r87812. by Brett Cannon · 14 years ago
  2. 63eef1e Get --coverage to be an acceptable flag for test.regrtest again. by Brett Cannon · 14 years ago
  3. 610e544 Further simplify gettmarg() by Alexander Belopolsky · 14 years ago
  4. 388af4b Typo. by Raymond Hettinger · 14 years ago
  5. 189c091 Drop bf_getbuffer/bf_releasebuffer from stable ABI, see #10181. by Martin v. Löwis · 14 years ago
  6. a572476 #10846: fix typo. by Georg Brandl · 14 years ago
  7. b30111f Support comment lines and missing indices in typeslots.h. by Martin v. Löwis · 14 years ago
  8. c83bc3c Remove buffer API from stable ABI for now, see #10181. by Martin v. Löwis · 14 years ago
  9. e85da7a Issue #7858: Raise an error properly when os.utime() fails under Windows by Antoine Pitrou · 14 years ago
  10. b715fac Issue #3839: wsgiref should not override a Content-Length header set by by Antoine Pitrou · 14 years ago
  11. f1397ad Issue #10655: Fix the build on PowerPC on Linux with GCC when building with by David Malcolm · 14 years ago
  12. ecbb8dc Use PyOS_snprintf for better portability. by Alexander Belopolsky · 14 years ago
  13. 0034281 Elaborate about the GIL. by Antoine Pitrou · 14 years ago
  14. f8dc9ca #10844: update copyright years in Mac plists. by Georg Brandl · 14 years ago
  15. f60fd00 Add acks where acks are due. by Georg Brandl · 14 years ago
  16. b30f330 Fix various issues (mostly Python 2 relics) found by Jacques Ducasse. by Georg Brandl · 14 years ago
  17. 77041b2 itertools, operator and functools are not really "numeric" modules; move them into their own "functional" chapter. by Georg Brandl · 14 years ago
  18. e98628d Remove doc for nonexisting parameter. by Georg Brandl · 14 years ago
  19. ca023ca Issue #1677694: Refactor and improve test_timeout. Original patch by by Antoine Pitrou · 14 years ago
  20. d53dfa3 Issue #10840: make it explicit that "s*" and friends provide contiguous memory. by Antoine Pitrou · 14 years ago
  21. 7beae8a Issue 10825: Minor updates to the test suite. by Raymond Hettinger · 14 years ago
  22. 90a4b31 Nits by Raymond Hettinger · 14 years ago
  23. 3df4621 Add PEP 3333 to whatsnew. by Raymond Hettinger · 14 years ago
  24. 4bd8172 Issue #10492: bdb.Bdb.run() only traces the execution of the code by Victor Stinner · 14 years ago
  25. 457ab06 test_atexit: fix code saving/restoring stdout and stderr by Victor Stinner · 14 years ago
  26. 73efd62 test_imaplib: reap_server() closes the server when done by Victor Stinner · 14 years ago
  27. 33e649c imaplib: IMAP4 constructor closes the socket on error by Victor Stinner · 14 years ago
  28. a686725 - time.accept2dyear = True is now equivalent to time.accept2dyear = 1 by Alexander Belopolsky · 14 years ago
  29. e40808a Add more porting notes. by Raymond Hettinger · 14 years ago
  30. dc51a3c Fix mistake in NEWS by Antoine Pitrou · 14 years ago
  31. 2a5fb47 Remove mention of codes pending further discussion on transform()/untransform(). by Raymond Hettinger · 14 years ago
  32. 2169ee2 RC1 updates to whatsnew by Raymond Hettinger · 14 years ago
  33. be41a48 On Py3k, -tt and -3 are no-op and unsupported respectively. by Georg Brandl · 14 years ago
  34. dfad7e3 Overhaul the documentation about socket timeouts. by Antoine Pitrou · 14 years ago
  35. 600232b Issue #7995: When calling accept() on a socket with a timeout, the returned by Antoine Pitrou · 14 years ago
  36. 7d96771 Update tests and whatsnew for the 'quiet' flag by Raymond Hettinger · 14 years ago
  37. 90e8f8c Fix count of flag fields. Being one short caused the 'quiet' option not to print. by Raymond Hettinger · 14 years ago
  38. 452196f Issue #5485: Add tests for the UseForeignDTD method of expat parser objects. by Antoine Pitrou · 14 years ago
  39. a83878e Issue #5485: Add doc for expat.xmlparser.SetParamEntityParsing. by Antoine Pitrou · 14 years ago
  40. 183fe81 #10130: Prepare for building epub-format docs. by Georg Brandl · 14 years ago
  41. 0691491 Fix duplicate end tag. by Georg Brandl · 14 years ago
  42. b996f74 test_time: assertEquals => assertEqual by Victor Stinner · 14 years ago
  43. 8786d3d Issue #10756: add the author, Andreas Stührk by Victor Stinner · 14 years ago
  44. c932b65 test_threading: use Popen.communicate() instead of .wait() by Victor Stinner · 14 years ago
  45. 4b2b43d regrtest: close the new stdout and restore the original stdout at exit by Victor Stinner · 14 years ago
  46. 358e11d Issue #10756: atexit normalizes the exception before displaying it. by Victor Stinner · 14 years ago
  47. 29e762c test_bytes: test PyBytes_FromFormat() using ctypes by Victor Stinner · 14 years ago
  48. aaa4e9a Remove arbitrary string length limits by Victor Stinner · 14 years ago
  49. 477efb3 #10790: make append work when output codec is different from input codec by R. David Murray · 14 years ago
  50. ca1e7ec test_unicode: use ctypes to test PyUnicode_FromFormat() by Victor Stinner · 14 years ago
  51. 1ec121d Fix test_time under Windows by Antoine Pitrou · 14 years ago
  52. 9d6f936 Issue #9566: PyUnicode_FromFormatV() doesn't support %zi, use %zd instead by Victor Stinner · 14 years ago
  53. ed7e222 Issue #9566: explain why (int)len cannot underflow by Victor Stinner · 14 years ago
  54. c998232 In subprocess, wrap pipe fds before launching the child. Hopefully this by Antoine Pitrou · 14 years ago
  55. 9bd4a24 Fix the new bug introduced in the r87710 fix for issue 6643. DummyThread by Gregory P. Smith · 14 years ago
  56. 3fb97ae Fix exception catching. by Georg Brandl · 14 years ago
  57. 5da468f Whitespace cleanup by Alexander Belopolsky · 14 years ago
  58. ecebdc7 Issue #8013: Fix time.ctime test failure on 32-bit platforms. by Alexander Belopolsky · 14 years ago
  59. b9588b5 Issue #8013: time.asctime and time.ctime no longer call system asctime by Alexander Belopolsky · 14 years ago
  60. 2427ab9 logging HOWTO: fixed markup for numbered handler list. by Vinay Sajip · 14 years ago
  61. dc55540 Issue #9015, #9611: stdprinter.write() clamps the length to 2^31-1 on Windows by Victor Stinner · 14 years ago
  62. 0fcab4a Issue #9566: use Py_ssize_t instead of int by Victor Stinner · 14 years ago
  63. 6ab8e82 Issue #8992: convertsimple() doesn't need to fill msgbuf if an error occurred by Victor Stinner · 14 years ago
  64. a093d0d Issue #8992: Simplify addcleanup() API by Victor Stinner · 14 years ago
  65. c3a51ec Issue #10819: SocketIO.name property returns -1 when its closed, instead of by Victor Stinner · 14 years ago
  66. 8848c7a Issue #8650: zlib.compress() and zlib.decompress() raise an OverflowError if by Victor Stinner · 14 years ago
  67. b3c9e07 Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file by Victor Stinner · 14 years ago
  68. e6edec2 Issue #9015, #9611: FileIO.readinto(), FileIO.write() and os.write() clamp the by Victor Stinner · 14 years ago
  69. 560f9da Issue #10267: Fix refleak in test_ttk_guionly. Patch by Hirokazu Yamamoto. by Antoine Pitrou · 14 years ago
  70. 04ba966 test_httplib: fix a DeprecationWarning, assertEquals=>assertEqual by Victor Stinner · 14 years ago
  71. 7a6a009 test_array: fix the DeprecationWarning('object.__init__() takes no parameters') by Victor Stinner · 14 years ago
  72. 23683ef Issue #10333: Remove ancient GC API, which has been deprecated since Python 2.2. by Antoine Pitrou · 14 years ago
  73. cae969e fix test_unittest: ignore DeprecationWarning on assertDictContainsSubset() by Victor Stinner · 14 years ago
  74. 47f14ba Un-complicate some code by Antoine Pitrou · 14 years ago
  75. dcdc3b4 Add some more output by Antoine Pitrou · 14 years ago
  76. c43ec08 Temporary debug output for intermittent failures in test_subprocess by Antoine Pitrou · 14 years ago
  77. 95aaeee Add a subprocess test of remapping standard file descriptors (issue #1187). by Antoine Pitrou · 14 years ago
  78. 4d41968 news for 6643 by Gregory P. Smith · 14 years ago
  79. 96c886c issue6643 - Two locks held within the threading module on each thread instance by Gregory P. Smith · 14 years ago
  80. 68530ac Mention --randseed in option list by Antoine Pitrou · 14 years ago
  81. 3c4402f Issue #6293: Have regrtest.py echo back sys.flags. This is done by default by Antoine Pitrou · 14 years ago
  82. 751ba4c Update description of Tools/unicode by Michael Foord · 14 years ago
  83. f3fcd9f Issue #7716: Under Solaris, don't assume existence of /usr/xpg4/bin/grep in by Antoine Pitrou · 14 years ago
  84. c9c83ba Issue #10806, issue #9905: Fix subprocess pipes when some of the standard by Antoine Pitrou · 14 years ago
  85. 63ebe1c Fix test_site for systems without unsetenv. Reported by Zsolt Cserna. by Éric Araujo · 14 years ago
  86. 32e1d83 Enable unittest.TestCase to be instantiated without providing a method name. by Michael Foord · 14 years ago
  87. faa8c13 test_subprocess: close pipes at the end of test_pipe_cloexec_real_tools() by Victor Stinner · 14 years ago
  88. a3abd1d pydoc: close the DocServer when done by Victor Stinner · 14 years ago
  89. 2b69506 Issue #10816: multiprocessing.SocketClient() closes the socket on error by Victor Stinner · 14 years ago
  90. 90efac7 Issue 10502: addition of unittestgui to Tools/ by Michael Foord · 14 years ago
  91. 1d5eb34 test_socket: use context managers to close directly the socket by Victor Stinner · 14 years ago
  92. a935e8f test_xmlrpc: close the transport when done by Victor Stinner · 14 years ago
  93. 270fe40 test_tkinter: use a context manager to close directly the pipe by Victor Stinner · 14 years ago
  94. 5c85e3f test_timeout: move testRecvfromTimeout() to a UDP-specific test case by Victor Stinner · 14 years ago
  95. 109761b test_sockserver: close servers when done by Victor Stinner · 14 years ago
  96. d218e95 Issue 10786: unittest documentation update. by Michael Foord · 14 years ago
  97. e33b7c6 Reverting the mistaken commit r87677. Checked in py3rsa.py by mistake. by Senthil Kumaran · 14 years ago
  98. 6993d57 py3k implmentation of RSA algorithm, by Senthil Kumaran · 14 years ago
  99. 1d1df82 Removes the 'Call' class which is used to control execution order and is unreliable on Windows by Brian Quinlan · 14 years ago
  100. ff72816 Supply a reduce method for pickling. by Raymond Hettinger · 14 years ago