1. 1b94ab7 Bump to 3.3b2. by Georg Brandl · 13 years ago v3.3.0b2
  2. a81b481 Fix markup errors and update pydoc topics. by Georg Brandl · 13 years ago
  3. 80dd1af Issue #15424: Add a __sizeof__ implementation for array objects. by Meador Inge · 13 years ago
  4. 03b4d50 Issue #15424: Add a __sizeof__ implementation for array objects. by Meador Inge · 13 years ago
  5. 688a551 fix docstring wording by Philip Jenvey · 13 years ago
  6. f410ce8 Issue #15502: Refactor some code. by Brett Cannon · 13 years ago
  7. 731d48a update docstring per the extension package fix, refactor by Philip Jenvey · 13 years ago
  8. ac9f2f3 Issue #15576: Allow extension modules to be a package's __init__ by Brett Cannon · 13 years ago
  9. f4dc920 Issue #15502: Finish bringing importlib.abc in line with the current by Brett Cannon · 13 years ago
  10. 25a02d4 Issue #15601: fix tkinter test_variables failure with OS X Aqua Tk 8.4 by Andrew Svetlov · 13 years ago
  11. 3a2b97e Issue #14992: merge from 3.2 by Ned Deily · 13 years ago
  12. c622f42 Issue #14992: Prevent test_os test_exist_ok_s_isgid_directory test case by Ned Deily · 13 years ago
  13. 9d512ab Issue #13072: Fix test_array for installation without the ctypes module by Victor Stinner · 13 years ago
  14. 2965011 regrtest: give more information when a child process fails with an error by Victor Stinner · 13 years ago
  15. bded28c Issue #13072: Ooops, now fix test_array for Linux with 32-bit wchar_t... by Victor Stinner · 13 years ago
  16. 8d4734f Issue #13072: Fix test_array for Windows with 16-bit wchar_t by Victor Stinner · 13 years ago
  17. 0ed0505 merge heads by Benjamin Peterson · 13 years ago
  18. b37df51 fix yield from return value on custom iterators (closes #15568) by Benjamin Peterson · 13 years ago
  19. d340b43 Issue #15163: Pydoc shouldn't show __loader__ as a part of a module's data. by Brett Cannon · 13 years ago
  20. cb4996a Issue #15471: Don't use mutable object as default values for the by Brett Cannon · 13 years ago
  21. 21603c9 merge heads by Benjamin Peterson · 13 years ago
  22. 4eda937 add another testcase by Benjamin Peterson · 13 years ago
  23. 415d0f5 Merge by Antoine Pitrou · 13 years ago
  24. 4adc9a8 Fix CGI tests to take into account the platform's line ending (issue #13119) by Antoine Pitrou · 13 years ago
  25. e768c39 Fix CGI tests to take into account the platform's line ending (issue #13119) by Antoine Pitrou · 13 years ago
  26. 0435400 #15546: Also fix GzipFile.peek(). by Nadeem Vawda · 13 years ago
  27. e3ded95 Issue #14814: Remove redundant property from interface objects - prefixlen can be accessed via the associated network object by Nick Coghlan · 13 years ago
  28. 730f67f Issue 14814: Docs work showed some more cases of networks pretending to be addresses and highlighted the weird approach to implementing the 'is_whatever' properties. Impl now illustrates far more clearly that networks have a property if both their network and broadcast addresses have that property by Nick Coghlan · 13 years ago
  29. e0c3f5e Close #15559: Implementing __index__ creates a nasty interaction with the bytes constructor. At least for 3.3, ipaddress objects must now be explicitly converted with int() and thus can't be passed directly to the hex() builtin. by Nick Coghlan · 13 years ago
  30. 37d3ff1 #15546: Fix {GzipFile,LZMAFile}.read1()'s handling of pathological input data. by Nadeem Vawda · 13 years ago
  31. 9c92a69 Fix test_venv to work with universal newlines (issue #13119) by Antoine Pitrou · 13 years ago
  32. 6f1a40f Merge universal newlines-related fixes (issue #13119) by Antoine Pitrou · 13 years ago
  33. ec2d269 Fix universal newlines test to avoid the newline translation done by sys.stdout. by Antoine Pitrou · 13 years ago
  34. 894375a Fix test_sys under Windows (issue #13119) by Antoine Pitrou · 13 years ago
  35. fa556bd Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog ended with '\'. by Andrew Svetlov · 13 years ago
  36. 5ad514d Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog ended with '\'. by Andrew Svetlov · 13 years ago
  37. 8aaeb2f Merge by Antoine Pitrou · 13 years ago
  38. 8486987 Issue #12655: Instead of requiring a custom type, os.sched_getaffinity and by Antoine Pitrou · 13 years ago
  39. 8280b4b #15546: Fix BZ2File.read1()'s handling of pathological input data. by Nadeem Vawda · 13 years ago
  40. d9f38bc asynchat speedup improvement: avoid to use a function mimicking old buffer() builtin behavior; instead use plain slicing by Giampaolo Rodola' · 13 years ago
  41. 90ef747 Close #13119: use "\r\n" newline for sys.stdout/err on Windows by Victor Stinner · 13 years ago
  42. 7b3f0fa Close #13119: use "\r\n" newline for sys.stdout/err on Windows by Victor Stinner · 13 years ago
  43. ba9b404 MERGE: #15512: Remove remnants of debugging code by Jesus Cea · 13 years ago
  44. 676e73b #15512: Remove remnants of debugging code by Jesus Cea · 13 years ago
  45. 1659b75 MERGE: Closes #15469: Correct __sizeof__ support for deque by Jesus Cea · 13 years ago
  46. 16e2fca Closes #15469: Correct __sizeof__ support for deque by Jesus Cea · 13 years ago
  47. 88ca04e MERGE: Closes #15512: Correct __sizeof__ support for parser by Jesus Cea · 13 years ago
  48. e9c5318 Closes #15512: Correct __sizeof__ support for parser by Jesus Cea · 13 years ago
  49. 5323173 Closes #15514: Correct __sizeof__ support for cpu_set by Jesus Cea · 13 years ago
  50. b3f5501 Close #15534: Fix a typo in the fast search function of the string library (_s => s) by Victor Stinner · 13 years ago
  51. 4941774 Issue #15502: Bring the importlib.PathFinder docs and docstring more in line with the new import system documentation, and fix various parts of the new docs that weren't quite right given PEP 420 or were otherwise a bit misleading. Also note the key terminology problem still being discussed in the issue by Nick Coghlan · 13 years ago
  52. ff79486 Close #15519: Properly expose WindowsRegistryFinder in importlib and bring the name into line with normal import terminology. Original patch by Eric Snow by Nick Coghlan · 13 years ago
  53. 8a9080f Issue #15502: Bring the importlib ABCs into line with the current state of the import protocols given PEP 420. Original patch by Eric Snow. by Nick Coghlan · 13 years ago
  54. 7c7ea62 Issue #15441: Skip test_nonascii_abspath() of test_genericpath on Windows by Victor Stinner · 13 years ago
  55. 53386d8 Issue #15463: Write a test for faulthandler truncating the name of functions by Victor Stinner · 13 years ago
  56. b303580 Issue #15525: Increase timeout when TerminateProcess() fails by Richard Oudkerk · 13 years ago
  57. a562ed0 Issue #8847: Merge with 3.2 by Martin v. Löwis · 13 years ago
  58. 4c1730d Issue #8847: Disable COMDAT folding in Windows PGO builds. by Martin v. Löwis · 13 years ago
  59. c9aa321 Closes #15499: Sleep is hardcoded in webbrowser.UnixBrowser by Jesus Cea · 13 years ago
  60. 0efcf99 abc fixes. by Barry Warsaw · 13 years ago
  61. 38f75cb Typo. by Barry Warsaw · 13 years ago
  62. 9a5af12 merge by Barry Warsaw · 13 years ago
  63. 233f684 Issue #9803: Don't close IDLE on saving if breakpoint is open. by Andrew Svetlov · 13 years ago
  64. 06c5c6d Issue #9803: Don't close IDLE on saving if breakpoint is open. by Andrew Svetlov · 13 years ago
  65. 336d9ac Issue #15425: Don't rely on the assumption that the current working directory is on sys.path (this will hopefully appease the XP buildbots) by Nick Coghlan · 13 years ago
  66. 42c0766 Close #15486: Simplify the mechanism used to remove importlib frames from tracebacks when they just introduce irrelevant noise by Nick Coghlan · 13 years ago
  67. d5698cb Fix initialization of the faulthandler module by Victor Stinner · 13 years ago
  68. 38732ea merge by Barry Warsaw · 13 years ago
  69. 504ba31 Issue #12288: Consider '0' and '0.0' as valid initialvalue for tkinter SimpleDialog. by Andrew Svetlov · 13 years ago
  70. 1fb0e3f Issue #12288: Consider '0' and '0.0' as valid initialvalue for tkinter SimpleDialog. by Andrew Svetlov · 13 years ago
  71. 754d5ef Better test for BytesIO.__sizeof__, now that the struct module supports (s)size_t. by Antoine Pitrou · 13 years ago
  72. eb00d09 Issue #14018: merge by Ned Deily · 13 years ago
  73. c556c64 Issue #14018: Update the OS X IDLE Tcl/Tk warning check to include by Ned Deily · 13 years ago
  74. 57911f6 Issue #15489: Add a __sizeof__ implementation for BytesIO objects. by Antoine Pitrou · 13 years ago
  75. 8f328d0 Issue #15489: Add a __sizeof__ implementation for BytesIO objects. by Antoine Pitrou · 13 years ago
  76. dee609c merged by Barry Warsaw · 13 years ago
  77. d7d2194 Integration of importdocs from the features/pep-420 repo. by Barry Warsaw · 13 years ago
  78. a264384 Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. by Antoine Pitrou · 13 years ago
  79. 10f0c50 Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. by Antoine Pitrou · 13 years ago
  80. 2b16844 Issue #15467: Merge 3.2 by Martin v. Löwis · 13 years ago
  81. 33f7997 Issue #15467: Move helpers for __sizeof__ tests into test_support. by Martin v. Löwis · 13 years ago
  82. 5ee9892 Close #15425: Eliminate more importlib related traceback noise by Nick Coghlan · 13 years ago
  83. bb9b1c1 Issue #15402: Simplify Struct.__sizeof__ and make tests more precise. by Meador Inge · 13 years ago
  84. 90bc2dbc Issue #15402: Simplify Struct.__sizeof__ and make tests more precise. by Meador Inge · 13 years ago
  85. e3010a8 Issue #14578: Support modules registered in the Windows registry again. by Martin v. Löwis · 13 years ago
  86. 5562d9d Issue #1692335: Move initial args assignment to BaseException.__new__ by Richard Oudkerk · 13 years ago
  87. 7d12d9d Issue #12834: Fix PyBuffer_ToContiguous() for non-contiguous arrays. by Stefan Krah · 13 years ago
  88. 6c779ea Issue #15364: Fix test_srcdir for the installed case. by Ned Deily · 13 years ago
  89. b15e622 Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses. by Richard Oudkerk · 13 years ago
  90. 4887b1c Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses. by Richard Oudkerk · 13 years ago
  91. 46874ad Issue #15364: Fix sysconfig.get_config_var('srcdir') to be an absolute path. by Richard Oudkerk · 13 years ago
  92. 3bbd2fa Issue #15456: Fix code __sizeof__ after #12399 change. by Martin v. Löwis · 13 years ago
  93. d0118e1 Restored test by specifying that the symlink links to a target (currently required for Windows symlinks). See issue15093 for details. by Jason R. Coombs · 13 years ago
  94. 0b9e7b9 Issue #15320: Make iterating the list of tests thread-safe when running tests in multiprocess mode. by Antoine Pitrou · 13 years ago
  95. 09f2e6f Issue #15320: Make iterating the list of tests thread-safe when running tests in multiprocess mode. by Antoine Pitrou · 13 years ago
  96. 0994148 merge 3.2 by Martin v. Löwis · 13 years ago
  97. 30d5e6c Issue #7163: Propagate return value of sys.stdout.write. Patch by Roger Serwy. by Martin v. Löwis · 13 years ago
  98. f4b341b merge 3.2 by Martin v. Löwis · 13 years ago
  99. c882b7c Issue #15318: Prevent writing to sys.stdin. Patch by Roger Serwy and myself. by Martin v. Löwis · 13 years ago
  100. 653e4b3 MERGE: Better test for Issue #15402: Add a __sizeof__ method to struct.Struct by Jesus Cea · 13 years ago