1. 6cbe405 escape '\'; thanks to Steve Holden from docs@ by Sandro Tosi · 13 years ago
  2. 985104a it's getstatus() not setstatus(); thanks to Shaddi Hasan from docs@ by Sandro Tosi · 13 years ago
  3. 82a509c add missing quote in splitlines() example; thanks to Yevgen Yampolskiy from docs@ by Sandro Tosi · 13 years ago
  4. 8b2c71a update Geany URL; thanks to Karl Tarbet from docs@ by Sandro Tosi · 13 years ago
  5. ee903c5 add missing parenthesis to 'action' argparse doc; thanks to kishkin from docs@ by Sandro Tosi · 13 years ago
  6. 0a90a82 zip() returns an iterator, make a list() of it; thanks to Martin from docs@ by Sandro Tosi · 13 years ago
  7. fbd4f80 Issue #15444: Use proper spelling for non-ASCII contributor names. by Antoine Pitrou · 13 years ago
  8. cc98887 Remove unused variables in parsetok(). by Georg Brandl · 13 years ago
  9. 7b250a5 Revert 961a15aff2a6, this is already checked in another way. by Georg Brandl · 13 years ago
  10. 22bfa37 Closes #15620: check for presence of readline.clear_history(), which is apparently missing on some readline versions, before calling it in the test. by Georg Brandl · 13 years ago
  11. 03b4d50 Issue #15424: Add a __sizeof__ implementation for array objects. by Meador Inge · 13 years ago
  12. 7dbee38 fix docs for c-api memory functions by Andrew Svetlov · 13 years ago
  13. eec6420 Issue #15501: Document exception classes in subprocess module. by Andrew Svetlov · 13 years ago
  14. c622f42 Issue #14992: Prevent test_os test_exist_ok_s_isgid_directory test case by Ned Deily · 13 years ago
  15. 05c35a6 #15554: clarify splitlines/split differences. by R David Murray · 13 years ago
  16. 9b000e7 Issue #15482: Properly document the default 'level' parameter for __import__(). by Brett Cannon · 13 years ago
  17. 03e2180 Issue #15560: Fix building _sqlite3 extension on OS X with an SDK. by Ned Deily · 13 years ago
  18. e768c39 Fix CGI tests to take into account the platform's line ending (issue #13119) by Antoine Pitrou · 13 years ago
  19. ec2d269 Fix universal newlines test to avoid the newline translation done by sys.stdout. by Antoine Pitrou · 13 years ago
  20. 894375a Fix test_sys under Windows (issue #13119) by Antoine Pitrou · 13 years ago
  21. 5ad514d Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog ended with '\'. by Andrew Svetlov · 13 years ago
  22. da9df92 add missing period; thanks to Gaston Fiore from docs@ by Sandro Tosi · 13 years ago
  23. 90ef747 Close #13119: use "\r\n" newline for sys.stdout/err on Windows by Victor Stinner · 13 years ago
  24. 401e17d open() / TextIOWrapper doc: make it explicit than newline='\n' doesn't by Victor Stinner · 13 years ago
  25. 0c1c0d4 Make TextIOWrapper's documentation clearer by copying the newline argument's description from open(). by Antoine Pitrou · 13 years ago
  26. 676e73b #15512: Remove remnants of debugging code by Jesus Cea · 13 years ago
  27. 16e2fca Closes #15469: Correct __sizeof__ support for deque by Jesus Cea · 13 years ago
  28. e9c5318 Closes #15512: Correct __sizeof__ support for parser by Jesus Cea · 13 years ago
  29. a9a53c7 Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation code. by Antoine Pitrou · 13 years ago
  30. f37c0c7 Issue #15321: update PyPI upload doc to say --no-raw passed to rst2html.py by Eli Bendersky · 13 years ago
  31. 4c1730d Issue #8847: Disable COMDAT folding in Windows PGO builds. by Martin v. Löwis · 13 years ago
  32. 06c5c6d Issue #9803: Don't close IDLE on saving if breakpoint is open. by Andrew Svetlov · 13 years ago
  33. 1fb0e3f Issue #12288: Consider '0' and '0.0' as valid initialvalue for tkinter SimpleDialog. by Andrew Svetlov · 13 years ago
  34. 3b79668 Issue #14018: Fix OS X Tcl/Tk framework checking when using OS X SDKs. by Ned Deily · 13 years ago
  35. c556c64 Issue #14018: Update the OS X IDLE Tcl/Tk warning check to include by Ned Deily · 13 years ago
  36. 8f328d0 Issue #15489: Add a __sizeof__ implementation for BytesIO objects. by Antoine Pitrou · 13 years ago
  37. 10f0c50 Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. by Antoine Pitrou · 13 years ago
  38. 33f7997 Issue #15467: Move helpers for __sizeof__ tests into test_support. by Martin v. Löwis · 13 years ago
  39. 90bc2dbc Issue #15402: Simplify Struct.__sizeof__ and make tests more precise. by Meador Inge · 13 years ago
  40. 4887b1c Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses. by Richard Oudkerk · 13 years ago
  41. a58d668 Improved cookbook entry and fixed typo. by Vinay Sajip · 13 years ago
  42. e708a8a Issue #15041: update "see also" list in tkinter documentation. by Andrew Svetlov · 13 years ago
  43. 09f2e6f Issue #15320: Make iterating the list of tests thread-safe when running tests in multiprocess mode. by Antoine Pitrou · 13 years ago
  44. 707bd4e Mention the *limit* argument of TextIO.readline(). by Antoine Pitrou · 13 years ago
  45. 393e23f Issue #15445: Updated logging configuration documentation to highlight potential security risk posed by listen() in certain scenarios. by Vinay Sajip · 13 years ago
  46. 30d5e6c Issue #7163: Propagate return value of sys.stdout.write. Patch by Roger Serwy. by Martin v. Löwis · 13 years ago
  47. c882b7c Issue #15318: Prevent writing to sys.stdin. Patch by Roger Serwy and myself. by Martin v. Löwis · 13 years ago
  48. 186396d #15232: make NEWS entry more accurate. by R David Murray · 13 years ago
  49. ecd4e9d Issue #14197: For OS X framework builds, ensure links to the shared by Ned Deily · 13 years ago
  50. 55624da Rollback an incorrect Doc/ACKS.txt entry by Jesus Cea · 13 years ago
  51. 189fdf1 Better test for Issue #15402: Add a __sizeof__ method to struct.Struct by Jesus Cea · 13 years ago
  52. b14d8c9 Issue #15402: Add a __sizeof__ method to struct.Struct. by Meador Inge · 13 years ago
  53. 7e918cf merge heads. by Senthil Kumaran · 13 years ago
  54. 28a9f21 - Issue #15250: Document that filecmp.dircmp compares files shallowly. Patch contributed by Chris Jerdonek. by Senthil Kumaran · 13 years ago
  55. 6a31bc6 #15232: correctly mangle From lines in MIME preamble and epilogue by R David Murray · 13 years ago
  56. e60e12b #15429: Fix invalid mention of types.NoneType from None docs. by R David Murray · 13 years ago
  57. 76c28f7 Consistently raise a TypeError when a non str is passed to hashlib.new by Gregory P. Smith · 13 years ago
  58. 00528e8 #13922: argparse no longer incorrectly strips '--' after the first one. by R David Murray · 13 years ago
  59. b94082a #12353: argparse now correctly handles null argument values. by R David Murray · 13 years ago
  60. 15cd9a0 #14391: clarify docstring discussion of Action's 'type' argument's value. by R David Murray · 13 years ago
  61. e3de175 #15342: Add clarifying sentence to posixpath.join docstring. by R David Murray · 13 years ago
  62. ef391ac Raise ImportError if pyexpat's version is incompatible by Eli Bendersky · 13 years ago
  63. 6e571d6 Fix test_pprint random dict ordering. by Florent Xicluna · 13 years ago
  64. d6da90f Issues #10017 and #14998: Fix TypeError using pprint on dictionaries with unorderable key. by Florent Xicluna · 13 years ago
  65. b4bbee2 Issue #14579: Fix CVE-2012-2135: vulnerability in the utf-16 decoder after error handling. by Antoine Pitrou · 13 years ago
  66. ca9652e Issue #15406: Fix deprecation warning in ctypes test_bitfields.py by Meador Inge · 13 years ago
  67. ddcb620 Issue #15404: Refleak in PyMethodObject repr. by Andrew Svetlov · 13 years ago
  68. 3be7a8b Issue #15399: Added versionchanged for processName. by Vinay Sajip · 13 years ago
  69. 62a5c32 Closes #15395: memory leaks in selectmodule.c by Jesus Cea · 13 years ago
  70. ef86d12 Closes #15396: memory leak in tkinter by Jesus Cea · 13 years ago
  71. 29e49d6 Issue #15394: Fix ref leaks in PyModule_Create. by Meador Inge · 13 years ago
  72. 60c2266 Issue #6493: Fix handling of c_uint32 bitfields with width of 32 on Windows. by Meador Inge · 13 years ago
  73. 996ae04 remove unused variable by Meador Inge · 13 years ago
  74. f69e24e Issue #15368: fixing variable typo. by Meador Inge · 13 years ago
  75. 2ca6315 Issue #15368: make bytecode generation deterministic. by Meador Inge · 13 years ago
  76. 0b350c6 Use posixpath.join() explicitely in posixpath.join() test by Hynek Schlawack · 13 years ago
  77. ceb2331 merge heads by Eli Bendersky · 13 years ago
  78. 66099b0 ISsue #14988: restore Python 2's behavior of raising ImportError when unable to load pyexpat, instead of a SystemError/RuntimeError by Eli Bendersky · 13 years ago
  79. c5a4566 #15377: Make posixpath.join() more strict when checking for str/bytes mix by Hynek Schlawack · 13 years ago
  80. eb3e62f Issue #15230: Attempt to make the OS X buildbots happy by resolving the tmp dir symlink in the test suite by Nick Coghlan · 13 years ago
  81. 7cdc2bd Fix context manager use in posixpath.join() tests by Hynek Schlawack · 13 years ago
  82. 954d46b one more test fix for systems without select.poll. tested by deleting by Gregory P. Smith · 13 years ago
  83. ac14aa5 Fix unchecked select.poll reference in setUp and tearDown for by Gregory P. Smith · 13 years ago
  84. 5bcd005 Fix the with_poll tests for platforms without poll. missing import. by Gregory P. Smith · 13 years ago
  85. dad5711 Fixes Issue #14635: telnetlib will use poll() rather than select() when possible by Gregory P. Smith · 13 years ago
  86. 4774946 #15180: Clarify posixpath.join() error message when mixing str & bytes by Hynek Schlawack · 13 years ago
  87. a3d1cac Issue #15230: Update runpy docs to clarify a couple of points that came up in this issue by Nick Coghlan · 13 years ago
  88. 761bb11 Close #15230: runpy.run_path now sets __package__ correctly. Also refactored the runpy tests to use a more systematic approach by Nick Coghlan · 13 years ago
  89. 2bb3021 Try other approach to fix issue #15334. by Antoine Pitrou · 13 years ago
  90. 924ae1b Remove duplicate entry and fix order by Antoine Pitrou · 13 years ago
  91. f0b1baf Issue #15334: skip test_dynamic_key when run in non-interactive mode. by Antoine Pitrou · 13 years ago
  92. 68f4247 Issue #15338: skip test_UNC_path when the current user doesn't have enough permissions to access the path. by Antoine Pitrou · 13 years ago
  93. 52cc722 Add c_size_t and c_ssize_t to the ctypes summary table. by Antoine Pitrou · 13 years ago
  94. 921d124 Show the proper way to exit a cmd shell by Raymond Hettinger · 13 years ago
  95. 282083d Issue #15300: Ensure the temporary test working directories are in the same parent folder when running tests in multiprocess mode from a Python build. by Antoine Pitrou · 13 years ago
  96. 67097fd Use _RPCFile.write properly. by Martin v. Löwis · 13 years ago
  97. c276165 Don't use TextIOBase implementations in _RPCFile. by Martin v. Löwis · 13 years ago
  98. 8a75bed Issue #15319: Revert wrapping of sys.stdin. Patch by Serhiy Storchaka. by Martin v. Löwis · 13 years ago
  99. 59b9a7b Backport test for nested namespace packages. by Antoine Pitrou · 13 years ago
  100. 1d0f6dd normalize whitespace by Martin v. Löwis · 13 years ago