1. e67c6c5 #14645: Generator now emits correct linesep for all parts. by R David Murray · 11 years ago
  2. 697e7ba Fix typo in Misc/NEWS entry. by Ezio Melotti · 11 years ago
  3. 1f38621 #11732: add a new suppress_crash_popup() context manager to test.support that disables crash popups on Windows and use it in test_ctypes. by Ezio Melotti · 11 years ago
  4. f9164e1 Fix doc grammar and line width by Eli Bendersky · 11 years ago
  5. 33e20d1 #17364: remove documentation for a function that does not exist. by Ezio Melotti · 11 years ago
  6. 1e7551d Reverting the changeset 5126e62c60af made for Issue #12921 by Senthil Kumaran · 11 years ago
  7. 3fb066d Fix Issue #12921: BaseHTTPServer's send_error should send the correct error by Senthil Kumaran · 11 years ago
  8. 44d5214 Issue #17278: Fix a crash in heapq.heappush() and heapq.heappop() when the list is being resized concurrently. by Antoine Pitrou · 11 years ago
  9. aaef344 #17346: make sure pickle tests are run against all protocols. Initial patch by Marius Gedminas. by Ezio Melotti · 11 years ago
  10. 7b39b9b Issue #13898: test_ssl no longer prints a spurious stack trace on Ubuntu. by Nadeem Vawda · 11 years ago
  11. fed69ba Fix markup in unittest doc. by Ezio Melotti · 11 years ago
  12. 136726c #17315: unlink a file that test_posixpath was leaving around. by Ezio Melotti · 11 years ago
  13. c6641db Add a link to the demo dir. by Ezio Melotti · 11 years ago
  14. 4d6cb0f Fix markup in unittest docs. by Ezio Melotti · 11 years ago
  15. 13fb979 Issue #16406: Combine the doc pages for uploading and registering to PyPI. by Chris Jerdonek · 11 years ago
  16. 1cb0cb2 #17296: backport fix for issue 1692335, naive exception pickling. by R David Murray · 11 years ago
  17. 5f79409 Issue #14720: Enhance sqlite3 microsecond conversion, document its behavior by Petri Lehtinen · 11 years ago
  18. 7aaa1ef Issue #17018: Make Process.join() retry if os.waitpid() fails with EINTR. by Richard Oudkerk · 11 years ago
  19. 8fd3669 Fix issue16932: Fix the urlparse example. Remote :port when scheme is not specified to demonstrate correct behavior by Senthil Kumaran · 11 years ago
  20. a5f13d2 Issue #1470548: Add test for fragment producing with XMLGenerator. by Serhiy Storchaka · 11 years ago
  21. 67bfe80 #17275: Fix class name in init errors in C bufferedio classes. by R David Murray · 11 years ago
  22. 0362b54 Revert "Issue #16121: Fix line number accounting in shlex" by Petri Lehtinen · 11 years ago
  23. 7a05113 Issue #16121: Fix line number accounting in shlex by Petri Lehtinen · 11 years ago
  24. 905b648 Issue #16403: Document how distutils uses the maintainer field in PKG-INFO by Petri Lehtinen · 11 years ago
  25. ee4a20b Issue #16695: Document how glob handles filenames starting with a dot by Petri Lehtinen · 11 years ago
  26. 9f74c6c Issue #8890: Stop advertising an insecure use of /tmp in docs by Petri Lehtinen · 11 years ago
  27. 8b94514 Issue #14720: sqlite3: Convert datetime microseconds correctly by Petri Lehtinen · 11 years ago
  28. ed909bc Issue #5033: Fix building of the sqlite3 extension module by Petri Lehtinen · 11 years ago
  29. 507eb09 #17217: fix UnicodeEncodeErrors errors in test_format by printing ASCII only. by Ezio Melotti · 11 years ago
  30. 1ca8794 #17249: check for the availability of the thread module. by Ezio Melotti · 11 years ago
  31. 29267c8 #17249: convert a test in test_capi to use unittest and reap threads. by Ezio Melotti · 11 years ago
  32. 739d549 #15438: add a note to math.pow() that suggests using **/pow() for integers. Patch by Mark Dickinson. by Ezio Melotti · 11 years ago
  33. ad17bc0 #17271: update example in tempfile docs. by Ezio Melotti · 11 years ago
  34. a19ebdb #17256: fix syntax highlight in embedding example. Patch by Kushal Das. by Ezio Melotti · 11 years ago
  35. d69ad55 Issue #17203: add long option names to unittest discovery docs. by Chris Jerdonek · 11 years ago
  36. 0f4377c #17255: test short-circuiting behavior of any()/all(). Patch by Wim Glenn. by Ezio Melotti · 11 years ago
  37. c510a04 Issue #17225: JSON decoder now counts columns in the first line starting by Serhiy Storchaka · 11 years ago
  38. a2964b3 Issue #17248: Fix os.*chown() testing when user is in root group. by Serhiy Storchaka · 11 years ago
  39. bcbc567 #17265: fix highlight in template example. Initial patch by Berker Peksag. by Ezio Melotti · 11 years ago
  40. b3d62ce Issue #17248: Fix os.*chown() testing when user has group root. by Serhiy Storchaka · 11 years ago
  41. 54db2fd Issue #15301: Enhance os.*chown() testing. Based on patch by Larry Hastings. by Serhiy Storchaka · 11 years ago
  42. 774a39f #13700: Make imap.authenticate with authobject work. by R David Murray · 11 years ago
  43. 6b30759 #7963: fix error message when 'object' called with arguments. by R David Murray · 11 years ago
  44. 1548ed6 Disable posixpath.realpath() tests on Windows (fix for issue #6975). by Serhiy Storchaka · 11 years ago
  45. 59f5dee Issue #13153: Tkinter functions now raise TclError instead of ValueError when by Serhiy Storchaka · 11 years ago
  46. 467393d Fix posixpath.realpath() for multiple pardirs (fixes issue #6975). by Serhiy Storchaka · 11 years ago
  47. 9acb9bc Fix issue #13169: Reimport MAXREPEAT into sre_constants.py. by Serhiy Storchaka · 11 years ago
  48. fa46816 Issue #9669: Protect re against infinite loops on zero-width matching in by Serhiy Storchaka · 11 years ago
  49. 70ca021 Issue #13169: The maximal repetition number in a regular expression has been by Serhiy Storchaka · 11 years ago
  50. b19ed57 #17178: update any()/all() docstrings to document their behavior with empty iterables. Patch by Ankur Ankan. by Ezio Melotti · 11 years ago
  51. 38b8254 Issue #17208: add a note about the termination behaviour of daemon threads. by Antoine Pitrou · 11 years ago
  52. 439bdb1 Add Misc/NEWS entry for Issue #16743 by Richard Oudkerk · 11 years ago
  53. 0d09ba8 Issue #16743: Fix mmap overflow check on 32 bit Windows by Richard Oudkerk · 11 years ago
  54. 7e01911 Issue #5308: Raise ValueError when marshalling too large object (a sequence by Serhiy Storchaka · 11 years ago
  55. 76a2ed1 Fix for issue #16800: Use buffered write to handle EINTR. by Serhiy Storchaka · 11 years ago
  56. f6b361e Issue #16800: tempfile.gettempdir() no longer left temporary files when by Serhiy Storchaka · 11 years ago
  57. e4ad8aa Issue #4591: Uid and gid values larger than 2**31 are supported now. by Serhiy Storchaka · 11 years ago
  58. 008deb7 Clean trailing whitespaces in Makefile.pre.in. by Serhiy Storchaka · 11 years ago
  59. ec317a8 #17171: fix email.encoders.encode_7or8bit when applied to binary data. by R David Murray · 11 years ago
  60. b3e8384 #17064: fix sporadic permission errors in test_mailbox on windows. by R David Murray · 11 years ago
  61. f78f5b1 Correction to issue 17052 fix by Michael Foord · 11 years ago
  62. 8fd396b Issue 17502: unittest discovery should use self.testLoader by Michael Foord · 11 years ago
  63. 6c22b1d Issue #17141: random.vonmisesvariate() no more hangs for large kappas. by Serhiy Storchaka · 11 years ago
  64. 5e61f14 Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError by Serhiy Storchaka · 11 years ago
  65. be5f919 Issue #17149: Fix random.vonmisesvariate to always return results in [0, 2*math.pi]. by Mark Dickinson · 11 years ago
  66. 497cee4 Fix a test for SpooledTemporaryFile (added in issue #10355). by Serhiy Storchaka · 11 years ago
  67. 88efc52 Issue #1470548: XMLGenerator now works with binary output streams. by Serhiy Storchaka · 11 years ago
  68. df32691 Issue #6975: os.path.realpath() now correctly resolves multiple nested symlinks on POSIX platforms. by Serhiy Storchaka · 11 years ago
  69. 4de7457 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 11 years ago
  70. b6ed173 Issue #17156: pygettext.py now uses an encoding of source file and correctly by Serhiy Storchaka · 11 years ago
  71. 041d553 #17166: fix _dummy_thread import example. by R David Murray · 11 years ago
  72. ceaa8b1 #16564: Fix regression in use of encoders.encode_noop with binary data. by R David Murray · 11 years ago
  73. d489c7a add proper dependencies on expat headers and sources by Christian Heimes · 11 years ago
  74. bbbbe8e Issue #10355: SpooledTemporaryFile properties now work for unrolled files. by Serhiy Storchaka · 11 years ago
  75. 4b109cb Minor fix of previous commit. by Serhiy Storchaka · 11 years ago
  76. 4f169a7 Issue #17147. Mention BytesIO in SpooledTemporaryFile documentation. by Serhiy Storchaka · 11 years ago
  77. 01ad622 Issue #16686: Fixed a lot of bugs in audioop module. by Serhiy Storchaka · 11 years ago
  78. a48b61f Issue #17161: make install now also installs a python3 man page. by Ned Deily · 11 years ago
  79. 1273dfc Fix accidental non-breakable spaces (U+00A0). by Serhiy Storchaka · 11 years ago
  80. f1319d8 Issue #6972: keep the warning about untrusted extraction and mention by Gregory P. Smith · 11 years ago
  81. d03f467 Addressing the review comment made by Terry Reedy by Senthil Kumaran · 11 years ago
  82. 3cf96ac Issue #17073: Fix some integer overflows in sqlite3 module. by Serhiy Storchaka · 11 years ago
  83. 3fd4ab3 Issue #17043: The unicode-internal decoder no longer read past the end of by Serhiy Storchaka · 11 years ago
  84. df4bb46 Issue #17118: Add new tests for testing Python-Tcl interaction. by Serhiy Storchaka · 11 years ago
  85. 8995300 Issue #17114: IDLE now uses non-strict config parser. by Serhiy Storchaka · 11 years ago
  86. c2255ac Fix test_from_dll* in test_returnfuncptrs.py. by Serhiy Storchaka · 11 years ago
  87. b98e96a Fix Issue17069: Document getcode method in urllib.request.rst by Senthil Kumaran · 11 years ago
  88. 1acaf0b #17142: fix apparent copy and paste error in test_all. by R David Murray · 11 years ago
  89. b5b9c8c Issue #16723: httplib.HTTPResponse no longer marked closed when the connection by Serhiy Storchaka · 11 years ago
  90. f581b37 #16948: Fix quopri encoding of non-latin1 character sets. by R David Murray · 11 years ago
  91. 43536e9 Issue #17089: Expat parser now correctly works with string input not only when by Serhiy Storchaka · 11 years ago
  92. 95b7110 #17091: update docstring for _thread.Lock.acquire. by R David Murray · 11 years ago
  93. db1ba4e Fix test_tools hangs on Windows. Patch by Jeremy Kloth. by Serhiy Storchaka · 11 years ago
  94. b3f194d Issue #16903: Popen.communicate() on Unix now accepts strings when by Serhiy Storchaka · 11 years ago
  95. 0b4591e Do not raise self.skipTest(). skipTest() already raises an exception. by Serhiy Storchaka · 11 years ago
  96. a66b46a Temporarily disable test_from_dll in test_returnfuncptrs.py for Windows. by Serhiy Storchaka · 11 years ago
  97. 19c4e0d Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTuple by Serhiy Storchaka · 11 years ago
  98. 64359d2 Update the embedded copy of the expat XML parser to 2.1.0. It brings by Gregory P. Smith · 12 years ago
  99. 94dc673 Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying by Serhiy Storchaka · 11 years ago
  100. 028915e Issue #16698: Skip posix test_getgroups when built with OS X by Ned Deily · 11 years ago