1. b9cd353 Issue 9856: Change object.__format__ with a non-empty format string from a PendingDeprecationWarning to a DeprecationWarning. by Eric V. Smith · 14 years ago
  2. e8eabe7 Merge #11131 by Mark Dickinson · 14 years ago
  3. a7f0dff Merge #11131 by Mark Dickinson · 14 years ago
  4. 37a79fb Issue 11131: Fix sign of zero result on decimal.Decimal plus and minus operations in ROUND_FLOOR rounding mode. by Mark Dickinson · 14 years ago
  5. 16c4ce1 Issue #9935: Speed up pickling of instances of user-defined classes. by Antoine Pitrou · 14 years ago
  6. f5f6288 Issue #11179: Make ccbench work under Python 3.1 and 2.7 again. by Antoine Pitrou · 14 years ago
  7. 375ff58 Issue #11179: Make ccbench work under Python 3.1 and 2.7 again. by Antoine Pitrou · 14 years ago
  8. 17b880a Issue #11244: The peephole optimizer is now able to constant-fold by Antoine Pitrou · 14 years ago
  9. d2dee34 Merge fix for issue #11450 by Antoine Pitrou · 14 years ago
  10. 35db8a8 Merge fix for issue #11450 by Antoine Pitrou · 14 years ago
  11. 7983d33 Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when by Antoine Pitrou · 14 years ago
  12. 33cb5c9 Issue #5622: merge fix from 3.2. by Ned Deily · 14 years ago
  13. 2d12f96 Issue #5622: merge fix from 3.1. by Ned Deily · 14 years ago
  14. d285318 Issue #5622: Fix curses.wrapper to raise correct exception if curses by Ned Deily · 14 years ago
  15. 63bd5f9 Merge 3.2. by Thomas Wouters · 14 years ago
  16. 6b10343 Merge 3.1. by Thomas Wouters · 14 years ago
  17. 81638f1 Issue #11411: Fix typo in the Makefile that prevented 'make DESTDIR=' from by Thomas Wouters · 14 years ago
  18. 125d5c8 Issue #11408: In threading.Lock.acquire(), only call gettimeofday() when by Antoine Pitrou · 14 years ago
  19. f874deb Merge fix for issue #11391 by Antoine Pitrou · 14 years ago
  20. 80d3610 Merge fix for issue #11391 by Antoine Pitrou · 14 years ago
  21. 16a0a0b Issue #11391: Writing to a mmap object created with by Antoine Pitrou · 14 years ago
  22. 3a9559b Update Misc/NEWS to include issue #9795 (nntplib context manager support) by Giampaolo Rodolà · 14 years ago
  23. 9479d1a Issue #11388: Added a clear() method to MutableSequence by Eli Bendersky · 14 years ago
  24. e0c8635d8 Merged revisions 88735 via svnmerge from by Eli Bendersky · 14 years ago
  25. 1bc4f19 Issue #11386: Fixed the exception thrown by bytearray.pop() for empty bytearrays by Eli Bendersky · 14 years ago
  26. 4db28d3 Issue #10516: added copy() and clear() methods to bytearrays as well by Eli Bendersky · 14 years ago
  27. 752b950 Merged revisions 88730 via svnmerge from by R. David Murray · 14 years ago
  28. 91221f2 #11306: Treat EROFS like EACCES when making a 'file is read-only' decision by R. David Murray · 14 years ago
  29. 2f95dc0 Merged revisions 88722 via svnmerge from by Giampaolo Rodolà · 14 years ago
  30. 9c9105d Merged revisions 88722 via svnmerge from by Giampaolo Rodolà · 14 years ago
  31. 1bc75c6 Fix issue 11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors on accept(), recv() and send(). by Giampaolo Rodolà · 14 years ago
  32. 1dfd380 Issue #11377: Deprecate platform.popen() and reimplement it with os.popen(). by Victor Stinner · 14 years ago
  33. 7b3b20a Issue #8513: On UNIX, subprocess supports bytes command string. by Victor Stinner · 14 years ago
  34. 8eda5f7 #11335: Fix memory leak when a sort key function throws an exception by Daniel Stutzbach · 14 years ago
  35. a5c68c3 Issue #8923: cache str.encode() result by Victor Stinner · 14 years ago
  36. 6d970f4 Issue #10831: PyUnicode_FromFormat() supports %li, %lli and %zi formats by Victor Stinner · 14 years ago
  37. 9686545 Issue #10829: Refactor PyUnicode_FromFormat() by Victor Stinner · 14 years ago
  38. f0e293c Merged revisions 88700 via svnmerge from by Victor Stinner · 14 years ago
  39. 096f1a8 Issue #10911: Add tests on CGI with non-ASCII characters by Victor Stinner · 14 years ago
  40. 819c40f Followup to issue #11140 and r88682: also patch _dummy_thread. by Antoine Pitrou · 14 years ago
  41. 2b574a2 Merged revisions 88697 via svnmerge from by Victor Stinner · 14 years ago
  42. 2512a8b Issue #11246: Fix PyUnicode_FromFormat("%V") by Victor Stinner · 14 years ago
  43. 9e719b6 Merged revisions 88460,88464,88466,88486,88511,88652 via svnmerge from by Antoine Pitrou · 14 years ago
  44. 061cfb5 Issue #10866: Add socket.sethostname(). Initial patch by Ross Lagerwall. by Antoine Pitrou · 14 years ago
  45. 8d0f257 Add credit for r88682. by Antoine Pitrou · 14 years ago
  46. fcf81fd Issue #11140: Lock.release() now raises a RuntimeError when attempting by Antoine Pitrou · 14 years ago
  47. 396ff06 Fix issue 8594: adds a source_address parameter to ftplib module. by Giampaolo Rodolà · 14 years ago
  48. 86cbfec Merged revisions 88664 via svnmerge from by Antoine Pitrou · 14 years ago
  49. e93bf7a Issue #11326: Add the missing connect_ex() implementation for SSL sockets, by Antoine Pitrou · 14 years ago
  50. 4914f9e Merged revisions 88652 via svnmerge from by Antoine Pitrou · 14 years ago
  51. d20a5f6 Issue #9931: Fix hangs in GUI tests under Windows in certain conditions. by Antoine Pitrou · 14 years ago
  52. 09c530d Revert r88639 (the optimization changes behaviour and breaks buildbots) by Antoine Pitrou · 14 years ago
  53. ffa1a77 Issue #11258: Speed up ctypes.util.find_library() under Linux a lot. Patch by Antoine Pitrou · 14 years ago
  54. 9fe1ccf Issue #11297: Add collections.ChainMap() by Raymond Hettinger · 14 years ago
  55. 8250e23 Issue #10755: Add the posix.fdlistdir() function. Patch by Ross Lagerwall. by Antoine Pitrou · 14 years ago
  56. f65132d Issue #4761: Add the *at() family of functions (openat(), etc.) to the posix by Antoine Pitrou · 14 years ago
  57. 5d5381e Merged revisions 88622 via svnmerge from by Antoine Pitrou · 14 years ago
  58. 68e5c04 Issue #7322: Trying to read from a socket's file-like object after a timeout by Antoine Pitrou · 14 years ago
  59. 95bcb93 Issue 11291: poplib suppresses errors on QUIT. by Giampaolo Rodolà · 14 years ago
  60. 103a6d6 Issue 11177: asyncore's create_socket() arguments can now be omitted. by Giampaolo Rodolà · 14 years ago
  61. 0bd4deb Issue #6064: Add a `daemon` keyword argument to the threading.Thread by Antoine Pitrou · 14 years ago
  62. d843c2d Merged revisions 88610 via svnmerge from by Antoine Pitrou · 14 years ago
  63. 707ce82 Issue #10956: Buffered I/O classes retry reading or writing after a signal by Antoine Pitrou · 14 years ago
  64. 7e1b9af Update Misc/NEWS to include os.getpriority() and os.setpriority() addition. by Giampaolo Rodolà · 14 years ago
  65. 211b81d Issue #11114: Fix catastrophic performance of tell() on text files (up by Antoine Pitrou · 14 years ago
  66. c9c2c8b Issue 10882: add os.sendfile(). (patch provided by Ross Lagerwall) by Giampaolo Rodolà · 14 years ago
  67. 8f15987 Merged revisions 88438,88440 via svnmerge from by Georg Brandl · 14 years ago
  68. 6baf117 Merged revisions 88426 via svnmerge from by Georg Brandl · 14 years ago
  69. f6c8fd6 Merged revisions 86537,86867-86868,86881,86887,86913-86915,86931-86933,86960,86964,86974,86980,86996,87008,87050 via svnmerge from by Georg Brandl · 14 years ago
  70. cbbaa96 Issue #10516: adding list.clear() and list.copy() methods by Eli Bendersky · 14 years ago
  71. 915605c Merged revisions 88550 via svnmerge from by Antoine Pitrou · 14 years ago
  72. 5bffa79 Issue #11286: Raise a ValueError from calling PyMemoryView_FromBuffer with by Antoine Pitrou · 14 years ago
  73. 6c3787c Allow usage of SomeABC.register as a class decorator. Patch by Edoardo Spadolini (#10868). by Éric Araujo · 14 years ago
  74. 659eb84 Merged revisions 88481 via svnmerge from by Victor Stinner · 14 years ago
  75. 02bfdb3 Merged revisions 88530 via svnmerge from by Victor Stinner · 14 years ago
  76. c0f1a1a Issue #11272: Fix input() and sys.stdin for Windows newline by Victor Stinner · 14 years ago
  77. 9f6cbe0 Merged revisions 88528 via svnmerge from by Lars Gustäbel · 14 years ago
  78. dd07104 Issue #11224: Improved sparse file read support (r85916) introduced a by Lars Gustäbel · 14 years ago
  79. e2dfefb Issue #10924: Adding salt and Modular Crypt Format to crypt library. by Sean Reifscheider · 14 years ago
  80. 45b96d3 Merged revisions 88498 via svnmerge from by Brett Cannon · 14 years ago
  81. f304278 Issue #11074: Make 'tokenize' so it can be reloaded. by Brett Cannon · 14 years ago
  82. eeb114b Issue #10512: close the log file in cgi when running tests. by Brett Cannon · 14 years ago
  83. 7a54073 Issue #10992: make tests pass when run under coverage. by Brett Cannon · 14 years ago
  84. 158c9c2 Issue #11085: Moved collections abstract base classes into a separate module by Raymond Hettinger · 14 years ago
  85. 97696cb Merged revisions 88486 via svnmerge from by Antoine Pitrou · 14 years ago
  86. ecc2692 Issue #4681: Allow mmap() to work on file sizes and offsets larger than by Antoine Pitrou · 14 years ago
  87. a47c25d Merged revisions 88484 via svnmerge from by Antoine Pitrou · 14 years ago
  88. ce58dc7 Issue #10826: Prevent sporadic failure in test_subprocess on Solaris due by Antoine Pitrou · 14 years ago
  89. 5ed8b2c Fix PyUnicode_FromFormatV("%c") for non-BMP char by Victor Stinner · 14 years ago
  90. ed4c711 Remove filename variable from ceval.c by Victor Stinner · 14 years ago
  91. 441cc01 compileall uses repr() to format filenames/paths by Victor Stinner · 14 years ago
  92. a16b05b Merged revisions 88475 via svnmerge from by Ned Deily · 14 years ago
  93. fd34b37 Remove bootstrap code of PyUnicode_AsEncodedString() by Victor Stinner · 14 years ago
  94. 5eaee2e Issue #11268: Prevent Mac OS X Installer failure if Documentation by Ned Deily · 14 years ago
  95. ddb5240 Issue #11089: Fix performance issue limiting the use of ConfigParser() by Raymond Hettinger · 14 years ago
  96. e660360 Issue #11089: Fix performance issue limiting the use of ConfigParser() by Raymond Hettinger · 14 years ago
  97. 31f5929 Issue #10990: Prevent tests from clobbering a set trace function. by Brett Cannon · 14 years ago
  98. f3d2275 Merged revisions 88460 via svnmerge from by Antoine Pitrou · 14 years ago
  99. 54f0f84 Issue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffers by Antoine Pitrou · 14 years ago
  100. 7be5b78 Merged revisions 88456 via svnmerge from by Martin v. Löwis · 14 years ago