1. 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 · 12 years ago
  2. 37d3ff1 #15546: Fix {GzipFile,LZMAFile}.read1()'s handling of pathological input data. by Nadeem Vawda · 12 years ago
  3. 9c92a69 Fix test_venv to work with universal newlines (issue #13119) by Antoine Pitrou · 12 years ago
  4. 6f1a40f Merge universal newlines-related fixes (issue #13119) by Antoine Pitrou · 12 years ago
  5. ec2d269 Fix universal newlines test to avoid the newline translation done by sys.stdout. by Antoine Pitrou · 12 years ago
  6. 894375a Fix test_sys under Windows (issue #13119) by Antoine Pitrou · 12 years ago
  7. c4d974d Remove unused variable `trim_get_code`. by Antoine Pitrou · 12 years ago
  8. 15f3d1e Issue #12655: Mention multiprocessing.cpu_count() in os.sched_getaffinity() doc by Victor Stinner · 12 years ago
  9. fa556bd Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog ended with '\'. by Andrew Svetlov · 12 years ago
  10. 5ad514d Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog ended with '\'. by Andrew Svetlov · 12 years ago
  11. ba5010a merge with 3.2 by Sandro Tosi · 12 years ago
  12. da9df92 add missing period; thanks to Gaston Fiore from docs@ by Sandro Tosi · 12 years ago
  13. 8aaeb2f Merge by Antoine Pitrou · 12 years ago
  14. 8486987 Issue #12655: Instead of requiring a custom type, os.sched_getaffinity and by Antoine Pitrou · 12 years ago
  15. 8280b4b #15546: Fix BZ2File.read1()'s handling of pathological input data. by Nadeem Vawda · 12 years ago
  16. d9f38bc asynchat speedup improvement: avoid to use a function mimicking old buffer() builtin behavior; instead use plain slicing by Giampaolo Rodola' · 12 years ago
  17. a0e3feb Null merge (fix already applied to the default branch) by Victor Stinner · 12 years ago
  18. 90ef747 Close #13119: use "\r\n" newline for sys.stdout/err on Windows by Victor Stinner · 12 years ago
  19. 7b3f0fa Close #13119: use "\r\n" newline for sys.stdout/err on Windows by Victor Stinner · 12 years ago
  20. d1f9352 (Merge 3.2) open() / TextIOWrapper doc: make it explicit than newline='\n' by Victor Stinner · 12 years ago
  21. 401e17d open() / TextIOWrapper doc: make it explicit than newline='\n' doesn't by Victor Stinner · 12 years ago
  22. 3c25dfb Make TextIOWrapper's documentation clearer by copying the newline argument's description from open(). by Antoine Pitrou · 12 years ago
  23. 0c1c0d4 Make TextIOWrapper's documentation clearer by copying the newline argument's description from open(). by Antoine Pitrou · 12 years ago
  24. ba9b404 MERGE: #15512: Remove remnants of debugging code by Jesus Cea · 12 years ago
  25. 676e73b #15512: Remove remnants of debugging code by Jesus Cea · 12 years ago
  26. 1659b75 MERGE: Closes #15469: Correct __sizeof__ support for deque by Jesus Cea · 12 years ago
  27. 16e2fca Closes #15469: Correct __sizeof__ support for deque by Jesus Cea · 12 years ago
  28. 88ca04e MERGE: Closes #15512: Correct __sizeof__ support for parser by Jesus Cea · 12 years ago
  29. e9c5318 Closes #15512: Correct __sizeof__ support for parser by Jesus Cea · 12 years ago
  30. 5323173 Closes #15514: Correct __sizeof__ support for cpu_set by Jesus Cea · 12 years ago
  31. 077ef45 Update the What's New details for importlib based on doc/ABC changes. by Brett Cannon · 12 years ago
  32. 773468f Ditch the 'self' argument in importlib docs since it's implied. by Brett Cannon · 12 years ago
  33. b3f5501 Close #15534: Fix a typo in the fast search function of the string library (_s => s) by Victor Stinner · 12 years ago
  34. 77821b6 Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation code. by Antoine Pitrou · 12 years ago
  35. a9a53c7 Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation code. by Antoine Pitrou · 12 years ago
  36. 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 · 12 years ago
  37. e3376ef Clarify the import statement semantics, especially for implicit imports in the 'from X import Y' variant by Nick Coghlan · 12 years ago
  38. 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 · 12 years ago
  39. 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 · 12 years ago
  40. f37c0c7 Issue #15321: update PyPI upload doc to say --no-raw passed to rst2html.py by Eli Bendersky · 12 years ago
  41. a90f311 Cleanup findnocoding.py and pysource.py scripts (with infile/infile.close) by Victor Stinner · 12 years ago
  42. 98516a6 Fix findnocoding.p and pysource.py scripts by Victor Stinner · 12 years ago
  43. 7c7ea62 Issue #15441: Skip test_nonascii_abspath() of test_genericpath on Windows by Victor Stinner · 12 years ago
  44. 53386d8 Issue #15463: Write a test for faulthandler truncating the name of functions by Victor Stinner · 12 years ago
  45. 98a387b Fix the user signal handler of faulthandler by Victor Stinner · 12 years ago
  46. b303580 Issue #15525: Increase timeout when TerminateProcess() fails by Richard Oudkerk · 12 years ago
  47. c86e8d9 Improve wording for __hash__ by Antoine Pitrou · 12 years ago
  48. 0209dc1 Clarify that hash randomization is on by default by Antoine Pitrou · 12 years ago
  49. a562ed0 Issue #8847: Merge with 3.2 by Martin v. Löwis · 12 years ago
  50. d49b323 Issue #8847: Disable COMDAT folding in Windows PGO builds. Patch by Stefan Krah. by Martin v. Löwis · 12 years ago
  51. 4c1730d Issue #8847: Disable COMDAT folding in Windows PGO builds. by Martin v. Löwis · 12 years ago
  52. b685d19 merge heads by Benjamin Peterson · 12 years ago
  53. 481ae50 construct fields in the right order (closes #15517) by Benjamin Peterson · 12 years ago
  54. c9aa321 Closes #15499: Sleep is hardcoded in webbrowser.UnixBrowser by Jesus Cea · 12 years ago
  55. 0efcf99 abc fixes. by Barry Warsaw · 12 years ago
  56. 38f75cb Typo. by Barry Warsaw · 12 years ago
  57. dbdc3db - Issue #15295: Reorganize and rewrite the documentation on the import system. by Barry Warsaw · 12 years ago
  58. 9a5af12 merge by Barry Warsaw · 12 years ago
  59. dadebab Finally, a coherent set of terminology for all the lil' beasties involved. by Barry Warsaw · 12 years ago
  60. 233f684 Issue #9803: Don't close IDLE on saving if breakpoint is open. by Andrew Svetlov · 12 years ago
  61. 06c5c6d Issue #9803: Don't close IDLE on saving if breakpoint is open. by Andrew Svetlov · 12 years ago
  62. dfd72bb Issue #14814: fix some typos in howto/ipaddress.rst by Eli Bendersky · 12 years ago
  63. 0e49749 Issue #14814: reorganize ipaddress documentation and document all attributes of IPv[46]Address objects by Eli Bendersky · 12 years ago
  64. 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 · 12 years ago
  65. 42c0766 Close #15486: Simplify the mechanism used to remove importlib frames from tracebacks when they just introduce irrelevant noise by Nick Coghlan · 12 years ago
  66. 73a74da Issue #15231: rephrase the last paragraph slightly by Eli Bendersky · 12 years ago
  67. 1713f9a Update the string limit in the faulthandler documentations by Victor Stinner · 12 years ago
  68. d5698cb Fix initialization of the faulthandler module by Victor Stinner · 12 years ago
  69. 60622ed Minor markup tweak. by Brett Cannon · 12 years ago
  70. 73df364 Add a versionchanged mention to __import__ in regards to negative level values. by Brett Cannon · 12 years ago
  71. 722d3ae Issue #15508: Fix the docstring for __import__ to not mention negative by Brett Cannon · 12 years ago
  72. cbc4c19 Another XXX. by Barry Warsaw · 12 years ago
  73. c1e721b Address substantially all of Eric Snow's comments in issue #15295, except for by Barry Warsaw · 12 years ago
  74. 38732ea merge by Barry Warsaw · 12 years ago
  75. 504ba31 Issue #12288: Consider '0' and '0.0' as valid initialvalue for tkinter SimpleDialog. by Andrew Svetlov · 12 years ago
  76. 1fb0e3f Issue #12288: Consider '0' and '0.0' as valid initialvalue for tkinter SimpleDialog. by Andrew Svetlov · 12 years ago
  77. 754d5ef Better test for BytesIO.__sizeof__, now that the struct module supports (s)size_t. by Antoine Pitrou · 12 years ago
  78. f2fdd31 merge by Ned Deily · 12 years ago
  79. 79a348a null merge by Ned Deily · 12 years ago
  80. 3b79668 Issue #14018: Fix OS X Tcl/Tk framework checking when using OS X SDKs. by Ned Deily · 12 years ago
  81. 54f939b Issue #15463: the faulthandler module truncates strings to 500 characters, by Victor Stinner · 12 years ago
  82. eb00d09 Issue #14018: merge by Ned Deily · 12 years ago
  83. c556c64 Issue #14018: Update the OS X IDLE Tcl/Tk warning check to include by Ned Deily · 12 years ago
  84. 2910a7b Issue #14018: Fix OS X Tcl/Tk framework checking when using OS X SDKs. by Ned Deily · 12 years ago
  85. 5d6aeb8 Fix invalid UTF-8 encoding in commit message. by Ned Deily · 12 years ago
  86. 57911f6 Issue #15489: Add a __sizeof__ implementation for BytesIO objects. by Antoine Pitrou · 12 years ago
  87. 8f328d0 Issue #15489: Add a __sizeof__ implementation for BytesIO objects. by Antoine Pitrou · 12 years ago
  88. dee609c merged by Barry Warsaw · 12 years ago
  89. dde56f4 Add NEWS by Barry Warsaw · 12 years ago
  90. d7d2194 Integration of importdocs from the features/pep-420 repo. by Barry Warsaw · 12 years ago
  91. a264384 Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. by Antoine Pitrou · 12 years ago
  92. 10f0c50 Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. by Antoine Pitrou · 12 years ago
  93. 2b16844 Issue #15467: Merge 3.2 by Martin v. Löwis · 12 years ago
  94. 33f7997 Issue #15467: Move helpers for __sizeof__ tests into test_support. by Martin v. Löwis · 12 years ago
  95. 5ee9892 Close #15425: Eliminate more importlib related traceback noise by Nick Coghlan · 12 years ago
  96. bb9b1c1 Issue #15402: Simplify Struct.__sizeof__ and make tests more precise. by Meador Inge · 12 years ago
  97. 90bc2dbc Issue #15402: Simplify Struct.__sizeof__ and make tests more precise. by Meador Inge · 12 years ago
  98. dbf616d Issue #15431: Drop _freeze_importlib from all build configurations, by Martin v. Löwis · 12 years ago
  99. ee365ac Issue #15431: Declare PyImport_FrozenModules conditionally on Unix only. by Martin v. Löwis · 12 years ago
  100. e3010a8 Issue #14578: Support modules registered in the Windows registry again. by Martin v. Löwis · 12 years ago