1. af03757 Optimize ascii(str): don't encode/decode repr if repr is already ASCII by Victor Stinner · 11 years ago
  2. 322cc74 Issue #17693: Fix memory/reference leaks by Victor Stinner · 11 years ago
  3. bf71f7d Merge #17341: Include name in re error message about invalid group name. by R David Murray · 11 years ago
  4. 26dfaac9 #17341: Include name in re error message about invalid group name. by R David Murray · 11 years ago
  5. 255fb3e add a newline by Brett Cannon · 11 years ago
  6. 9c367c2 merge by Brett Cannon · 11 years ago
  7. edfd6ae Issue #17244: Don't mask exceptions raised during the creation of by Brett Cannon · 11 years ago
  8. 4e762ee Issue #17221: Resort Misc/NEWS. by Serhiy Storchaka · 11 years ago
  9. f2fa5fc Issue #17221: Resort Misc/NEWS. by Serhiy Storchaka · 11 years ago
  10. 672559f (Merge 3.3) Issue #17702: use assertRaises() for the unit test by Victor Stinner · 11 years ago
  11. 839e5ea Issue #17702: use assertRaises() for the unit test by Victor Stinner · 11 years ago
  12. 43aa0d0 (Merge 3.3) Close #17702: os.environ now raises KeyError with the original by Victor Stinner · 11 years ago
  13. 6d10139 Close #17702: os.environ now raises KeyError with the original environment by Victor Stinner · 11 years ago
  14. 76b3b27 stringlib: remove unused STRINGLIB_RESIZE macro by Victor Stinner · 11 years ago
  15. 685bd4a Merge fix for #16163 from 3.3 by Nick Coghlan · 11 years ago
  16. c4e0d98 Close issue #16163: handle submodules in pkgutil.iter_importers by Nick Coghlan · 11 years ago
  17. 8b4c719 Issue #17713: additional tweak to test. by Vinay Sajip · 11 years ago
  18. d86ac96 Closes #17713: Fixed bug in test_compute_rollover_weekly_attime. by Vinay Sajip · 11 years ago
  19. 8a34596 #2118: IOError is deprecated, use OSError. by R David Murray · 11 years ago
  20. 96d6a78 Merge 3.3 by Alexandre Vassalotti · 11 years ago
  21. a3e32c9 Closes #16551. Cleanup pickle.py. by Serhiy Storchaka · 11 years ago
  22. 8157459 Merge heads. by Alexandre Vassalotti · 11 years ago
  23. 8db89ca Issue #16550: Update the opcode descriptions of pickletools to use unsigned by Alexandre Vassalotti · 11 years ago
  24. c8fb047 merge with 3.3 by Georg Brandl · 11 years ago
  25. 1aca953 Fix example ignoring ".svn" directories in compileall. by Georg Brandl · 11 years ago
  26. e827ea8 merge with 3.3 by Georg Brandl · 11 years ago
  27. 1e1134a The Integral class does not contain implementations for the bit-shifting operations. (See #3056.) by Georg Brandl · 11 years ago
  28. 015427e merge with 3.3 by Georg Brandl · 11 years ago
  29. 5e2954e Clarify that the function *definition* creates the function and the binding in the module globals. by Georg Brandl · 11 years ago
  30. b979f10 merge with 3.3 by Georg Brandl · 11 years ago
  31. 1d472b7 Closes #14462: allow any valid Python identifier in sre group names, as documented. by Georg Brandl · 11 years ago
  32. cc75717 Style cleanups for pickle.py and _pickle. by Alexandre Vassalotti · 11 years ago
  33. f36f20f merge with 3.3 by Georg Brandl · 11 years ago
  34. 991fc57 Closes #13638: document PyErr_SetFromErrnoWithFilenameObject, by Georg Brandl · 11 years ago
  35. 6d9e145 Merge 3.3 by Alexandre Vassalotti · 11 years ago
  36. 5c4874f Merge heads. by Alexandre Vassalotti · 11 years ago
  37. 1e6a3a2 merge with 3.3 by Georg Brandl · 11 years ago
  38. a204636 bind('') does not do the same as bind('localhost') by Georg Brandl · 11 years ago
  39. f221377 merge with 3.3 by Georg Brandl · 11 years ago
  40. 5f4b4ac Update code examples using collections.abc classes. by Georg Brandl · 11 years ago
  41. 9def205 merge with 3.3 by Georg Brandl · 11 years ago
  42. 7b8c132 Closes #17726: small clarification in design FAQ. by Georg Brandl · 11 years ago
  43. 00d83f2 Clean up error messages raised by save_reduce in _pickle. by Alexandre Vassalotti · 11 years ago
  44. 94a9a2d merge with 3.3 by Georg Brandl · 11 years ago
  45. e095968 Update using/mac documentation which was still on 2.5. by Georg Brandl · 11 years ago
  46. cf72c5e merge with 3.3 by Georg Brandl · 11 years ago
  47. dec3b3f Clarify point in name mangling doc. by Georg Brandl · 11 years ago
  48. bdc3eb7 Merge 3.3 by Alexandre Vassalotti · 11 years ago
  49. 6eea818 Fix pickling test in test_memoryio. by Alexandre Vassalotti · 11 years ago
  50. e94950e Merge heads. by Meador Inge · 11 years ago
  51. 2581bdb Issue #16804: Fix 'python -S -m site' failure. by Meador Inge · 11 years ago
  52. 9a7a811 Issue #16804: Fix 'python -S -m site' failure. by Meador Inge · 11 years ago
  53. 8a1a6cf Add _PyUnicodeWriter_WriteCharInline() by Victor Stinner · 11 years ago
  54. d949126 Issue #17693: CJK encoders now use the new Unicode API (PEP 393) by Victor Stinner · 11 years ago
  55. 7155759 remove pointless change by Benjamin Peterson · 11 years ago
  56. 214a7d2 properly lookup the __round__ special method (closes #17722) by Benjamin Peterson · 11 years ago
  57. c1ab0bd Fix misindent. This would test half less possibilities. by Antoine Pitrou · 11 years ago
  58. e9bbe8b Issue #15480: Remove the deprecated and unused TYPE_INT64 code from marshal. by Antoine Pitrou · 11 years ago
  59. e2cef88 Issue #16061: Speed up str.replace() for replacing 1-character strings. by Serhiy Storchaka · 11 years ago
  60. a707f29 #17719: fix incorrect version number in deprecation doc. by R David Murray · 11 years ago
  61. 8e37d5d #2118: Make SMTPException a subclass of IOError. by R David Murray · 11 years ago
  62. c1d3daf Merge #2118: clarify smtplib exception documentation. by R David Murray · 11 years ago
  63. 0bfd6ac Reflow paragraph. by R David Murray · 11 years ago
  64. 14ee3cf #2118: clarify smtplib exception documentation. by R David Murray · 11 years ago
  65. 6d80046 Issue #17016: Get rid of possible pointer wraparounds and integer overflows by Serhiy Storchaka · 11 years ago
  66. 4bb1734 Issue #17016: Get rid of possible pointer wraparounds and integer overflows by Serhiy Storchaka · 11 years ago
  67. d24abee #17571: merge with 3.3. by Ezio Melotti · 11 years ago
  68. f756f94 #17571: remove broken links in datetime.py docstring. by Ezio Melotti · 11 years ago
  69. 5c965da #17686: merge with 3.3. by Ezio Melotti · 11 years ago
  70. ac3da87 #17686: fix broken link in Doc/using/unix.rst. Patch by Dan Riti. by Ezio Melotti · 11 years ago
  71. 93196eb Issue #17715: Merge fix from 3.3. by Mark Dickinson · 11 years ago
  72. c973448 Issue #17715: Add missing NULL Check to PyNumber_Long. by Mark Dickinson · 11 years ago
  73. 171bb26 Issue #17713: Test temporarily skipped while failure investigated. by Vinay Sajip · 11 years ago
  74. bca5141 Merge heads. by Mark Dickinson · 11 years ago
  75. 9b6fdf8 Fix incorrect indentation on 'versionadded' for weakref.ref.__callback__. by Mark Dickinson · 11 years ago
  76. 44e33f3 Revert changes for #13355 by request from Raymond Hettinger by Andrew Svetlov · 11 years ago
  77. b4fd468 Revert changes for #13355 by request from Raymond Hettinger by Andrew Svetlov · 11 years ago
  78. 556e94b Issue #17643: Add __callback__ attribute to weakref.ref. by Mark Dickinson · 11 years ago
  79. 548677b Issue #16447: Merge fix from 3.3. by Mark Dickinson · 11 years ago
  80. 64aafeb Issue #16447: Fix potential segfault when setting __name__ on a class. by Mark Dickinson · 11 years ago
  81. 4e7d3ab Fix whitespaces by Andrew Svetlov · 11 years ago
  82. eff6444 Fix whitespaces by Andrew Svetlov · 11 years ago
  83. 7300011 Issue #13355: Raise ValueError on random.triangular call with invalid params. by Andrew Svetlov · 11 years ago
  84. a2dfc35 Issue #13355: Raise ValueError on random.triangular call with invalid params. by Andrew Svetlov · 11 years ago
  85. 3042b5e Issue #16658: add missing return to HTTPConnection.send(). by Andrew Svetlov · 11 years ago
  86. 7b2c8bb Issue #16658: add missing return to HTTPConnection.send(). by Andrew Svetlov · 11 years ago
  87. 7ca4936 attempt to fix bb failure as per http://bugs.python.org/issue17675#msg186595 by Giampaolo Rodola' · 11 years ago
  88. 3121e32 #17653: merge with 3.3. by Ezio Melotti · 11 years ago
  89. a3b255f #17653: fix typo in socketserver docs. Patch by Tshepang Lekhonkhobe. by Ezio Melotti · 11 years ago
  90. a713079 Closed #9556: Allowed specifying a time-of-day for a TimedRotatingFileHandler to rotate. by Vinay Sajip · 11 years ago
  91. 8a9e38e Null merge. by Ezio Melotti · 11 years ago
  92. 15a98cd Merge heads. by Ezio Melotti · 11 years ago
  93. 6ebdb61 Merge heads. by Ezio Melotti · 11 years ago
  94. 2175b4f #17688: fix declaration for richcmp example in the docs. by Andrew Svetlov · 11 years ago
  95. 59d6d2d #17688: fix declaration for richcmp example in the docs. by Andrew Svetlov · 11 years ago
  96. cbc2d29 #6696: merge with 3.3. by Ezio Melotti · 11 years ago
  97. 075d87c #6696: add documentation for the Profile objects, and improve profile/cProfile docs. Patch by Tom Pinckney. by Ezio Melotti · 11 years ago
  98. 7ec97f4 #17692: merge with 3.3. by Ezio Melotti · 11 years ago
  99. c2ecac4 #17692: test_sqlite now works with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 11 years ago
  100. 663a390 #17585: merge with 3.3. by Roger Serwy · 11 years ago