1. 44e2eaa Issue #19674: inspect.signature() now produces a correct signature by Larry Hastings · 11 years ago
  2. 7fa6e1a Keep asyncio working with Python 3.3 too. by Guido van Rossum · 11 years ago
  3. 085869b asyncio: Change bounded semaphore into a subclass, like threading.[Bounded]Semaphore. by Guido van Rossum · 11 years ago
  4. dcd340e Issue #19358: "make clinic" now runs the Argument Clinic preprocessor by Larry Hastings · 11 years ago
  5. ebdcb50 Issue #19730: Argument Clinic now supports all the existing PyArg by Larry Hastings · 11 years ago
  6. 3a90797 Issue #19722: Added opcode.stack_effect(), which accurately by Larry Hastings · 11 years ago
  7. 8d0d369 Update Tcl/Tk to 8.6.1. by Martin v. Löwis · 11 years ago
  8. 67986f9 Issue #19735: Implement private function ssl._create_stdlib_context() to by Christian Heimes · 11 years ago
  9. 32eddc1 Issue #16203: Add re.fullmatch() function and regex.fullmatch() method, by Serhiy Storchaka · 11 years ago
  10. 3ed82c5 Package _overlapped. by Martin v. Löwis · 11 years ago
  11. a7fbf58 Merge heads by Serhiy Storchaka · 11 years ago
  12. 5c24d0e Issue #13592: Improved the repr for regular expression pattern objects. by Serhiy Storchaka · 11 years ago
  13. 057e58d Fix test_pickletools.py doctest's on 32-bit platforms. I hate doctests. by Gregory P. Smith · 11 years ago
  14. c1207c1 Fix signed / unsigned comparison by Antoine Pitrou · 11 years ago
  15. d5df194 test_pickle: speed up test_long by Antoine Pitrou · 11 years ago
  16. 3062c9a Issue #19641: Added the audioop.byteswap() function to convert big-endian by Serhiy Storchaka · 11 years ago
  17. 2b38fc1 gcc doesn't realize that dummy is always initialized by the function call by Gregory P. Smith · 11 years ago
  18. 2489bd8 Issue #17810: Fixed NULL check in _PyObject_GetItemsIter() by Christian Heimes · 11 years ago
  19. 310e4c4 merge by Christian Heimes · 11 years ago
  20. e8b1ba1 Issue #17810: Add two missing error checks to save_global by Christian Heimes · 11 years ago
  21. dd52c5a Merge heads by Serhiy Storchaka · 11 years ago
  22. 6787a38 Issue #15204: Deprecated the 'U' mode in file-like objects. by Serhiy Storchaka · 11 years ago
  23. 6188d09 Merge by Antoine Pitrou · 11 years ago
  24. 74d8d63 Issue #17810: return -1 on error by Christian Heimes · 11 years ago
  25. 8f2ee6e Fix writing out 64-bit size fields on 32-bit builds by Antoine Pitrou · 11 years ago
  26. b3d3ee4 Issue #17810: Add NULL check to save_frozenset by Christian Heimes · 11 years ago
  27. d41c343 asyncio: Use socketpair() from test_utils in tests (Saúl Ibarra Corretgé). by Guido van Rossum · 11 years ago
  28. 488b0da Fix typo. by Guido van Rossum · 11 years ago
  29. 6bdd986 #10712: 2to3 has a new "asserts" fixer that replaces deprecated names of unittest methods. by Ezio Melotti · 11 years ago
  30. 7571941 #19639: update the repr of the match objects in the docs. Patch by Claudiu Popa. by Ezio Melotti · 11 years ago
  31. 7cd9fbe Fix whitespace by Antoine Pitrou · 11 years ago
  32. c9dc4a2 Issue #17810: Implement PEP 3154, pickle protocol 4. by Antoine Pitrou · 11 years ago
  33. 95401c5 #13633: Added a new convert_charrefs keyword arg to HTMLParser that, when True, automatically converts all character references. by Ezio Melotti · 11 years ago
  34. e7f87e1 Fixed incorrectly applying a patch for issue19668. by Serhiy Storchaka · 11 years ago
  35. 59b7ff2 Undo (hopefully) buildbot failures by Antoine Pitrou · 11 years ago
  36. 23828f6 Undo (hopefully) buildbot failures by Antoine Pitrou · 11 years ago
  37. 94097b0 Relax timing even more, hopefully again fixes issue 19579. by Guido van Rossum · 11 years ago
  38. 434d27a Merge heads by Serhiy Storchaka · 11 years ago
  39. 0da64f7 Isue #19634: test_y_before_1900() is expected to fail on Solaris by Victor Stinner · 11 years ago
  40. be0c325 Issue #19668: Added support for the cp1125 encoding. by Serhiy Storchaka · 11 years ago
  41. cfc6901 Add news about pdb fix for yield[from]. by Guido van Rossum · 11 years ago
  42. b17d2aa Issue #19308: fix the gdb plugin on gdbs linked with Python 3 by Antoine Pitrou · 11 years ago
  43. e50240c Issue #19308: fix the gdb plugin on gdbs linked with Python 3 by Antoine Pitrou · 11 years ago
  44. 5bef410 Tweak ssl docs by Antoine Pitrou · 11 years ago
  45. 46c5deb - Modules/_struct.c (unpackiter_type): Define static. by doko@ubuntu.com · 11 years ago
  46. 5de397e merge by Christian Heimes · 11 years ago
  47. 4c05b47 Issue #19689: Add ssl.create_default_context() factory function. It creates by Christian Heimes · 11 years ago
  48. 2cf3917 Issue #19715: try the utime(..., None) approach again, now that it should be more precise under Windows by Antoine Pitrou · 11 years ago
  49. 91a7af3 Issue #19727: os.utime(..., None) is now potentially more precise under Windows. by Antoine Pitrou · 11 years ago
  50. 93965f7 Issue #19634: time.strftime("%y") now raises a ValueError on Solaris when given by Victor Stinner · 11 years ago
  51. 235c5e0 Issue #17201: ZIP64 extensions now are enabled by default. by Serhiy Storchaka · 11 years ago
  52. 8b78493 Issue #19716: add a test that Path.touch() doesn't change a file's contents. by Antoine Pitrou · 11 years ago
  53. 6b2ff98 Correct documentation clientAuth -> CLIENT_AUTH by Christian Heimes · 11 years ago
  54. 7e45d25 Merge heads by Serhiy Storchaka · 11 years ago
  55. 514afeb Merge by Michael Foord · 11 years ago
  56. e28bb15 Issue 17457: extend test discovery to support namespace packages by Michael Foord · 11 years ago
  57. d311366 Issue #19733: Temporary disable test_image on MacOSX. by Serhiy Storchaka · 11 years ago
  58. c17565e Issue #19733: Temporary disable test_image on MacOSX. by Serhiy Storchaka · 11 years ago
  59. 8933521 Fix refleak introduced by 4f730c045f5f (issue #18408) and unveiled by 95eea8624d05 (issue #16596). by Antoine Pitrou · 11 years ago
  60. 72d2850 Issue #19292: Add SSLContext.load_default_certs() to load default root CA by Christian Heimes · 11 years ago
  61. a30d82f Document create_connection by Antoine Pitrou · 11 years ago
  62. 9a62a19 Start documenting the event loop by Antoine Pitrou · 11 years ago
  63. 4d1046c Document asyncio transport APIs by Antoine Pitrou · 11 years ago
  64. 3728d6c Issue #18874: Remove tracemalloc.set_traceback_limit() by Victor Stinner · 11 years ago
  65. ed3b0bc Issue #18874: Implement the PEP 454 (tracemalloc) by Victor Stinner · 11 years ago
  66. 0fb6072 merge by Ned Deily · 11 years ago
  67. aa6a212 Issue #15663: Revert OS X installer built-in Tcl/Tk support for 3.4.0b1. by Ned Deily · 11 years ago
  68. dec4338 Fix transport docstrings by Antoine Pitrou · 11 years ago
  69. 2427b50 Issue #8813: X509_VERIFY_PARAM is only available on OpenSSL 0.9.8+ by Christian Heimes · 11 years ago
  70. 4a281a1 Issue #19551: Update installer Welcome file. by Ned Deily · 11 years ago
  71. 9fa4ced Update third-party libraries for OS X installers: by Ned Deily · 11 years ago
  72. 44a0db0 Issue #19551: Update whatsnew. by Ned Deily · 11 years ago
  73. 41ab6c3 Issue #19551: PEP 453 - OS X installer now installs or upgrades pip by default. by Ned Deily · 11 years ago
  74. 7bc4b3b Update What's New with PEP 453 progress by Nick Coghlan · 11 years ago
  75. d76cdc1 Close #19694: venv now runs ensurepip in isolated mode by Nick Coghlan · 11 years ago
  76. fd66cc5 Merge from 3.3 by Andrew Kuchling · 11 years ago
  77. f92ef9b Update Itamar's name by Andrew Kuchling · 11 years ago
  78. 9c1aed8 Close #7475: Restore binary & text transform codecs by Nick Coghlan · 11 years ago
  79. 12820c0 Revert utime(..., None) strategy (it has too poor resolution under Windows) and restore the previous test workaround by Antoine Pitrou · 11 years ago
  80. c3055be Trying other strategy for #19715: use utime(..., None) by Antoine Pitrou · 11 years ago
  81. f8d0ff9 Add source link for asyncio. by Guido van Rossum · 11 years ago
  82. bb6694d Try to fix issue #19715 (timestamp rounding inconsistencies under Windows?) by Antoine Pitrou · 11 years ago
  83. 74193af Finish protocol documentation by Antoine Pitrou · 11 years ago
  84. a035e1b Start documenting protocols by Antoine Pitrou · 11 years ago
  85. f0f5d38 Mention threadpool interface in asyncio overview. by Guido van Rossum · 11 years ago
  86. bba8682 Issue #19291: add crude stubs to the asyncio docs by Antoine Pitrou · 11 years ago
  87. 6c86181 Issue #19715: Ensure that consecutive calls to monotonic() are monotonic by Victor Stinner · 11 years ago
  88. 0f57564 Try to debug issue #19715 by Antoine Pitrou · 11 years ago
  89. 2dd38fb Issue #19718: add one more globbing test under POSIX by Antoine Pitrou · 11 years ago
  90. b3931d2 Wording changes by Andrew Kuchling · 11 years ago
  91. 02ac74e merge by Brett Cannon · 11 years ago
  92. fe77f4e Issue #19718: Add a case-insensitive FS check to test.support to use by Brett Cannon · 11 years ago
  93. 2f66ffa Merge heads. by Eric Snow · 11 years ago
  94. 2ba66eb Issue #19724: clear out colliding temp module. by Eric Snow · 11 years ago
  95. 7a4e2d1 Wording changes to pathlib docs. by Andrew Kuchling · 11 years ago
  96. e0d641ab trunk merge by Barry Warsaw · 11 years ago
  97. 9121f8d Issue 19555 for distutils, plus a little clean up (pyflakes, line lengths). by Barry Warsaw · 11 years ago
  98. 4da459c Fix markup of notes recommending asyncio. by Guido van Rossum · 11 years ago
  99. 9ae8742 Merge heads by Zachary Ware · 11 years ago
  100. e19e3f0 Issue #18326: merge with 3.3 by Zachary Ware · 11 years ago