1. bdaee3a Fix: Element.text is an attribute, not a method (report by Cameron Laird on docs@) by Georg Brandl · 11 years ago
  2. c2b17b2 Fix "customer timer" -> "custom timer" (reported by Kirk Strauser on docs@) by Georg Brandl · 11 years ago
  3. 53bf15a Fix ZeroDivisionError message (reported by Pavel Fedotov on docs@) by Georg Brandl · 11 years ago
  4. d4b9f92 Issue 14927: Remove a docstring line that is no longer applicable. by Raymond Hettinger · 11 years ago
  5. 8fe47c3 Minor clean-up of function parameters in random(). by Raymond Hettinger · 11 years ago
  6. 81a9315 Issue #19171: speed some cases of 3-argument long pow(). by Tim Peters · 11 years ago
  7. 7760b4e #19069: use imperative mood in float object docstrings. Patch by Marco Buttu. by Ezio Melotti · 11 years ago
  8. 488d244 #19068: use imperative mood in complex object docstrings. Patch by Marco Buttu. by Ezio Melotti · 11 years ago
  9. 5792ce1 #19067: use imperative mood in range object docstrings. Patch by Marco Buttu. by Ezio Melotti · 11 years ago
  10. 4e1f3d6 #19166: use an unused var in a test. Patch by Vajrasky Kok. by Ezio Melotti · 11 years ago
  11. cb1d96f Issue #18594: Make the C code more closely match the pure python code. by Raymond Hettinger · 11 years ago
  12. 5b22dd8 Close #19160: Inconsistent size for GIL release in hashlib by Jesus Cea · 11 years ago
  13. f5c499e Close #19160: Inconsistent size for GIL release in hashlib by Jesus Cea · 11 years ago
  14. 5c4b4c5 [issue19152] Revert 832579dbafd6. by Eric Snow · 11 years ago
  15. 48b42ec Fix typo. by Eric Snow · 11 years ago
  16. af8566c [issue19152] Add ExtensionFileLoader.get_filename(). by Eric Snow · 11 years ago
  17. efbc475 [issue19151] Fix docstring and use of _get_suppported_file_loaders() to reflect 2-tuples. by Eric Snow · 11 years ago
  18. 60b1834 Issue #19014: memoryview.cast() is now allowed on zero-length views. by Antoine Pitrou · 11 years ago
  19. def0a4c Issue #18037: 2to3 now escapes '\u' and '\U' in native strings. by Serhiy Storchaka · 11 years ago
  20. 2a8b3f2 Issue #19147: Fix docstring for fcntl.flock to refer to correct man section. by Ned Deily · 11 years ago
  21. 706f0f5 Drop buildbottouch again; the master is using "make touch" now. by Martin v. Löwis · 11 years ago
  22. 5184438 Issue #19137: The pprint module now correctly formats instances of set and by Serhiy Storchaka · 11 years ago
  23. 224c87d Issue #18594: Fix the fallback path in collections.Counter(). by Raymond Hettinger · 11 years ago
  24. 1a33b2f Close #19092: ExitStack now reraises exceptions from __exit__ by Nick Coghlan · 11 years ago
  25. 2ff2190 Issue #18594: Fix the fast path for collections.Counter(). by Raymond Hettinger · 11 years ago
  26. 21b2933 Minor doc fix in urllib.parse.rst by Senthil Kumaran · 11 years ago
  27. 3c678c3 Issue #12641: Avoid passing "-mno-cygwin" to the mingw32 compiler, except when necessary. by Antoine Pitrou · 11 years ago
  28. 1a67bee Add a "skull and crossbones" to Py_AddPendingCall. by Antoine Pitrou · 11 years ago
  29. 7ab8c87 Issue #19106: Add buildbottouch target. by Martin v. Löwis · 11 years ago
  30. bf52648 Issue #19106: Touch generated files to be 1s newer than their youngest source. by Martin v. Löwis · 11 years ago
  31. 600b735 Minor code improvement. Review comment by Eric V. Smith by Senthil Kumaran · 11 years ago
  32. f63d558 merge heads by Benjamin Peterson · 11 years ago
  33. a5ec63b remove unused imports by Benjamin Peterson · 11 years ago
  34. 860aee7 Properly initialize all fields of a SSL object after allocation. by Antoine Pitrou · 11 years ago
  35. 5176337 Issue #19130: mention historic VS 2008 build dir, too by Christian Heimes · 11 years ago
  36. 9c99cc0 Issue #19130: Correct PCbuild/readme.txt, Python 3.3 and 3.4 require VS 2010 by Christian Heimes · 11 years ago
  37. 8b3f5aa Issue #19112: avoid using function defined in method. by Richard Oudkerk · 11 years ago
  38. 72a9854 remove duplicate method (closes #19127) by Benjamin Peterson · 11 years ago
  39. 56b143d condense two tests with the same name (closes #19114) by Benjamin Peterson · 11 years ago
  40. cc6ef36 move helper function into its test method (closes #19112) by Benjamin Peterson · 11 years ago
  41. 52010b4 fix duplicate test names in test_dis (closes #19117) by Benjamin Peterson · 11 years ago
  42. f8ab760 remove duplicate test_mkd (closes #19118) by Benjamin Peterson · 11 years ago
  43. db0601f combine two tests to avoid duplicate names (closes #19116) by Benjamin Peterson · 11 years ago
  44. e8c8a59 fix duplicate test name (closes #19126) by Benjamin Peterson · 11 years ago
  45. 1eca062 fix test to run and test that smtpd does support ELHO (closes #19125) by Benjamin Peterson · 11 years ago
  46. 05ab702 remove duplicate test from test_import (closes #19122) by Benjamin Peterson · 11 years ago
  47. 643238e Issue #4366: Fix building extensions on all platforms when --enable-shared is used. by Antoine Pitrou · 11 years ago
  48. 3103631 fix duplicate test names (closes #19115) by Benjamin Peterson · 11 years ago
  49. 0300a8d Issue #18950: Fix miscellaneous bugs in the sunau module. by Serhiy Storchaka · 11 years ago
  50. d2c07a5 Issue #19053: ZipExtFile.read1() with non-zero argument no more returns empty by Serhiy Storchaka · 11 years ago
  51. 1f09c66 let this work with system Python 2.5 by Benjamin Peterson · 11 years ago
  52. eecdd77 fix my absurd spelling by Benjamin Peterson · 11 years ago
  53. 305e5aa don't scale compiler stack frames if the recursion limit is huge (closes #19098) by Benjamin Peterson · 11 years ago
  54. 369606d Issue #19028: Fixed tkinter.Tkapp.merge() for non-string arguments. by Serhiy Storchaka · 11 years ago
  55. 587b305 Closes #19043: remove detailed listing of versions from license files by Georg Brandl · 11 years ago
  56. ce34687 Fix comment in test_gdb by Nick Coghlan · 11 years ago
  57. 31f477c Issue #3015: Fixed tkinter with wantobject=False. Any Tcl command call by Serhiy Storchaka · 11 years ago
  58. c8bf95c Issue #18050: Fixed an incompatibility of the re module with Python 3.3.0 by Serhiy Storchaka · 11 years ago
  59. 2a97cee Correcting the mistake in 14ba90816930 by Senthil Kumaran · 11 years ago
  60. 4b49ae6 Merge #14984: only import pwd on POSIX. by R David Murray · 11 years ago
  61. 58bf8d2 Merge #14984: only import pwd on POSIX. by R David Murray · 11 years ago
  62. 505be21 #14984: only import pwd on POSIX. by R David Murray · 11 years ago
  63. 41a22f1 #19037: adjust file times *before* moving maildir files into place. by R David Murray · 11 years ago
  64. 825b50a Merge heads. by R David Murray · 11 years ago
  65. 0648bf7 - followup for issue #18997, make _clear_joined_ptr static. by doko@ubuntu.com · 11 years ago
  66. fb9dc0b Merge #14984: On POSIX, enforce permissions when reading default .netrc. by R David Murray · 11 years ago
  67. 8270a2c Merge #14984: On POSIX, enforce permissions when reading default .netrc. by R David Murray · 11 years ago
  68. 104aab9 #14984: On POSIX, enforce permissions when reading default .netrc. by R David Murray · 11 years ago
  69. dafea85 Issue #18873: The tokenize module, IDLE, 2to3, and the findnocoding.py script by Serhiy Storchaka · 11 years ago
  70. 975fce3 Issue #19029: Change non-existing since 3.0 StringType to str. by Serhiy Storchaka · 11 years ago
  71. a238914 Null merge of 3.2 into 3.3. by Tim Peters · 11 years ago
  72. 945a251 Null merge of 3.1 into 3.2 by Tim Peters · 11 years ago
  73. 46f5ca3 Issue #19018: The heapq.merge() function no longer suppresses IndexError by Raymond Hettinger · 11 years ago
  74. 0a32d92 Merge heads. by Ezio Melotti · 11 years ago
  75. 1bc6ceb #18206: Fix test for existence of license URL. by R David Murray · 11 years ago
  76. 0a9d051 merge with 3.2 by Georg Brandl · 11 years ago
  77. bc75046 Add a NEWS entry for b9b521efeba3. by Georg Brandl · 11 years ago
  78. c5884d8 Add NEWS entry for c18c18774e24. by Georg Brandl · 11 years ago
  79. c17a8df Fix tkinter regression introduced by the security fix in #16248. by Georg Brandl · 11 years ago
  80. db4309e Fix tkinter regression introduced by the security fix in #16248. by Georg Brandl · 11 years ago
  81. 87f0937 #18856: improve test coverage of the calendar module. Patch by Madison May. by Ezio Melotti · 11 years ago
  82. e7f4c1c #18981: fix a typo in a comment (noticed by Anoop Thomas Mathew). by Ezio Melotti · 11 years ago
  83. 560a778 #18951: use consistent names in unittest docs. by Ezio Melotti · 11 years ago
  84. 61f4cd1 Add Germán M. Bravo to Misc/ACKS by Eli Bendersky · 11 years ago
  85. dd3661e Issue #18997: fix ElementTree crash with using pickle and __getstate__. by Eli Bendersky · 11 years ago
  86. aa04f9a Issue #18945: Add tests for tempfile name collision handling. by Eli Bendersky · 11 years ago
  87. 72c238e Fix http.server's request handling case on trailing '/'. by Senthil Kumaran · 11 years ago
  88. 016af3f Issue #18784: The uuid module no more attempts to load libc via ctypes.CDLL, by Serhiy Storchaka · 11 years ago
  89. d184f66 Automated merge with file:///Users/skumaran/python/cpython by Senthil Kumaran · 11 years ago
  90. f8ce51a Improve the docstring of random.shuffle. Inform users not to provide int arg. by Senthil Kumaran · 11 years ago
  91. dd4754e Issue #18988: The "Tab" key now works when a word is already autocompleted. by Serhiy Storchaka · 11 years ago
  92. b918395 Clarify mmap.close method behavior. Addresses issue #18815 by Senthil Kumaran · 11 years ago
  93. b505a6a Document Fraction's numerator and denominator properties. Addresses issue #18800 by Senthil Kumaran · 11 years ago
  94. 51ef074 Docstring typo fix: Arithmentic -> Arithmetic. by Mark Dickinson · 11 years ago
  95. fb92f39 Issue 18752: Make chain.from_iterable() more visible in the documentation. by Raymond Hettinger · 11 years ago
  96. 1e21ebc Issue 18301: The classmethod decorator didn't fit well with the rough-equivalent example code. by Raymond Hettinger · 11 years ago
  97. c700180 Fix a typo. (closes #18953) by Serhiy Storchaka · 11 years ago
  98. dfa689b Fixed tests with Tcl/Tk <8.5 (closes #18964). by Serhiy Storchaka · 11 years ago
  99. 4fec47e Fix the dead link of IEEE_854-1987 standard with the Wikipedia entry. by Senthil Kumaran · 11 years ago
  100. 0494c2a Close #18952: correctly download test support data by Nick Coghlan · 11 years ago