1. d9b8dc2 Merge heads by Serhiy Storchaka · 10 years ago
  2. 4659cc0 Issue #22410: Module level functions in the re module now cache compiled by Serhiy Storchaka · 10 years ago
  3. 2b2852b Issue #22759: Query methods on pathlib.Path() (exists(), is_dir(), etc.) now return False when the underlying stat call raises NotADirectoryError. by Antoine Pitrou · 10 years ago
  4. ed14c86 Issue #8876: distutils now falls back to copying files when hard linking doesn't work. by Antoine Pitrou · 10 years ago
  5. 2acbae8 Issue #22173: Update lib2to3 tests to use unittest test discovery. by Zachary Ware · 10 years ago
  6. 75f7490 PYTHONY2K is long gone. Remove traces from the docs and manpage. by Georg Brandl · 10 years ago
  7. 788f2ad #22196: link to Enum in the nametuple documentation. Patch by Karmen Dykstra. by Ezio Melotti · 10 years ago
  8. 670e8ff #22237: fix patch attribution. by Ezio Melotti · 10 years ago
  9. 838f2c4 #18853: Fix resource warning in shlex's __main__ section. by R David Murray · 10 years ago
  10. 7570cbd #9351: set_defaults on subparser is no longer ignored if set on parent. by R David Murray · 10 years ago
  11. 685b349 #21991: make headerregistry params property MappingProxyType. by R David Murray · 10 years ago
  12. d696732 Issue #22653: Fix an assertion failure in debug mode when doing a reentrant dict insertion in debug mode. by Antoine Pitrou · 10 years ago
  13. baa6d3a Issue #22644: Update the Windows build to OpenSSL 1.0.1j by Zachary Ware · 10 years ago
  14. baf45c5 Issue #16000: Convert test_curses to use unittest by Zachary Ware · 10 years ago
  15. 1cbb3fe merge 3.3 (#22643) by Benjamin Peterson · 10 years ago
  16. e1bd38c fix integer overflow in unicode case operations (closes #22643) by Benjamin Peterson · 10 years ago
  17. fd39a89 Issue #22641: In asyncio, the default SSL context for client connections is now created using ssl.create_default_context(), for stronger security. by Antoine Pitrou · 10 years ago
  18. 0f4f048 Issue #22435: Fix a file descriptor leak when SocketServer bind fails. by Charles-François Natali · 10 years ago
  19. 817905b #13096: Fix segfault in CTypes POINTER handling of large values. by R David Murray · 10 years ago
  20. 18e8972 Bump to 3.3.6 by Georg Brandl · 10 years ago
  21. 9086f92 Issue #22604: Fix assertion error in debug mode when dividing a complex number by (nan+0j). by Antoine Pitrou · 10 years ago
  22. 64138c4 Issue 22603: add Francisco Fernández Castaño to ACKS. by Terry Jan Reedy · 10 years ago
  23. 3894b2a Issue #11694: Raise ConversionError in xdrlib as documented by Petri Lehtinen · 10 years ago
  24. b77983d Issue #21456: Skip two tests in test_urllib2net.py if _ssl module not present. by Berker Peksag · 10 years ago
  25. 0ddbf47 Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in exception tracebacks. by Antoine Pitrou · 10 years ago
  26. 2ce95d7 Merge from 3.4.2 release head back into 3.4 mainline. by Larry Hastings · 10 years ago
  27. adeb140 Post-release changes after 3.4.2 final. by Larry Hastings · 10 years ago
  28. dbb1261 Release bump for 3.4.2 final. by Larry Hastings · 10 years ago
  29. 1bf974d Closes #21173: Fix len() on a WeakKeyDictionary when .clear() was called with an iterator alive. by Antoine Pitrou · 10 years ago
  30. b186f1df #11866: Eliminate race condition in the computation of names for new threads. by R David Murray · 10 years ago
  31. e161849 Issue #21905: Avoid RuntimeError in pickle.whichmodule() when sys.modules is mutated while iterating. by Antoine Pitrou · 10 years ago
  32. fb8eaae Fixed issue number for issue #22470 in Misc/NEWS. by Serhiy Storchaka · 10 years ago
  33. 4b16818 Issue #22518: Fixed integer overflow issues in "backslashreplace", by Serhiy Storchaka · 10 years ago
  34. 76e73f8 Bump to 3.3.6rc1 by Georg Brandl · 10 years ago
  35. 2e37409 Issue #22518: Fixed integer overflow issues in "backslashreplace", by Serhiy Storchaka · 10 years ago
  36. 518e71b Issue #22219: The zipfile module CLI now adds entries for directories by Serhiy Storchaka · 10 years ago
  37. 5915b0f also use openssl envvars to find certs on windows (closes #22449) by Benjamin Peterson · 10 years ago
  38. cef3bdc - Issue #17219: Add library build dir for Python extension cross-builds. by doko@ubuntu.com · 10 years ago
  39. d486c43 - Issue #18096: Fix library order returned by python-config. by doko@ubuntu.com · 10 years ago
  40. 1de0ba2 Issue #20076: Added non derived UTF-8 aliases to locale aliases table. by Serhiy Storchaka · 10 years ago
  41. 99cb41d Issue #20079: Added locales supported in glibc 2.18 to locale alias table. by Serhiy Storchaka · 10 years ago
  42. d6b1769 Issue #22396: On 32-bit AIX platform, don't expose os.posix_fadvise() nor by Victor Stinner · 10 years ago
  43. 43030ee merge 3.3 (#22520) by Benjamin Peterson · 10 years ago
  44. 736b801 prevent overflow in unicode_repr (closes #22520) by Benjamin Peterson · 10 years ago
  45. c44eb73 merge 3.3 (#22517) by Benjamin Peterson · 10 years ago
  46. bbd0a32 clear BufferedRWPair weakrefs on deallocation (closes #22517) by Benjamin Peterson · 10 years ago
  47. 18f836f merge 3.3 (closes #22519) by Benjamin Peterson · 10 years ago
  48. 42ff105 fix overflow checking in PyBytes_Repr (closes #22519) by Benjamin Peterson · 10 years ago
  49. 2b76ce6 merge 3.3 (closes #22518) by Benjamin Peterson · 10 years ago
  50. 3bbb2e4 NEWS issue for #22518 by Benjamin Peterson · 10 years ago
  51. c31f12d check that exception messages are not empty (#22379) by Benjamin Peterson · 10 years ago
  52. 9ce6967 #10510: make distuitls upload/register use HTML standards compliant CRLF. by R David Murray · 10 years ago
  53. 21c8d5c Issue #16537: Check whether self.extensions is empty in setup.py. by Berker Peksag · 10 years ago
  54. ca534ab Issue #9850: Fixed macpath.join() for empty first component. Patch by by Serhiy Storchaka · 10 years ago
  55. 6c1f0ad Issue #17462: Add a paragraph about advantages of argparse over optparse. by Berker Peksag · 10 years ago
  56. 592ada9 asyncio: Improve canceled timer handles cleanup. Closes issue #22448. by Yury Selivanov · 10 years ago
  57. 5e193ac Issue #22427: TemporaryDirectory no longer attempts to clean up twice when by Serhiy Storchaka · 10 years ago
  58. b87630c Issue #21860: Correct docstrings of FileIO.seek() and FileIO.truncate() methods. by Berker Peksag · 10 years ago
  59. 46a3492 Issue #20912: Now directories added to ZIP file have correct Unix and MS-DOS by Serhiy Storchaka · 10 years ago
  60. cfbb394 Issue #21866: ZipFile.close() no longer writes ZIP64 central directory by Serhiy Storchaka · 10 years ago
  61. eb83ffe fix error in split() examples (closes #22459) by Benjamin Peterson · 10 years ago
  62. 14aa057 Fix formatting typo in Misc/NEWS. by Ned Deily · 10 years ago
  63. 2887f76 Merge. by Larry Hastings · 10 years ago
  64. f26c2e7 Post-release engineering work for 3.4.2rc1. by Larry Hastings · 10 years ago
  65. 964fcba Fixed issue #22415 number in Misc/NEWS for changeset e99a1df8db36. by Serhiy Storchaka · 10 years ago
  66. 44dae8b Issue #22423: Fixed debugging output of the GROUPREF_EXISTS opcode in the re by Serhiy Storchaka · 10 years ago
  67. 1a5426d Merge heads by Serhiy Storchaka · 10 years ago
  68. afe8d06 Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line buffering, rather than block buffering. by Antoine Pitrou · 10 years ago
  69. 52005c2 Issue #22423: Unhandled exception in thread no longer causes unhandled by Serhiy Storchaka · 10 years ago
  70. 03776e3 Bump version number for 3.4.2rc1 release. by Larry Hastings · 10 years ago
  71. 8a97896 #21091: make is_attachment a method. by R David Murray · 10 years ago
  72. 97dfad7 #21079: is_attachment now looks only at the value, ignoring parameters. by R David Murray · 10 years ago
  73. 96756b6 Issue #22247: Add NNTPError to nntplib.__all__. by Berker Peksag · 10 years ago
  74. fc4ead2 Issue #15661: Update OS X installer welcome and readme files for 3.4.2. by Ned Deily · 10 years ago
  75. cb0a006 Issue #4180: The warnings registries are now reset when the filters are modified. by Antoine Pitrou · 10 years ago
  76. 86c9e18 Merge from 3.3 by Senthil Kumaran · 10 years ago
  77. e025b52 Issue #22419: Limit the length of incoming HTTP request in wsgiref server to 65536 bytes. by Senthil Kumaran · 10 years ago
  78. 637e454 Lax cookie parsing in http.cookies could be a security issue when combined by Antoine Pitrou · 10 years ago
  79. 7d0b8f9 Lax cookie parsing in http.cookies could be a security issue when combined by Antoine Pitrou · 10 years ago
  80. 8fad167 Issue #22166: clear codec caches in test_codecs by Nick Coghlan · 10 years ago
  81. 9502487 Issue #22384: An exception in Tkinter callback no longer crashes the program by Serhiy Storchaka · 10 years ago
  82. 152dfd1 Issue #22168: Prevent turtle AttributeError with non-default Canvas on OS X. by Ned Deily · 10 years ago
  83. 42d67af Issue #21147: sqlite3 now raises an exception if the request contains a null by Serhiy Storchaka · 10 years ago
  84. abf68ce Issue #21951: Fixed a crash in Tkinter on AIX when called Tcl command with by Serhiy Storchaka · 10 years ago
  85. 0794088 Issue #21951: Use attemptckalloc() instead of ckalloc() in Tkinter. by Serhiy Storchaka · 10 years ago
  86. 31a3ec3 Issue #22338: Fix a crash in the json module on memory allocation failure. by Victor Stinner · 10 years ago
  87. 1486799 Issue #22369: Change "context manager protocol" to "context management protocol". by Serhiy Storchaka · 10 years ago
  88. 8f0a1d0 Issue #22226: Added private function _splitdict() in the Tkinter module. by Serhiy Storchaka · 10 years ago
  89. f54c350 Issue #19524: Fixed resource leak in the HTTP connection when an invalid by Serhiy Storchaka · 10 years ago
  90. be74668d NEWS items for Idle. by Terry Jan Reedy · 10 years ago
  91. 67fe046 NEWS items for turtledemo. by Terry Jan Reedy · 10 years ago
  92. 282124b Closes #22258: Fix the the internal function set_inheritable() on Illumos. by Victor Stinner · 10 years ago
  93. 0cff49f #22215: have the smtplib 'quit' command reset the state. by R David Murray · 10 years ago
  94. a64b92e Issue #22185: Fix an occasional RuntimeError in threading.Condition.wait() caused by mutation of the waiters queue without holding the lock. by Antoine Pitrou · 10 years ago
  95. 6685883 Issue #22182: Use e.args to unpack exceptions correctly in distutils.file_util.move_file. by Berker Peksag · 10 years ago
  96. feac398 The webbrowser module now uses subprocess's start_new_session=True rather by Gregory P. Smith · 10 years ago
  97. d00aff2 Issue #22236: Tkinter tests now don't reuse default root window. New root by Serhiy Storchaka · 10 years ago
  98. fcbc246 Issue #21166: Prevent possible segfaults and other random failures of by Ned Deily · 10 years ago
  99. 14ad531 Issue #22191: Fix warnings.__all__. by Brett Cannon · 10 years ago
  100. 7837376 Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. Initial patch by Sam Bull. by Senthil Kumaran · 10 years ago