1. cc75717 Style cleanups for pickle.py and _pickle. by Alexandre Vassalotti · 11 years ago
  2. 6d9e145 Merge 3.3 by Alexandre Vassalotti · 11 years ago
  3. 00d83f2 Clean up error messages raised by save_reduce in _pickle. by Alexandre Vassalotti · 11 years ago
  4. d949126 Issue #17693: CJK encoders now use the new Unicode API (PEP 393) by Victor Stinner · 11 years ago
  5. 6d80046 Issue #17016: Get rid of possible pointer wraparounds and integer overflows by Serhiy Storchaka · 11 years ago
  6. 4bb1734 Issue #17016: Get rid of possible pointer wraparounds and integer overflows by Serhiy Storchaka · 11 years ago
  7. a0dd021 Close #17693: Rewrite CJK decoders to use the _PyUnicodeWriter API instead of by Victor Stinner · 11 years ago
  8. 50b24d0 Fix a crash when setting a servername callback on a SSL server socket and the client doesn't send a server name. by Antoine Pitrou · 11 years ago
  9. 7d36e4f Close #14439: Python now prints the traceback on runpy failure at startup. by Victor Stinner · 11 years ago
  10. 4b7b0f0 gibibytes (Arfrever) by Antoine Pitrou · 11 years ago
  11. 299978d Issue #15596: Faster pickling of unicode strings. by Antoine Pitrou · 11 years ago
  12. ee57f15 Revert a premature patch for issue #14010 (changeset 846bd418aee5). by Serhiy Storchaka · 11 years ago
  13. 278d03b Revert a premature patch for issue #14010 (changeset aaaf36026511). by Serhiy Storchaka · 11 years ago
  14. aac81e2 Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 11 years ago
  15. e8f706e Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 11 years ago
  16. 7faf705 Issue #17591: Use lowercase filenames when including Windows header files. by Antoine Pitrou · 11 years ago
  17. ce852cb Fix comment about the OpenSSL version in which SNI version was introduced. by Antoine Pitrou · 11 years ago
  18. edbc18e Improve set_servername_callback docstring. by Antoine Pitrou · 11 years ago
  19. a596338 Fix previous fix (the cause was actually a misplaced #endif, or so it seems) by Antoine Pitrou · 11 years ago
  20. 41f8c4f Further compiling fixes (issue #17581) by Antoine Pitrou · 11 years ago
  21. 912fbff Issue #17581: try to fix building on old OpenSSL versions by Antoine Pitrou · 11 years ago
  22. 2463e5f Issue #16692: The ssl module now supports TLS 1.1 and TLS 1.2. Initial patch by Michele Orrù. by Antoine Pitrou · 11 years ago
  23. d06b35c (Merge 3.3) Issue #17209: curses.window.get_wch() now handles correctly KeyboardInterrupt (CTRL+c) by Victor Stinner · 11 years ago
  24. bd2d30c Issue #17209: curses.window.get_wch() now handles correctly KeyboardInterrupt (CTRL+c) by Victor Stinner · 11 years ago
  25. 40a2160 Refactor the common code out of the posix and windows listdir by Gregory P. Smith · 11 years ago
  26. 16ea14a Refactor the Windows specific and POSIX specific implementations of by Gregory P. Smith · 11 years ago
  27. 9a7d376 Use logic operator, not bitwise operator, for conditional. by R David Murray · 11 years ago
  28. c7c42ef #15927: Fix cvs.reader parsing of escaped \r\n with quoting off. by R David Murray · 11 years ago
  29. d6e9f32 Merge by Kristján Valur Jónsson · 11 years ago
  30. 23f854c Issue #10296: Merge to default by Kristján Valur Jónsson · 11 years ago
  31. a251b37 #10296: Merge to 3.3 by Kristján Valur Jónsson · 11 years ago
  32. c70e53a Fixes Issue #17192: Update the ctypes module's libffi to v3.0.13. This by Gregory P. Smith · 11 years ago
  33. 5aed330 Issue #10296 : Don't handle BreakPoint exceptions using by Kristján Valur Jónsson · 11 years ago
  34. cca8507 merge heads in 3.3 by Gregory P. Smith · 11 years ago
  35. 0408bf9 Fixes Issue #17192: Update the ctypes module's libffi to v3.0.13. This by Gregory P. Smith · 11 years ago
  36. af3ba48 Merge: #8862: Fix curses cleanup with getchar is interrupted by a signal. by R David Murray · 11 years ago
  37. 779dab9 Merge: #8862: Fix curses cleanup with getchar is interrupted by a signal. by R David Murray · 11 years ago
  38. f5d7cc2 #8862: Fix curses cleanup with getchar is interrupted by a signal. by R David Murray · 11 years ago
  39. 029273f Fixes issue #17192: Update the ctypes module's libffi to v3.0.13. This by Gregory P. Smith · 11 years ago
  40. 7701e6e make some freezing related stuff const by Benjamin Peterson · 11 years ago
  41. 3b965a2 expose O_PATH if possible by Benjamin Peterson · 11 years ago
  42. 8b53559 Merge with 3.3, issue #17047: remove doubled words added in 3.3, by Terry Jan Reedy · 11 years ago
  43. 0f84764 Issue #17047: remove doubled words added in 3.3 by Terry Jan Reedy · 11 years ago
  44. 16c41d8 Merge 3.3, issue #17047: remove doubled words found in 2.7 to 3.4 by Terry Jan Reedy · 11 years ago
  45. 09b7503 Merge 3.2, Issue #17047: remove doubled words found in 2.7 to 3.4 by Terry Jan Reedy · 11 years ago
  46. 0158af3 Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*, by Terry Jan Reedy · 11 years ago
  47. 03e667d Fix memory leak introduced in 15190138d3f3. by Ezio Melotti · 11 years ago
  48. ca83233 Fix formatting changes that led to compilation errors by Eli Bendersky · 11 years ago
  49. 3612da6 call_commethod was only used in samples/Windows, which no longer exists. by Eli Bendersky · 11 years ago
  50. d867bad Fix some formatting by Eli Bendersky · 11 years ago
  51. e5c0533 Issue #17223: Add another test to check that _PyUnicode_Ready() rejects by Victor Stinner · 11 years ago
  52. 221760a Issue #17278: Fix a crash in heapq.heappush() and heapq.heappop() when the list is being resized concurrently. by Antoine Pitrou · 11 years ago
  53. 31584e3 Issue #17278: Fix a crash in heapq.heappush() and heapq.heappop() when the list is being resized concurrently. by Antoine Pitrou · 11 years ago
  54. 44d5214 Issue #17278: Fix a crash in heapq.heappush() and heapq.heappop() when the list is being resized concurrently. by Antoine Pitrou · 11 years ago
  55. b394c1d Fixes Issue #16962: Use getdents64 instead of the obsolete getdents syscall by Gregory P. Smith · 11 years ago
  56. 255bf5b Issue #16962: Use getdents64 instead of the obsolete getdents syscall in by Gregory P. Smith · 11 years ago
  57. 25c3053 (Merge 3.3) Issue #17223: array module: Fix a crasher when converting an array by Victor Stinner · 11 years ago
  58. 29ec595 Issue #17223: array module: Fix a crasher when converting an array containing by Victor Stinner · 11 years ago
  59. d7c59e1 Merge #17275: Fix class name in init errors in C bufferedio classes. by R David Murray · 11 years ago
  60. 9f10f56 Merge #17275: Fix class name in init errors in C bufferedio classes. by R David Murray · 11 years ago
  61. 67bfe80 #17275: Fix class name in init errors in C bufferedio classes. by R David Murray · 11 years ago
  62. 2cca36e Issue #13153: Tkinter functions now raise TclError instead of ValueError when by Serhiy Storchaka · 11 years ago
  63. df4aa64 Issue #13153: Tkinter functions now raise TclError instead of ValueError when by Serhiy Storchaka · 11 years ago
  64. 59f5dee Issue #13153: Tkinter functions now raise TclError instead of ValueError when by Serhiy Storchaka · 11 years ago
  65. e924ddb Issue #9669: Protect re against infinite loops on zero-width matching in by Serhiy Storchaka · 11 years ago
  66. b0c75a7 Issue #9669: Protect re against infinite loops on zero-width matching in by Serhiy Storchaka · 11 years ago
  67. fa46816 Issue #9669: Protect re against infinite loops on zero-width matching in by Serhiy Storchaka · 11 years ago
  68. 0e6b7b5 Issue #8745: Small speed up zipimport on Windows. Patch by Catalin Iacob. by Serhiy Storchaka · 11 years ago
  69. 0cad7ec Issue #17193: Use binary prefixes (KiB, MiB, GiB) for memory units. by Serhiy Storchaka · 11 years ago
  70. f8def28 Issue #17193: Use binary prefixes (KiB, MiB, GiB) for memory units. by Serhiy Storchaka · 11 years ago
  71. 165ee96 Issue #13169: The maximal repetition number in a regular expression has been by Serhiy Storchaka · 11 years ago
  72. a0eb809 Issue #13169: The maximal repetition number in a regular expression has been by Serhiy Storchaka · 11 years ago
  73. 70ca021 Issue #13169: The maximal repetition number in a regular expression has been by Serhiy Storchaka · 11 years ago
  74. 76450e6 Merge by Richard Oudkerk · 11 years ago
  75. 6d40134 Merge by Richard Oudkerk · 11 years ago
  76. 0d09ba8 Issue #16743: Fix mmap overflow check on 32 bit Windows by Richard Oudkerk · 11 years ago
  77. 38e2a2a - Issue #17192: Import libffi-3.0.12. by doko@ubuntu.com · 11 years ago
  78. e4ad8aa Issue #4591: Uid and gid values larger than 2**31 are supported now. by Serhiy Storchaka · 11 years ago
  79. fd6e6cf Raise KeyError instead of OverflowError when getpwuid's argument is out of by Serhiy Storchaka · 11 years ago
  80. 55e2238 Raise KeyError instead of OverflowError when getpwuid's argument is out of by Serhiy Storchaka · 11 years ago
  81. a7b5e82 Reject float as uid or gid. by Serhiy Storchaka · 11 years ago
  82. b462189 Reject float as uid or gid. by Serhiy Storchaka · 11 years ago
  83. c2d0200 Issue #4591: Uid and gid values larger than 2**31 are supported now. by Serhiy Storchaka · 11 years ago
  84. 7cf5599 Issue #4591: Uid and gid values larger than 2**31 are supported now. by Serhiy Storchaka · 11 years ago
  85. 986bbfc Backport deque.rotate() improvements. by Raymond Hettinger · 11 years ago
  86. 902fc8b Issue #13773: sqlite3.connect() gets a new `uri` parameter to pass the filename as a URI, allowing to pass custom options. by Antoine Pitrou · 11 years ago
  87. 8ad5b07 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 11 years ago
  88. c73c561 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 11 years ago
  89. 4de7457 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 11 years ago
  90. 7611d9a Issue #16686: Fixed a lot of bugs in audioop module. by Serhiy Storchaka · 11 years ago
  91. 8135de8 Issue #16686: Fixed a lot of bugs in audioop module. by Serhiy Storchaka · 11 years ago
  92. 01ad622 Issue #16686: Fixed a lot of bugs in audioop module. by Serhiy Storchaka · 11 years ago
  93. eae3b33 Issue #17073: Fix some integer overflows in sqlite3 module. by Serhiy Storchaka · 11 years ago
  94. 2efdc90 Issue #17073: Fix some integer overflows in sqlite3 module. by Serhiy Storchaka · 11 years ago
  95. 3cf96ac Issue #17073: Fix some integer overflows in sqlite3 module. by Serhiy Storchaka · 11 years ago
  96. 59cf23a Minor tweaks to varnames, declarations, and comments. by Raymond Hettinger · 11 years ago
  97. 773e42d Issue #15359: Add CAN_BCM protocol support to the socket module. Patch by Brian by Charles-François Natali · 11 years ago
  98. 1f0044c Minor variable access clean-ups for deque.rotate(). by Raymond Hettinger · 11 years ago
  99. 88eea54 Issue #17089: Expat parser now correctly works with string input not only when by Serhiy Storchaka · 11 years ago
  100. 36b365c Issue #17089: Expat parser now correctly works with string input not only when by Serhiy Storchaka · 11 years ago