1. 0d635ae merge heads by Martin v. Löwis · 12 years ago
  2. e9dfb0f Add another set of quotes to make cmd.exe happy. by Martin v. Löwis · 12 years ago
  3. 71f3f92 Fetch openssl directory from pyproject.vsprops. by Martin v. Löwis · 12 years ago
  4. f7a6615 #14823: Simplify threading.Lock.acquire argument discussion. by R David Murray · 12 years ago
  5. 9729fd4 #14692 Fix json docs to reflect changes in json.load by Hynek Schlawack · 12 years ago
  6. fb5b954 Forward port additional tests from 2.7 (issue #14829). by Antoine Pitrou · 12 years ago
  7. a103b96 Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32) under 64-bit Windows. by Antoine Pitrou · 12 years ago
  8. 5cdc630 Cleanup so subsequent tests won't fail. Needs to be moved into a support routine (see 14715). by Eric V. Smith · 12 years ago
  9. 28e68ea #1440472: reflow by R David Murray · 12 years ago
  10. ea1badb #1440472: Explain that email parser/generator isn't *quite* "idempotent" by R David Murray · 12 years ago
  11. 4d377d9 Issue #14777: In an X11 windowing environment, tkinter may return by Ned Deily · 12 years ago
  12. a790c9b Issue #14817: Add rudimentary tests for pkgutil.extend_path. by Eric V. Smith · 12 years ago
  13. 0ea91cb Issue12541 - Add UserWarning for unquoted realms by Senthil Kumaran · 12 years ago
  14. 34f3fcc Issue #12541: Be lenient with quotes around Realm field of HTTP Basic Authentation in urllib2. by Senthil Kumaran · 12 years ago
  15. 539f239 #14766: Reflow the altered paragraphs. by R David Murray · 12 years ago
  16. 9075d8b #14766: Add correct algorithm for when a 'time' object is naive. by R David Murray · 12 years ago
  17. 1f24548 bsddb never existed in 3.x, no need to keep downloading sleepycat by Brian Curtin · 12 years ago
  18. 072e4a3 Followup to issue #14157: respect the relative ordering of values produced by time.strptime(). by Antoine Pitrou · 12 years ago
  19. 2d82d04 Stop deleting non-existing bytecode files. by Martin v. Löwis · 12 years ago
  20. a1433fe Remove tab characters by Antoine Pitrou · 12 years ago
  21. 682d94c Use size_t, not ssize_t (issue #14801). by Antoine Pitrou · 12 years ago
  22. 87960da Upgrade bzip2 to 1.0.6. by Martin v. Löwis · 12 years ago
  23. e768b06 #14405: remove outdated/broken/duplicate links. by Ezio Melotti · 12 years ago
  24. ba3b0d8 Issue #14245: Improve floating-point entry in FAQ. Thanks Zbyszek Jędrzejewski-Szmek for some of the wording. by Mark Dickinson · 12 years ago
  25. b35480e #14770: improve the library FAQ. by Ezio Melotti · 12 years ago
  26. 3918b1e Issue #14793: fix grammar in bytes object paragraph; patch by Tshepang Lekhonkhobe by Sandro Tosi · 12 years ago
  27. 38b86b4 correctly define what 'fill' could be; thanks to Leland Hulbert from docs@ by Sandro Tosi · 12 years ago
  28. 5fddf86 Issue #14662: Prevent shutil failures on OS X when destination does not by Ned Deily · 12 years ago
  29. 1682e5d Issue #14157: Fix time.strptime failing without a year on February 29th. by Antoine Pitrou · 12 years ago
  30. a9494f6 Some nits in the pickle docs. by Antoine Pitrou · 12 years ago
  31. cc6c673 Removed outdated statement about pickle's and marshal's relative performance. by Antoine Pitrou · 12 years ago
  32. bf3165b #14763: document default maxsplit value for str.split. by Ezio Melotti · 12 years ago
  33. 7f0d888 Closes #14768: os.path.expanduser('~/a') doesn't works correctly when HOME is '/' by Jesus Cea · 12 years ago
  34. d576c71 Issue #14761: Fix potential leak on an error case in the import machinery. by Antoine Pitrou · 12 years ago
  35. b98b37f Improve the grammar of a non-sentence. by R David Murray · 12 years ago
  36. 89a6e9a fix possible refleak (closes #14752) by Benjamin Peterson · 12 years ago
  37. d9e4a41 Issue #14749: Add support for 'Z' to skipitem() in Python/getargs.c. by Larry Hastings · 12 years ago
  38. 3b66623 remove basically bitrotted XXXs by Benjamin Peterson · 12 years ago
  39. da029fb Issue #14741: Fix missing support for ellipsis in parser module. by Mark Dickinson · 12 years ago
  40. 11c1dee Issue #14697: Fix missing parser module support for set displays and set comprehensions. by Mark Dickinson · 12 years ago
  41. cf360b9 Issue #14701: Add missing support for 'raise ... from' in parser module. by Mark Dickinson · 12 years ago
  42. 640335c Fix issue number in Misc/NEWS. by Mark Dickinson · 12 years ago
  43. 0958a4d Fix document title for Sphinx. by Georg Brandl · 12 years ago
  44. 1b2e944 Issue #14965: Fix missing support for starred assignments in Tools/parser/unparse.py. by Mark Dickinson · 12 years ago
  45. 9ab3fdd #14034: fix indentation. by Ezio Melotti · 12 years ago
  46. 6cc7a41 #14034: added the argparse tutorial. Patch by Tshepang Lekhonkhobe. by Ezio Melotti · 12 years ago
  47. b4c8902 #13183: backport fixes to test_pdb to 3.2 branch by Georg Brandl · 12 years ago
  48. 7ef909c Fix for issue 14725 for 3.2 branch by Richard Oudkerk · 12 years ago
  49. 16f6f83 Fix test connecting to sha256.tbs-internet.com. by Antoine Pitrou · 12 years ago
  50. ab3da29 close() doesn't take any args (closes #14717) by Benjamin Peterson · 12 years ago
  51. 89282af Changed order of cleanup operations to be more sensible. by Vinay Sajip · 12 years ago
  52. 39687ee os.popen().close() returns None on success, not 0... by Charles-François Natali · 12 years ago
  53. e8a255a Issue #14698: Make test_posix more robust when the current UID doesn't have an by Charles-François Natali · 12 years ago
  54. cb17204 fix windows test failure - issue13183 by Senthil Kumaran · 12 years ago
  55. 7295c6a fix calling the classmethod descriptor directly (closes #14699) by Benjamin Peterson · 12 years ago
  56. 42d7081 issue13183 - Fix pdb skipping frames after hitting a breakpoint and running step. Patch by Xavier de Gaye by Senthil Kumaran · 12 years ago
  57. 2e20968 Issue #10433: Document unique behavior of 'os.getgroups' on Mac OS X. by Ned Deily · 12 years ago
  58. 3d6d7a5 #14558: document the module, argv, and testLoader args of unittest.main. by Ezio Melotti · 12 years ago
  59. 290416f Issue11352 - Update cgi module docs by Senthil Kumaran · 12 years ago
  60. e654c11 Issue #14433: Prevent msvcrt crash in interactive prompt when stdin is closed. by Martin v. Löwis · 12 years ago
  61. b8f02b5 fixed test_imaplib failure on Win by Alexander Belopolsky · 12 years ago
  62. 407b3bd Issue #14696: Fix parser module to understand 'nonlocal' declarations. by Mark Dickinson · 12 years ago
  63. 2420d83 Issue #10941: Fix imaplib.Internaldate2tuple to produce correct result near by Alexander Belopolsky · 12 years ago
  64. ea7e9f9 Issue #9154: Fix parser module to understand function annotations. by Mark Dickinson · 12 years ago
  65. 99a5638 Issue 14688: Fix typo by Raymond Hettinger · 12 years ago
  66. 3899283 #14236: fix docs for \S. by Ezio Melotti · 12 years ago
  67. a0b1d1e #14519: fix the regex used in the scanf example. by Ezio Melotti · 13 years ago
  68. b8e336b Fix markup in unittest doc. by Ezio Melotti · 13 years ago
  69. db727b4 Fix issue6085 - Remove the delay caused by fqdn lookup while logging in BaseHTTPRequestHandler by Senthil Kumaran · 13 years ago
  70. e990092 #14236: mention Unicode whitespace in \s documentation. by Ezio Melotti · 13 years ago
  71. 0a6b541 #14461: fix wording. by Ezio Melotti · 13 years ago
  72. 8dc5004 issue14427 - Document Request.get_header and Request.header_items by Senthil Kumaran · 13 years ago
  73. 7e70a5c httplib - minor update to check empty response by Senthil Kumaran · 13 years ago
  74. 9c29f86 httplib test for early eof response. related to Issue13684 by Senthil Kumaran · 13 years ago
  75. 285e51b #14155: add a note about \b. by Ezio Melotti · 13 years ago
  76. 100b889 Issue #14448: add reference to IANA timezone database; thanks to Georg/Nick suggestions by Sandro Tosi · 13 years ago
  77. b05ac86 Issue #14664: It is now possible to use @unittest.skip{If,Unless} on a test class that doesn't inherit from TestCase (i.e. a mixin). by Antoine Pitrou · 13 years ago
  78. c2ad0aa Fixed test to work on Windows. by Vinay Sajip · 13 years ago
  79. 66b8b08 Issue #14632: Updated WatchedFileHandler to deal with race condition. Thanks to John Mulligan for the problem report and patch. by Vinay Sajip · 13 years ago
  80. 1ef9eda Issue #14160: TarFile.extractfile() failed to resolve symbolic links by Lars Gustäbel · 13 years ago
  81. d11d0d6 Issue #14448: mention pytz; patch by Andrew Svetlov by Sandro Tosi · 13 years ago
  82. 3e29d93 Issue #14554: correct example for captured_stdout(); patch by Tshepang Lekhonkhobe by Sandro Tosi · 13 years ago
  83. e6c3462 Issue #13478: document timeit.default_timer() by Sandro Tosi · 13 years ago
  84. 08ccbf4 Issue #13587: use the right RFC2617 name for WWW-Authenticate; patch by Aaron Maenpaa by Sandro Tosi · 13 years ago
  85. 7b16687 don't use a slot wrapper from a different special method (closes #14658) by Benjamin Peterson · 13 years ago
  86. 790e005 #14640: Fix typos/syntax in pyporting.rst. by R David Murray · 13 years ago
  87. cfdba61 Issue #14641: minor fixes to sockets Howto; patch by Dionysios Kalofonos by Sandro Tosi · 13 years ago
  88. c43125a #14638: pydoc now treats non-str __name__ as None instead of raising by R David Murray · 13 years ago
  89. 88ec620 news for issue13684 by Senthil Kumaran · 13 years ago
  90. b12771a 3.2 - Fix for Issue13684 - httplib tunnel infinite loop by Senthil Kumaran · 13 years ago
  91. 2cc52ef add Mark Shannon by Benjamin Peterson · 13 years ago
  92. 7a436c5 sleep here by Benjamin Peterson · 13 years ago
  93. 37fc401 Close issue #14026 by better testing sys.argv handling in test_cmd_line_script (patch by Jason Yeo) by Nick Coghlan · 13 years ago
  94. a42665f issue2193 - Update 3.2 docs about legal characters allowed in Cookie name by Senthil Kumaran · 13 years ago
  95. bcc17ee Issue #14630: Fix an incorrect access of ob_digit[0] for a zero instance of an int subclass. by Mark Dickinson · 13 years ago
  96. 63674f4 Issue #14629: Raise SyntaxError in tokenizer.detect_encoding by Martin v. Löwis · 13 years ago
  97. 8e6e0fd Issue #14308: Fix an exception when a "dummy" thread is in the threading module's active list after a fork(). by Antoine Pitrou · 13 years ago
  98. 10ac77d Close #14032: fix incorrect variable reference in test_cmd_line_script by Nick Coghlan · 13 years ago
  99. 0780b6b #14538: HTMLParser can now parse correctly start tags that contain a bare /. by Ezio Melotti · 13 years ago
  100. cc19140 Remove webbrowser doc reference to the previously removed internet-config option. by Ned Deily · 13 years ago