1. 2180c97 Document the rest of zlib.compressobj()'s arguments. by Nadeem Vawda · 12 years ago
  2. a425c3d Make lzma.{encode,decode}_filter_properties private. by Nadeem Vawda · 12 years ago
  3. fd8a838 Issue #14684: Add support for predefined compression dictionaries to the zlib module. by Nadeem Vawda · 12 years ago
  4. 0182f38 Fix small overeager edit from 8e47e9af826e. by Georg Brandl · 12 years ago
  5. 0b3847d Issue #15096: Drop support for the ur string prefix by Christian Heimes · 12 years ago
  6. 066dacf Add versionchanged tags for #14772 changes by Brian Curtin · 12 years ago
  7. 0d0a1de Fix #14772: Return the destination from some shutil functions. by Brian Curtin · 12 years ago
  8. 633c4d9 Issue #15064: Use with-blocks for some examples in docs. by Richard Oudkerk · 12 years ago
  9. ac38571 Issue #15064: Make BaseManager.__enter__() start server if necessary. by Richard Oudkerk · 12 years ago
  10. d69cfe8 Issue #15064: Implement context manager protocol for multiprocessing types by Richard Oudkerk · 12 years ago
  11. 5b1406f #14840: merge with 3.2. by Ezio Melotti · 12 years ago
  12. f90ea1f #14840: Add a bit on the difference between tuples and lists. Initial patch by Zachary Ware. by Ezio Melotti · 12 years ago
  13. 1e5d0ff Elaborate that sizeof only accounts for the object itself. by Martin v. Löwis · 12 years ago
  14. 9680bdb Issue #14814: Add first draft of PEP 3144 ipaddress module documentation (initial patch by Sandro Tosi) by Nick Coghlan · 12 years ago
  15. 0831382 Issue #15006: Allow equality comparison between naive and aware time by Alexander Belopolsky · 12 years ago
  16. ea0b823 Issue #14938: importlib.abc.SourceLoader.is_package() now takes the by Brett Cannon · 12 years ago
  17. 47b3239 Closes issue #14982: Document that pkgutil's walk_packages() and by Brett Cannon · 12 years ago
  18. c909296 Mention the UTF-16 encoding speedup in the whatsnew (issue #15026). by Antoine Pitrou · 12 years ago
  19. 3730a17 Issue #14059: Implement multiprocessing.Barrier by Richard Oudkerk · 12 years ago
  20. a6bc4b4 Issue #14933: fix misleading doc about weakref support in extension types. by Antoine Pitrou · 12 years ago
  21. 1377522 Issue #14933: fix misleading doc about weakref support in extension types. by Antoine Pitrou · 12 years ago
  22. 807770e Issue #15061: Don't oversell the capabilities of the new non-shortcircuiting comparison function in hmac by Nick Coghlan · 12 years ago
  23. c142bba Issue #1667546: On platforms supporting tm_zone and tm_gmtoff fields by Alexander Belopolsky · 12 years ago
  24. f6a899f Issue #15060: merge with 3.2 by Sandro Tosi · 12 years ago
  25. 27b130e Issue #15060: better fix, thanks to review on #python-dev by Sandro Tosi · 12 years ago
  26. 9994b09 Issue #15060: merge with 3.2 by Sandro Tosi · 12 years ago
  27. 56692f5 Issue #15060: fix typo in socket doc; Patch by anatoly techtonik by Sandro Tosi · 12 years ago
  28. 2b89fdf PEP 418: Rename adjusted attribute to adjustable in time.get_clock_info() result by Victor Stinner · 12 years ago
  29. bda4b88 time.get_clock_info() uses a namespace instead of structseq by Victor Stinner · 12 years ago
  30. f0604fd Issue #3518: Remove references to non-existent BaseManager.from_address() method by Richard Oudkerk · 12 years ago
  31. 4fae8cd Close #13857: Added textwrap.indent() function (initial patch by Ezra Berch) by Nick Coghlan · 12 years ago
  32. 3c4acd8 merge by Raymond Hettinger · 12 years ago
  33. 6fed9fd Fix indentation of method and attribute examples. by Raymond Hettinger · 12 years ago
  34. 911fd32 unittest.mock minor doc update by Michael Foord · 12 years ago
  35. f7c4158 Adding patch.stopall method to unittest.mock by Michael Foord · 12 years ago
  36. bfcb429 Expand examples for ChainMap(). Improve markup. by Raymond Hettinger · 12 years ago
  37. 7929cfb Note that the _asdict() method is outdated by Raymond Hettinger · 12 years ago
  38. a441514 Issue #2736: Added datetime.timestamp() method. by Alexander Belopolsky · 12 years ago
  39. cbc203e Merge from 3.2 by Nick Coghlan · 12 years ago
  40. a3a164a Nudge readers towards a more accurate mental model for loop else clauses by Nick Coghlan · 12 years ago
  41. a01f1ad Close #6203: Document that Python 3 sets LC_CTYPE at startup to the user's preferred locale encoding by Victor Stinner · 12 years ago
  42. f86a5e8 Close #11022: TextIOWrapper doesn't call locale.setlocale() anymore by Victor Stinner · 12 years ago
  43. 034d0aa Issue #14711: os.stat_float_times() has been deprecated. by Victor Stinner · 12 years ago
  44. e860404 Add a function lzma.open(), to match gzip.open() and bz2.open(). by Nadeem Vawda · 12 years ago
  45. 6cbb20c Allow LZMAFile to accept modes with a "b" suffix. by Nadeem Vawda · 12 years ago
  46. 33c34da Simplify usage of LZMAFile's fileobj support, like with BZ2File. by Nadeem Vawda · 12 years ago
  47. af518c1 Add a function bz2.open(), to match gzip.open(). by Nadeem Vawda · 12 years ago
  48. 50cb936 Clarify acceptable values for BZ2File.__init__'s mode argument. by Nadeem Vawda · 12 years ago
  49. aebcdba Make BZ2File's fileobj support easier to use. by Nadeem Vawda · 12 years ago
  50. 6872101 Add fileobj support to gzip.open(). by Nadeem Vawda · 12 years ago
  51. 9b10e1f A few documentation improvements, spurred on by Brett's review. by Barry Warsaw · 12 years ago
  52. c58c392 Trunk merge. by Barry Warsaw · 12 years ago
  53. 7d74eff Add usage note. by Raymond Hettinger · 12 years ago
  54. 409da15 Eric Snow's implementation of PEP 421. by Barry Warsaw · 12 years ago
  55. fe4dfd2 merge heads by Senthil Kumaran · 12 years ago
  56. 1251faf Issue 14989: http.server --cgi option can enable the CGI http server. by Senthil Kumaran · 12 years ago
  57. 0813168 Issue #14090: fix some minor C API problems in default branch (3.3) by Eli Bendersky · 12 years ago
  58. 11cfea9 Issue #14424: Document PyType_GenericAlloc, and fix the documentation of PyType_GenericNew by Eli Bendersky · 12 years ago
  59. 7f67133 backport c4bd68be5fc6 to 3.2 by Sandro Tosi · 12 years ago
  60. a894cbf merge with 3.2 by Sandro Tosi · 12 years ago
  61. 964f205 refer to time.strftime by Sandro Tosi · 12 years ago
  62. f4b26ef #14957: fix doc typo. by R David Murray · 12 years ago
  63. 554b348 #14957: fix doc typo. by R David Murray · 12 years ago
  64. c816290 Issue #14814: use print() function by Sandro Tosi · 12 years ago
  65. 5a0d439 #14957: clarify splitlines docs. by R David Murray · 12 years ago
  66. ae1b94b #14957: clarify splitlines docs. by R David Murray · 12 years ago
  67. c10584a Issue #14968: merge with 3.2 by Sandro Tosi · 12 years ago
  68. 3f7d1d3 Issue #14968: set 'Inplace Operators' as subsection; patch by Lars Buitinck by Sandro Tosi · 12 years ago
  69. 1bf2394 fix trailing whitespace by Eli Bendersky · 12 years ago
  70. 52467b1 Issue #14007: make XMLParser a real subclassable type exported from _elementtree. +cleanups by Eli Bendersky · 12 years ago
  71. b7a455f Typo fix by Nick Coghlan · 12 years ago
  72. 2722827 Additional ExitStack examples, and a few other cleanups for the ExitStack docs by Nick Coghlan · 12 years ago
  73. 01d7058 Merge heads. by Georg Brandl · 12 years ago
  74. 3539afd Update pydoc topics and fix new suspicious markup. by Georg Brandl · 12 years ago
  75. 48d358b Issue #14007: implemented the 'element_factory' feature of TreeBuilder in by Eli Bendersky · 12 years ago
  76. a0cf90e Close #14947: add missing cross-reference to Language Definition from the new dynamic type creation functions. Also cleaned up the general wording of the docs by Nick Coghlan · 12 years ago
  77. d648fa2 Fix #14943. Merge 3.2 by Brian Curtin · 12 years ago
  78. 13c7034 Fix #14943. Update the proper default value and list the proper argument names in the explanation. by Brian Curtin · 12 years ago
  79. abfc374 #10839: raise an error on add of duplicate unique headers in new email policies by R David Murray · 12 years ago
  80. aa88d32 Merged upstream changes. by Vinay Sajip · 12 years ago
  81. 4126a7d Added pyvenv docs to 'Python Setup and Usage' section. by Vinay Sajip · 12 years ago
  82. 87ea780 Use Python 3.x-style keyword only arg in Array() by Richard Oudkerk · 12 years ago
  83. 737b173 Issue 14814: Add namespaces keyword arg to find(*) methods in _elementtree. by Eli Bendersky · 12 years ago
  84. 7ef3ff3 #12515: email now registers a defect if the MIME end boundary is missing. by R David Murray · 12 years ago
  85. 80e0aee #1672568: email now registers defects for base64 payload format errors. by R David Murray · 12 years ago
  86. adbdcdb #14925: email now registers a defect for missing header/body separator. by R David Murray · 12 years ago
  87. e1398f7 #11785: fix the :mod: references in email package submodule titles. by R David Murray · 12 years ago
  88. 79cf3ba #11785: fix the :mod: references in email package submodule titles. by R David Murray · 12 years ago
  89. ea97668 Make headerregistry fully part of the provisional api. by R David Murray · 12 years ago
  90. 38e0e1e Fix markup. by Georg Brandl · 12 years ago
  91. d1a30c9 #8739: upgrade smtpd to RFC 5321 and 1870. by R David Murray · 12 years ago
  92. 53c9200 Issue #14814: Add a basic ipaddress tutorial (thanks to Sandro Tosi for the initial conversion from Peter Moody's wiki version) by Nick Coghlan · 12 years ago
  93. 039b01d Add missing versionadded. by Georg Brandl · 12 years ago
  94. d2d521e #665194: Add a localtime function to email.utils. by R David Murray · 12 years ago
  95. b526763 Merged upstream changes. by Vinay Sajip · 12 years ago
  96. 7ded1f0 Implemented PEP 405 (Python virtual environments). by Vinay Sajip · 12 years ago
  97. cb448cf #12586: Expand What's New email entry with provisional policy features. by R David Murray · 12 years ago
  98. 0b6f6c8 #12586: add provisional email policy with new header parsing and folding. by R David Murray · 12 years ago
  99. 0fa2edd #14731: add preliminary What's New entry for policy framework. by R David Murray · 12 years ago
  100. c27e522 #14731: refactor email policy framework. by R David Murray · 12 years ago