1. c135fa4 Fix last remaining build issues of _ssl under old OpenSSLs. Patch by Vinay. by Antoine Pitrou · 13 years ago
  2. 7b77188 Create _attr/_attrNS lazily. by Martin v. Löwis · 13 years ago
  3. 14aa280 Use __slots__ throughout instead of __dict__, to reduce the memory usage. by Martin v. Löwis · 13 years ago
  4. 32ac92c Issue #13605: merge with 3.2 by Sandro Tosi · 13 years ago
  5. 0467686 Issue #13605: use print() in argparse nargs example by Sandro Tosi · 13 years ago
  6. b900d6a initialize __dict__ if needed by Benjamin Peterson · 13 years ago
  7. 488a56d merge with 3.2 by Sandro Tosi · 13 years ago
  8. f06d444 don't split 'Hye-Shik Chang' name; thanks to Sergey from docs@ by Sandro Tosi · 13 years ago
  9. 1ee86a1 merge with 3.2 by Sandro Tosi · 13 years ago
  10. 76dea27 Indent 'File' in memoryview example, so it is correctly highlighted by Sandro Tosi · 13 years ago
  11. 2cf936f use defaults by Benjamin Peterson · 13 years ago
  12. 84e821e merge 3.2 by Benjamin Peterson · 13 years ago
  13. 496c53d use Py_CLEAR by Benjamin Peterson · 13 years ago
  14. 01d7eba allow arbitrary attributes on classmethod and staticmethod (closes #14051) by Benjamin Peterson · 13 years ago
  15. dc1d3ed MERGE: Test for issue #13500 by Jesus Cea · 13 years ago
  16. fbc6f94 Test for issue #13500 by Jesus Cea · 13 years ago
  17. 14ed7f2 Test for issue #13500 by Jesus Cea · 13 years ago
  18. b5d2710 merge with 3.2 by Sandro Tosi · 13 years ago
  19. c33ae06 fix error in memoryview example; thanks to kan lianlian from docs@ by Sandro Tosi · 13 years ago
  20. 3ccc918 Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServer by Charles-François Natali · 13 years ago
  21. cd96b4f Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServer by Charles-François Natali · 13 years ago
  22. ec1712a Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServer by Charles-François Natali · 13 years ago
  23. 93abdd1 Merge with 3.2 closes 14023 by Terry Jan Reedy · 13 years ago
  24. ead1de2 Issue 14023 Revert edit to 2.7 version. (I suspect edit is from when we thought by Terry Jan Reedy · 13 years ago
  25. c48cfe3 #14020: merge with 3.2. by Ezio Melotti · 13 years ago
  26. 4279bc7 #14020: improve HTMLParser documentation. by Ezio Melotti · 13 years ago
  27. aa2c670 Merge branch '3.2' by Petri Lehtinen · 13 years ago
  28. c86d9e2 Fix a variable scoping error in an sqlite3 test by Petri Lehtinen · 13 years ago
  29. a9bf2ac Try to really fix compilation failures of the _ssl module under very old OpenSSLs. by Antoine Pitrou · 13 years ago
  30. f1fd388 Branch merge by Éric Araujo · 13 years ago
  31. 2180ee6 Fix code I unwittingly broke in b0e2d6592a1f (#14038) by Éric Araujo · 13 years ago
  32. 082f177 Fix importlib.test.__main__ to only worry about command-line flags when directly executed. by Brett Cannon · 13 years ago
  33. f2e8675 Optimize importlib's case-sensitivity check by wasting as little time as possible under case-sensitive OSs. by Brett Cannon · 13 years ago
  34. 1f14beb Have importlib.test use argparse instead of some hacked up solution. by Brett Cannon · 13 years ago
  35. ba17fe2 Have importlib use os.replace() for atomic renaming. by Brett Cannon · 13 years ago
  36. 4fcad3c Change the python3 hardlink to a symlink, and correct some misuse of the PYTHON var in the makefile by Nick Coghlan · 13 years ago
  37. e9fccb3 Fix compilation when SSL_OP_SINGLE_ECDH_USE isn't defined by Antoine Pitrou · 13 years ago
  38. f58d45c Tweak the handling of the empty string in sys.path for importlib. by Brett Cannon · 13 years ago
  39. 22e7c88 Merge by Brett Cannon · 13 years ago
  40. 3b1a06c importlib.__import__() now raises ValueError when level < 0. by Brett Cannon · 13 years ago
  41. 1639505 fix the _namespace_map cleanup for cElementTree tests. by Florent Xicluna · 13 years ago
  42. e59a306 The C accelerator was not always imported for cElementTree's tests. (there's still an issue with --huntrleaks switch) by Florent Xicluna · 13 years ago
  43. 17f1be6 Merge branch '3.2' by Petri Lehtinen · 13 years ago
  44. b389022 sqlite3: Fix documentation errors concerning Cursor.rowcount by Petri Lehtinen · 13 years ago
  45. 8e3926a Merge. by Charles-François Natali · 13 years ago
  46. 4a72ebe Issue #13878: Fix random test_sched failures. by Charles-François Natali · 13 years ago
  47. f670ca5 Issue #13878: Fix random test_sched failures. by Charles-François Natali · 13 years ago
  48. 7fab676 Refactor importlib.__import__() and _gcd_import() to facilitate using by Brett Cannon · 13 years ago
  49. e8c5fdb Add test for packaging.util.set_platform (#13974). by Éric Araujo · 13 years ago
  50. 292f9a8 make TestAccelerator[Not]Imported for ElementTree more robust by Eli Bendersky · 13 years ago
  51. 66e6f8e Disabling a test that fails on some bots. Will investigate the failure soon by Eli Bendersky · 13 years ago
  52. 18aec4c merge. by Gregory P. Smith · 13 years ago
  53. 5b791fb Issue #2489: Fix bug in _copy loop that could consume 100% cpu on EOF. by Gregory P. Smith · 13 years ago
  54. a124a68 don't use assertSameElements. by Gregory P. Smith · 13 years ago
  55. 58e7c1d NEWS entry for previous commit. by Gregory P. Smith · 13 years ago
  56. 05f5953 Issue #2489: Fix bug in _copy loop that could consume 100% cpu on EOF. by Gregory P. Smith · 13 years ago
  57. da57819 in the tests of ElementTree, verify that the C accelerator is imported or not imported as expected by Eli Bendersky · 13 years ago
  58. 4aec776 (Merge 3.2) Issue #13913: Another fix test_pep3120 for the UTF-8 codec name by Victor Stinner · 13 years ago
  59. 5c724a8 Issue #13913: Another fix test_pep3120 for the UTF-8 codec name by Victor Stinner · 13 years ago
  60. cd77815 Issue #11836: document and expose multiprocessing.SimpleQueue by Sandro Tosi · 13 years ago
  61. 5cb522c Issue #11836: document multiprocessing.queues.SimpleQueue by Sandro Tosi · 13 years ago
  62. 23357eb Merge by Antoine Pitrou · 13 years ago
  63. 91a8741 Merge by Antoine Pitrou · 13 years ago
  64. 04d4ee4 Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert(). by Antoine Pitrou · 13 years ago
  65. 10e467c (Merge 3.2) Issue #13913: Fix test_pep3120 for the UTF-8 codec name by Victor Stinner · 13 years ago
  66. 2f5a163 Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert(). by Antoine Pitrou · 13 years ago
  67. 1303298 Issue #13913: Fix test_pep3120 for the UTF-8 codec name by Victor Stinner · 13 years ago
  68. be2cf33 Merge branch '3.2' by Petri Lehtinen · 13 years ago
  69. 1ca9395 Issue #13491: Fix many errors in sqlite3 documentation by Petri Lehtinen · 13 years ago
  70. 482ee66 Issue #7644: Add tests for the file argument of NNTP.head() and NNTP.body(). by Antoine Pitrou · 13 years ago
  71. 2640b52 Issue #7644: Add tests for the file argument of NNTP.head() and NNTP.body(). by Antoine Pitrou · 13 years ago
  72. 43df889 Fix for packaging test failure on shared builds (#1326113) by Éric Araujo · 13 years ago
  73. a76eff7 Merge fix from 3.2 by Éric Araujo · 13 years ago
  74. 2a57a36 Fix test failure for shared builds caused by #1326113 fix by Éric Araujo · 13 years ago
  75. 4575afc Fix parsing of packaging’s build_ext --libraries option (#1326113) by Éric Araujo · 13 years ago
  76. 1d175f7 Merge fixes for #1326113 and #12297 from 3.2 by Éric Araujo · 13 years ago
  77. ccddc47 Improve doc for atexit.register and unregister (#12297) by Éric Araujo · 13 years ago
  78. b2f5c0a Fix parsing of build_ext --libraries option (#1326113) by Éric Araujo · 13 years ago
  79. 8b4d64f Move NEWS entry to correct section. by Antoine Pitrou · 13 years ago
  80. 552be9b Issue #13020: Fix a reference leak when allocating a structsequence object fails. by Antoine Pitrou · 13 years ago
  81. 4b3c784 Fix indentation by Antoine Pitrou · 13 years ago
  82. 37784ba Issue #13020: Fix a reference leak when allocating a structsequence object fails. by Antoine Pitrou · 13 years ago
  83. 15af7b4 Issue #13015: Fix a possible reference leak in defaultdict.__repr__. by Antoine Pitrou · 13 years ago
  84. f5f1fe0 Issue #13015: Fix a possible reference leak in defaultdict.__repr__. by Antoine Pitrou · 13 years ago
  85. 0568d6f Bring importlib in line w/ changes made in my personal bootstrap branch in the sandbox. by Brett Cannon · 13 years ago
  86. 06b57ef Issue #10287: nntplib now queries the server's CAPABILITIES first before sending MODE READER, and only sends it if not already in READER mode. by Antoine Pitrou · 13 years ago
  87. 7113562 Issue #10287: nntplib now queries the server's CAPABILITIES first before sending MODE READER, and only sends it if not already in READER mode. by Antoine Pitrou · 13 years ago
  88. 2603d0a Issue #13979: Fix ctypes.util.find_library ldconfig regex by Meador Inge · 13 years ago
  89. ffeee35 Issue #13979: Fix ctypes.util.find_library ldconfig regex by Meador Inge · 13 years ago
  90. 0f7888d Time module doc: Fix reST syntax by Victor Stinner · 13 years ago
  91. a9c895d PyUnicode_DecodeLocale() second argument is now a char*, no more an int by Victor Stinner · 13 years ago
  92. dba5317 merge the import re (already in this branch). by Gregory P. Smith · 13 years ago
  93. 53ec8ae re.escape os.sep so that \ is interpreted properly in the regex. by Gregory P. Smith · 13 years ago
  94. a127ecb import re for the previous commit. by Gregory P. Smith · 13 years ago
  95. 9903c70 re.escape os.sep so that \ is interpreted properly in the regex. by Gregory P. Smith · 13 years ago
  96. aed5553 Issue #13930: fix a / to use os.sep so that the test works on Windows. by Gregory P. Smith · 13 years ago
  97. 93b98ca Issue #13930: fix a / to use os.sep so that the test works on Windows. by Gregory P. Smith · 13 years ago
  98. c3a6b02 (Merge 3.2) Issue #13913: normalize utf-8 codec name in UTF-8 decoder by Victor Stinner · 13 years ago
  99. cbe0134 Issue #13913: normalize utf-8 codec name in UTF-8 decoder by Victor Stinner · 13 years ago
  100. 3634bfb lib2to3 tests: Don't use deprecated API, switch to assertRegex() by Victor Stinner · 13 years ago