1. dbf8344 Closes #18959: move optparse and imp to new "superseded modules" chapter by Georg Brandl · 10 years ago
  2. e8ea355 Closes #21687: delimiter in Py_SetPath is platform dependent by Georg Brandl · 10 years ago
  3. c5dd095 Closes #21675: fix ordering of description in library intro by Georg Brandl · 10 years ago
  4. 682124c prevent passing NULL to memcpy (closes #22605) by Benjamin Peterson · 10 years ago
  5. ad0c57f Issue #21986: Idle now matches interpreter in not pickling user code objects. by Terry Jan Reedy · 10 years ago
  6. 9086f92 Issue #22604: Fix assertion error in debug mode when dividing a complex number by (nan+0j). by Antoine Pitrou · 10 years ago
  7. a13dab4 Issue #15414: Clean and correct the os.path.join docs. by Zachary Ware · 10 years ago
  8. 64138c4 Issue 22603: add Francisco Fernández Castaño to ACKS. by Terry Jan Reedy · 10 years ago
  9. f9bd920 Issue 22603: add missing 'self'. Patch by Francisco Fernández Castaño. by Terry Jan Reedy · 10 years ago
  10. 3894b2a Issue #11694: Raise ConversionError in xdrlib as documented by Petri Lehtinen · 10 years ago
  11. 866c4e2 test_venv: use support.rmtree() instead of shutil.rmtree() to fix sporadic by Victor Stinner · 10 years ago
  12. b77983d Issue #21456: Skip two tests in test_urllib2net.py if _ssl module not present. by Berker Peksag · 10 years ago
  13. cfb2a0a Issue #22564: ssl doc: mention asyncio in the non-blocking section by Victor Stinner · 10 years ago
  14. d28fe8c Issue #22564: ssl doc: mention how SSLSocket are usually created by Victor Stinner · 10 years ago
  15. 3c3d3c7 Issue #22564: ssl doc: use "class" marker to document the SSLSocket class by Victor Stinner · 10 years ago
  16. 41f92c2 Issue #22564: ssl doc: document read(), write(), pending, server_side and by Victor Stinner · 10 years ago
  17. 851a6cc Issue #22564: ssl doc: fix typos by Victor Stinner · 10 years ago
  18. 4fe69ba Issue #20167: revise condition to accomodate message change. by Terry Jan Reedy · 10 years ago
  19. 5f16f90 #18176: Change generic UCD PropList link to version specific link. by R David Murray · 10 years ago
  20. 8675799 De-'colour'ize stdlib except for idlelib.configDialog. by Terry Jan Reedy · 10 years ago
  21. 5bd6242 #18176: fix another reference and add it to the makeunicodedata comment. by R David Murray · 10 years ago
  22. 7445a38 #18176: updated stdtypes UCD link, added reminder to makeunicodedata. by R David Murray · 10 years ago
  23. fc6a90a Issue #22588: Fix typo in _testcapi.test_incref_decref_API() by Victor Stinner · 10 years ago
  24. 484df00 Issue #22568: Fix compilation of posixmodule.c with Open Watcom: rename "utime" by Victor Stinner · 10 years ago
  25. 13d3aa5 Closes #22580: Fix documentation of PyUnicode_Tailmatch() by Victor Stinner · 10 years ago
  26. 92cb0a3 Issue 3068: Move idlelib.configDialog action button creation into a separate by Terry Jan Reedy · 10 years ago
  27. e2bd2a7 Issue #21715: Extracted shared complicated code in the _io module to new by Serhiy Storchaka · 10 years ago
  28. 0ddbf47 Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in exception tracebacks. by Antoine Pitrou · 10 years ago
  29. b2fdafe Issue #22576: Fix signatures of FTP.storbinary() and FTP.storlines() methods. by Berker Peksag · 10 years ago
  30. 2ce95d7 Merge from 3.4.2 release head back into 3.4 mainline. by Larry Hastings · 10 years ago
  31. adeb140 Post-release changes after 3.4.2 final. by Larry Hastings · 10 years ago
  32. deb7bf1 idlelib.configHandler: revise docstrings, add spaces, use False/True, add some by Terry Jan Reedy · 10 years ago
  33. 57fb11b use source role instead of linking to svn by Benjamin Peterson · 10 years ago
  34. 9205e9e Closes #16155: fix a few errors in doctest output of the FAQ pages. by Georg Brandl · 10 years ago
  35. 7fa4a8f Closes #12148: clarify "or's together option flags" in doctest docs. by Georg Brandl · 10 years ago
  36. 4dd27a3 Closes #21782: the default hash(x) is not exactly id(x) but derived from it. by Georg Brandl · 10 years ago
  37. a94ad1e Closes #10031: overhaul the "imports" section of the programming FAQ. by Georg Brandl · 10 years ago
  38. 2a3e396 Closes #21480: better explanation of "hg touch" in the Makefile. by Georg Brandl · 10 years ago
  39. f6d6dc2 Clean up the docs of PyObject_IsSubclass and PyObject_IsInstance, and mention that they call the PEP 3119 methods. by Georg Brandl · 10 years ago
  40. a920b6d Closes #22507: document that PyType_IsSubtype does not call __subclasscheck__. by Georg Brandl · 10 years ago
  41. eb7e8f6 Document builtin classes as such, not functions. by Georg Brandl · 10 years ago
  42. 9743516 Closes #22565: fix argument types of PyErr_WarnEx. by Georg Brandl · 10 years ago
  43. c6ad576 Issue #22546: update doc for mini-language float None presentation type. by Terry Jan Reedy · 10 years ago
  44. 1123aa2 Added tag v3.4.2 for changeset ab2c023a9432 by Larry Hastings · 10 years ago
  45. dbb1261 Release bump for 3.4.2 final. by Larry Hastings · 10 years ago
  46. c6256e5 Update pydoc topics and fix supsicious markup for 3.4.2 final. by Larry Hastings · 10 years ago
  47. 1c262a6 PyObject not PyType (closes #18494) by Benjamin Peterson · 10 years ago
  48. 1bf974d Closes #21173: Fix len() on a WeakKeyDictionary when .clear() was called with an iterator alive. by Antoine Pitrou · 10 years ago
  49. bed04a7 cleanup test_posix by Victor Stinner · 10 years ago
  50. 047b7ae Issue #22390: Remove files created by tests by Victor Stinner · 10 years ago
  51. 8f437aa Issue #22290: Fix error handling in the _posixsubprocess module. by Victor Stinner · 10 years ago
  52. 340c749 Closes #19477: remove outdated documentation of tp_print type object slot. by Georg Brandl · 10 years ago
  53. 9db487b #14201: Update ctypes docs to match behavior changed from 214b28d7a999. by R David Murray · 10 years ago
  54. b186f1df #11866: Eliminate race condition in the computation of names for new threads. by R David Murray · 10 years ago
  55. e161849 Issue #21905: Avoid RuntimeError in pickle.whichmodule() when sys.modules is mutated while iterating. by Antoine Pitrou · 10 years ago
  56. fb8eaae Fixed issue number for issue #22470 in Misc/NEWS. by Serhiy Storchaka · 10 years ago
  57. da5c571 Merge heads by Serhiy Storchaka · 10 years ago
  58. 2e37409 Issue #22518: Fixed integer overflow issues in "backslashreplace", by Serhiy Storchaka · 10 years ago
  59. 5c4fbd5 Realign packaging docs with PyPUG changes by Nick Coghlan · 10 years ago
  60. 518e71b Issue #22219: The zipfile module CLI now adds entries for directories by Serhiy Storchaka · 10 years ago
  61. bf92bce #14056: Small improvements to the tarfile documentation. by R David Murray · 10 years ago
  62. 91244e0 separate cert loading tests into Windows and non-Windows cases by Benjamin Peterson · 10 years ago
  63. 5915b0f also use openssl envvars to find certs on windows (closes #22449) by Benjamin Peterson · 10 years ago
  64. 7280561 Fix a few typo/grammar issues in the multiprocessing docs. by Zachary Ware · 10 years ago
  65. 32562d7 #12780: update inspect test skipIf for PEP 3147. by R David Murray · 10 years ago
  66. b48cb29 #8473: Add tests that doctest uses universal newlines in testfile. by R David Murray · 10 years ago
  67. 3f1ef9e Closes #18729: minor markup improvement. by Georg Brandl · 10 years ago
  68. 5294529 Closes #19434: fix copy-paste error in MIMENonMultipart docstring. by Georg Brandl · 10 years ago
  69. 4601df5 Issue #20079: Fixed tests. by Serhiy Storchaka · 10 years ago
  70. 9e04eda Issue #20079: Updated alias mapping to glibc 2.19 SUPPORTED file. by Serhiy Storchaka · 10 years ago
  71. b8cd8cf Issue #20076: Remove just added the sr_rs.utf8@latn alias because it is by Serhiy Storchaka · 10 years ago
  72. c0a8f8c closes #22528: add source links to symtable and compileall by Georg Brandl · 10 years ago
  73. 41ea1f4 Closes #19342: improve docstrings in grp module. by Georg Brandl · 10 years ago
  74. ea7ec2b Remove unused and now removed config value. by Georg Brandl · 10 years ago
  75. 6e978d2 Issue #21971: Index and update turtledemo doc. by Terry Jan Reedy · 10 years ago
  76. cef3bdc - Issue #17219: Add library build dir for Python extension cross-builds. by doko@ubuntu.com · 10 years ago
  77. d486c43 - Issue #18096: Fix library order returned by python-config. by doko@ubuntu.com · 10 years ago
  78. 1de0ba2 Issue #20076: Added non derived UTF-8 aliases to locale aliases table. by Serhiy Storchaka · 10 years ago
  79. 99cb41d Issue #20079: Added locales supported in glibc 2.18 to locale alias table. by Serhiy Storchaka · 10 years ago
  80. 1895f2b Issue 22492: Be explicit that print does not support binary mode files. by Terry Jan Reedy · 10 years ago
  81. 0428e6c Remove old overridden version of a Sphinx CSS file. by Georg Brandl · 10 years ago
  82. fd3a15a Make pydoctheme compatible with Sphinx 1.3 HTML output changes. by Georg Brandl · 10 years ago
  83. 9e883ca Update Idle news for 3.4.2 (and 3.4.1). by Terry Jan Reedy · 10 years ago
  84. 1d82a9c Issue #16537: Use the new *default* parameter of max(). by Berker Peksag · 10 years ago
  85. 14366f3 Fix overlooked conf.py setting in flattening of Doc directory. by Ned Deily · 10 years ago
  86. 6bd6860 #21739: mention subtle difference between loops and listcomps in tutorial. by R David Murray · 10 years ago
  87. e6edc03 #22512: move distutils rpm test's .rpmdb to testing tmpdir. by R David Murray · 10 years ago
  88. b6271f2 Issue 22465: grammar, number agreement. by Terry Jan Reedy · 10 years ago
  89. 97e9ec6 Move Doc/tools/sphinxext content to Doc/tools, there is no need for the nested subdirectory anymore. by Georg Brandl · 10 years ago
  90. 2b1a0a3 Dont define an empty SPHINXOPTS, which overrides a definition from the environment. by Georg Brandl · 10 years ago
  91. bae334c Prepare sphinx extensions for 1.3. by Georg Brandl · 10 years ago
  92. 45d929d add link to pdb source (closes #22528) by Benjamin Peterson · 10 years ago
  93. 68da8fc Issue #22448: asyncio, cleanup _run_once(), only iterate once to remove delayed by Victor Stinner · 10 years ago
  94. 5083828 faulthandler: test_gil_released() now uses _sigsegv() instead of _read_null(), by Victor Stinner · 10 years ago
  95. 9db521c faulthandler: _sigsegv() and _sigabrt() don't accept parameters by Victor Stinner · 10 years ago
  96. d6b1769 Issue #22396: On 32-bit AIX platform, don't expose os.posix_fadvise() nor by Victor Stinner · 10 years ago
  97. 43030ee merge 3.3 (#22520) by Benjamin Peterson · 10 years ago
  98. 736b801 prevent overflow in unicode_repr (closes #22520) by Benjamin Peterson · 10 years ago
  99. c44eb73 merge 3.3 (#22517) by Benjamin Peterson · 10 years ago
  100. bbd0a32 clear BufferedRWPair weakrefs on deallocation (closes #22517) by Benjamin Peterson · 10 years ago