1. 31efc74 Add Ariel to Misc/ACKS by Eli Bendersky · 12 years ago
  2. 14af64f #16154: merge with 3.3. by Ezio Melotti · 12 years ago
  3. 5a4b03d #16154: merge with 3.2. by Ezio Melotti · 12 years ago
  4. 4050792 #16154: fix some doctests in Doc/library. Patch by Ravi Sinha. by Ezio Melotti · 12 years ago
  5. fe8e6e7 #13899: \A, \Z, and \B now correctly match the A, Z, and B literals when used inside character classes (e.g. [A]). Patch by Matthew Barnett. by Ezio Melotti · 12 years ago
  6. 698bdb2 Issue #16076: make _elementtree.Element pickle-able in a way that is compatible by Eli Bendersky · 12 years ago
  7. 58ddc9d Issue #8109: The ssl module now has support for server-side SNI, thanks to a :meth:`SSLContext.set_servername_callback` method. by Antoine Pitrou · 12 years ago
  8. 3c9850a The get() and iter() are now able to accept keyword arguments. by Eli Bendersky · 12 years ago
  9. a873690 The get() and iter() are now able to accept keyword arguments. by Eli Bendersky · 12 years ago
  10. ef408ae Issue #16828: Fix error incorrectly raised by bz2.compress(b'') and bz2.BZ2Compressor.compress(b''). by Nadeem Vawda · 12 years ago
  11. 57cb81d Issue #16828: Fix error incorrectly raised by bz2.compress(''). by Nadeem Vawda · 12 years ago
  12. 638fb9b Issue #16828: Fix error incorrectly raised by bz2.compress(''). by Nadeem Vawda · 12 years ago
  13. 90e4774 Issue #16833: In http.client.HTTPConnection, do not concatenate the request headers and body when the payload exceeds 16 KB, since it can consume more memory for no benefit. by Antoine Pitrou · 12 years ago
  14. 13a2707 merge 3.3 by Benjamin Peterson · 12 years ago
  15. c527037 add Tom Tromey to ACKS by Benjamin Peterson · 12 years ago
  16. 1dce000 Merged `parser.clean()` fix (issue #16820) from 3.2 through 3.3. by Łukasz Langa · 12 years ago
  17. 0dc5ab4 Merged `parser.clean()` fix (issue #16820) from 3.2. by Łukasz Langa · 12 years ago
  18. c7ce3f7 added Wolfgang Scherer to acknowledgements by Łukasz Langa · 12 years ago
  19. 641bb66 Merged fix for #15803 from 3.2 through 3.3 by Łukasz Langa · 12 years ago
  20. 97eefc1 Merged fix for #15803 from 3.2 by Łukasz Langa · 12 years ago
  21. 3057469 Fixes issue #15803: incorrect `ConfigParser.items()` docstring by Łukasz Langa · 12 years ago
  22. ac10693 Issue #16688: Fix backreferences did make case-insensitive regex fail on non-ASCII strings. by Serhiy Storchaka · 12 years ago
  23. c1b59d4 Issue #16688: Fix backreferences did make case-insensitive regex fail on non-ASCII strings. by Serhiy Storchaka · 12 years ago
  24. 7737757 Issue #16443: Add docstrings to regular expression match objects. by Andrew Svetlov · 12 years ago
  25. 70dcef4 Issue #16443: Add docstrings to regular expression match objects. by Andrew Svetlov · 12 years ago
  26. 56ad5ed Issue #16443: Add docstrings to regular expression match objects. by Andrew Svetlov · 12 years ago
  27. 2909d6b merge with 3.3 by Brett Cannon · 12 years ago
  28. 73b969e Issue #16752: Add a missing import to modulefinder. by Brett Cannon · 12 years ago
  29. 5e48764 Add Ashish Nitin Patil for work on Issue #14901 by Brian Curtin · 12 years ago
  30. 0bb8d8c #16664: Add regression tests for glob's behaviour concerning "."-entries by Hynek Schlawack · 12 years ago
  31. 9ca5893 #16664: Add regression tests for glob's behaviour concerning "."-entries by Hynek Schlawack · 12 years ago
  32. dec59ec #16664: Add regression tests for glob's behaviour concerning "."-entries by Hynek Schlawack · 12 years ago
  33. 74d6c25 #11175: argparse.FileType now accepts encoding and errors arguments. by Petri Lehtinen · 12 years ago
  34. 3454339 Issue #16298: In HTTPResponse.read(), close the socket when there is no Content-Length and the incoming stream is finished. by Antoine Pitrou · 12 years ago
  35. d20e774 Issue #16298: In HTTPResponse.read(), close the socket when there is no Content-Length and the incoming stream is finished. by Antoine Pitrou · 12 years ago
  36. 084daa2 Issue #16298: In HTTPResponse.read(), close the socket when there is no Content-Length and the incoming stream is finished. by Antoine Pitrou · 12 years ago
  37. 6b2cbeb Issue #16421: allow to load multiple modules from the same shared object. by Andrew Svetlov · 12 years ago
  38. bb7da03 Merge fixes for #13614, #13512 and #7719 from 3.3 by Éric Araujo · 12 years ago
  39. 3f7c0e4 Merge fixes for #13614, #13512 and #7719 from 3.2 by Éric Araujo · 12 years ago
  40. 24457c9 Branch merge by Éric Araujo · 12 years ago
  41. 8b503c0 Fix setup.py register failure with invalid rst in description (#13614). by Éric Araujo · 12 years ago
  42. 62a0d6e Issue #16602: When a weakref's target was part of a long deallocation chain, the object could remain reachable through its weakref even though its refcount had dropped to zero. by Antoine Pitrou · 12 years ago
  43. d61926e Create ~/.pypirc securely (#13512). by Éric Araujo · 12 years ago
  44. d9569fa Drop double newlines printed in some file iteration examples. by Andrew Svetlov · 12 years ago
  45. a7129d3 Drop double newlines printed in some file iteration examples. by Andrew Svetlov · 12 years ago
  46. 09974b4 Drop double newlines printed in some file iteration examples. by Andrew Svetlov · 12 years ago
  47. 448e81b add fixer for reload() -> imp.reload() (closes #11797)\n\nPatch by Laurie Clark-Michalek and Berker Peksag by Benjamin Peterson · 12 years ago
  48. 17ad40e Have BSD 'make -s' do the right thing, thanks to Daniel Shahaf by Christian Heimes · 12 years ago
  49. f02f280 Add Bruno Dupuis by Benjamin Peterson · 12 years ago
  50. 401cf29 #16549: merge with 3.3. by Ezio Melotti · 12 years ago
  51. 1e86d01 #16549: merge with 3.2. by Ezio Melotti · 12 years ago
  52. 057bcb4 #16549: Make json.tool work again on Python 3 and add tests. Initial patch by Berker Peksag and Serhiy Storchaka. by Ezio Melotti · 12 years ago
  53. df204be Issue #16423: urllib.request now has support for ``data:`` URLs. by Antoine Pitrou · 12 years ago
  54. 195ad6c #16306: merge with 3.3. by Ezio Melotti · 12 years ago
  55. f7c709d #16306: merge with 3.2. by Ezio Melotti · 12 years ago
  56. 7c66319 #16306: Fix multiple error messages when unknown command line parameters where passed to the interpreter. Patch by Hieu Nguyen. by Ezio Melotti · 12 years ago
  57. b5b3714 Issue #12428: Add a pure Python implementation of functools.partial(). by Antoine Pitrou · 12 years ago
  58. e69bfc3 Issue #5765: Merge from 3.3 by Nick Coghlan · 12 years ago
  59. aab9c2b Issue #5765: Apply a hard recursion limit in the compiler by Nick Coghlan · 12 years ago
  60. 8c997fa Merge 3.3 by Éric Araujo · 12 years ago
  61. 8f423c9 Add examples for opener argument of open (#13424). by Éric Araujo · 12 years ago
  62. 4e0f36b #16152: merge with 3.3. by Ezio Melotti · 12 years ago
  63. fafa8b7 #16152: merge with 3.2. by Ezio Melotti · 12 years ago
  64. 2cc3b4b #16152: fix tokenize to ignore whitespace at the end of the code when no newline is found. Patch by Ned Batchelder. by Ezio Melotti · 12 years ago
  65. 6b97374 Issue #16284: Prevent keeping unnecessary references to worker functions in concurrent.futures ThreadPoolExecutor. by Andrew Svetlov · 12 years ago
  66. 69032c8 Issue #16309: Make PYTHONPATH= behavior the same as if PYTHONPATH not set at all. by Andrew Svetlov · 12 years ago
  67. bfa664c #12890: fix test on windows by R David Murray · 12 years ago
  68. cc4bacf #12890: fix test on windows by R David Murray · 12 years ago
  69. f138055 #14897: Enhance error messages of struct.pack and struct.pack_into by Petri Lehtinen · 12 years ago
  70. 4648b47 #14897: Enhance error messages of struct.pack and struct.pack_into by Petri Lehtinen · 12 years ago
  71. 92c28ca #14897: Enhance error messages of struct.pack and struct.pack_into by Petri Lehtinen · 12 years ago
  72. dcd34a6 merge #12890: don't emit <p> tags in text mode when logdir specified. by R David Murray · 12 years ago
  73. c4b8e05 merge #12890: don't emit <p> tags in text mode when logdir specified. by R David Murray · 12 years ago
  74. 252cd0e #12890: don't emit <p> tags in text mode when logdir specified. by R David Murray · 12 years ago
  75. 969684f Merge 3.3 by Hynek Schlawack · 12 years ago
  76. 254af26 #16307: Fix multiprocessing.Pool.map_async not calling its callbacks by Hynek Schlawack · 12 years ago
  77. 93653c4 #16210: merge with 3.3. by Ezio Melotti · 12 years ago
  78. e6c0f0d #16210: merge with 3.2. by Ezio Melotti · 12 years ago
  79. 837cd06 #16210: combine the two type() docs. Patch by Pete Sevander. by Ezio Melotti · 12 years ago
  80. ccc9e61 #16245: add a script to generate the html.entities.html5 dict. by Ezio Melotti · 12 years ago
  81. 950d5fd Issue #16241: document -X faulthandler command line option. by Andrew Svetlov · 12 years ago
  82. 5508412 Issue #16220: wsgiref now always calls close() on an iterable response. by Antoine Pitrou · 12 years ago
  83. ae247a5 Issue #16220: wsgiref now always calls close() on an iterable response. by Antoine Pitrou · 12 years ago
  84. 2365f41 Merge issue #9583: Document startup option/environment interaction. by Andrew Svetlov · 12 years ago
  85. abfc7df Issue #9583: Document startup option/environment interaction. by Andrew Svetlov · 12 years ago
  86. a514ea3 Merge issue #14900: Distuguish call count and primitive call count in pstat output. by Andrew Svetlov · 12 years ago
  87. 2ef4584 Issue #14900: Distuguish call count and primitive call count in pstat output. by Andrew Svetlov · 12 years ago
  88. 1a8db9c Fix typo in documentation for collections.ChainMap, thanks to Olivier Bernard from docs@ by Andrew Svetlov · 12 years ago
  89. e8801e2 MERGE: Closes #16112: platform.architecture does not correctly escape argument to /usr/bin/file by Jesus Cea · 12 years ago
  90. fc990e9 Closes #16112: platform.architecture does not correctly escape argument to /usr/bin/file by Jesus Cea · 12 years ago
  91. 491b6b7 MERGE: Fix Misc/ACKS alphabetic order by Jesus Cea · 12 years ago
  92. fb22f54 MERGE: Closes #15897: zipimport.c doesn't check return value of fseek() by Jesus Cea · 12 years ago
  93. 83451a2 Fix Misc/ACKS alphabetic order by Jesus Cea · 12 years ago
  94. 09bf7a7 Closes #15897: zipimport.c doesn't check return value of fseek() by Jesus Cea · 12 years ago
  95. c2085dd #15437, #15439: merge with 3.2. by Ezio Melotti · 12 years ago
  96. 56f37aa #15437, #15439: merge Doc/ACKS.txt with Misc/ACKS and modify Doc/about.rst accordingly. by Ezio Melotti · 12 years ago
  97. 7b9c48f MERGE: #15676: Proper attribution in Misc/ACKS by Jesus Cea · 12 years ago
  98. 3159cb5 #15676: Proper attribution in Misc/ACKS by Jesus Cea · 12 years ago
  99. 11946fb Issue #15841: The readable(), writable() and seekable() methods of BytesIO by Antoine Pitrou · 12 years ago
  100. 1d85745 Issue #15841: The readable(), writable() and seekable() methods of BytesIO by Antoine Pitrou · 12 years ago