1. 921d124 Show the proper way to exit a cmd shell by Raymond Hettinger · 12 years ago
  2. 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 · 12 years ago
  3. 67097fd Use _RPCFile.write properly. by Martin v. Löwis · 12 years ago
  4. c276165 Don't use TextIOBase implementations in _RPCFile. by Martin v. Löwis · 12 years ago
  5. 8a75bed Issue #15319: Revert wrapping of sys.stdin. Patch by Serhiy Storchaka. by Martin v. Löwis · 12 years ago
  6. 59b9a7b Backport test for nested namespace packages. by Antoine Pitrou · 12 years ago
  7. 1d0f6dd normalize whitespace by Martin v. Löwis · 12 years ago
  8. 9ae3f7a Issue #13532: Check that arguments to sys.stdout.write are strings. by Martin v. Löwis · 12 years ago
  9. 44dea9d Issue 12510: Delete actual first param name for all methods; revise tests. by Terry Jan Reedy · 12 years ago
  10. 168456d revert the changes done for issue14826 - quoting witin Request is not desirable. by Senthil Kumaran · 12 years ago
  11. 83efd6c Issue #13557: Clarify effect of giving two different namespaces to exec or by Terry Jan Reedy · 12 years ago
  12. 45ce4dc issue 14826 - Address the buildbot failure ( explanation msg164973) by Senthil Kumaran · 12 years ago
  13. b7451ce Fix issue14826 - make urllib.request.Request quoted url consistent with URLOpener open method. by Senthil Kumaran · 12 years ago
  14. 11f0b41 Issue #14990: tokenize: correctly fail with SyntaxError on invalid encoding declaration. by Florent Xicluna · 12 years ago
  15. 9235b25 Issue #15247: FileIO now raises an error when given a file descriptor pointing to a directory. by Antoine Pitrou · 12 years ago
  16. 01cca5e Issue #15020: The program name used to search for Python's path is now "python3" under Unix, not "python". by Antoine Pitrou · 12 years ago
  17. f01a337 Fix issue # 15033 - Return the proper exitcode for failure when modules are invoked using -m switch. Patch contributed by Jeff Knupp by Senthil Kumaran · 12 years ago
  18. 035997f Issue #1677: Unused variable warning in Non-Windows by Jesus Cea · 12 years ago
  19. 29feb1f Make call of os.getppid() conditional: it is not available on Windows. by Georg Brandl · 12 years ago
  20. 3aa0c9d Fix inconsistent function name in embedding howto. by Georg Brandl · 12 years ago
  21. 4cf1cc7 Issue #15171: Quote the variable that expands to the current directory. by Stefan Krah · 12 years ago
  22. c399185 Issue #9239: add tests for modifying zipfile comments in append mode. by Antoine Pitrou · 12 years ago
  23. 4854533 Merged by Tim Golden · 12 years ago
  24. eda29f4 urllib.parse cleanup. rename keywords used as variables by Senthil Kumaran · 12 years ago
  25. b8b6a68 Better diagnose test failure by Antoine Pitrou · 12 years ago
  26. b92b757 Issue #1677: Handle better a race condition between the interactive interpreter and by Tim Golden · 12 years ago
  27. 5b5619f #5346: Preserve permissions of mbox, MMDF and Babyl mailbox files on flush() by Petri Lehtinen · 12 years ago
  28. b6ee3d6 #9559: Don't call _pre_mailbox_hook more than once by Petri Lehtinen · 12 years ago
  29. 4a27d9f urlparse docs clean up - no reference to earlier draft by Senthil Kumaran · 12 years ago
  30. 2d24e94 Issue #5067: improve some json error messages. Patch by Serhiy Storchaka. by Antoine Pitrou · 12 years ago
  31. 24319ac Issue #10571: Fix the "--sign" option of distutils' upload command. by Antoine Pitrou · 12 years ago
  32. f29435f #9559: Append data to single-file mailbox files if messages are only added by Petri Lehtinen · 12 years ago
  33. 8237258 Flush stdout and stderr when running tests in parallel by Antoine Pitrou · 12 years ago
  34. d0bb9c6 Allow passing extra testing options to the buildbot test scripts by Antoine Pitrou · 12 years ago
  35. 79035bd Issue #15079: make a test applicable to both C and Python versions of the pickle module. by Antoine Pitrou · 12 years ago
  36. b837192 Issue #14443: ensure that brp-python-bytecompile is invoked with the correct by David Malcolm · 12 years ago
  37. 72a80e8 issue13666 - Fixing datetime documentation example when using tzinfo by Senthil Kumaran · 12 years ago
  38. f21804a Issue #13685 - Update argparse help message for % sign usage. by Senthil Kumaran · 12 years ago
  39. 3e6d71d Issue #15179: Closed socket on connection failure. Thanks to Kazutaka Morita for the patch. by Vinay Sajip · 12 years ago
  40. 1dd75a6 Backport test_nntplib fixes from default. by Antoine Pitrou · 12 years ago
  41. 62ba042 Issue #15171: Try the HOST_PYTHON hack for 3.2. by Stefan Krah · 12 years ago
  42. b5ba203 Backout change e8f44ebacda7052267318cecf5b6f128d35add17. Reverting the test by Gregory P. Smith · 12 years ago
  43. 33369cf Fix a bunch of "versionchanged" related markup errors. by Georg Brandl · 12 years ago
  44. 26af3b2 Refer test_xmlrpc_net to the new buildbot URL at buildbot.python.org. by Georg Brandl · 12 years ago
  45. 496660c Partial backport of 612f34e31270: fix spacing error in exception message. by Georg Brandl · 12 years ago
  46. 5135992 Fixes issue #12268: File readline, readlines and read() or readall() methods by Gregory P. Smith · 12 years ago
  47. 8150492 Speed up test_io by >2x by reducing the sleep time using setitimer instead of by Gregory P. Smith · 12 years ago
  48. 7349eb2 The build target of this makefile is python3.dll, not python32.dll. by Martin v. Löwis · 12 years ago
  49. 99cc629 Issue #15142: Fix reference leak when deallocating instances of types created using PyType_FromSpec(). by Antoine Pitrou · 12 years ago
  50. b8dc3ab Issue #12965: More PyLong_As* clarifications. Thanks Stefan Krah. by Mark Dickinson · 12 years ago
  51. f0acfee Issue #12965: Clean up C-API docs for PyLong_AsLongLong(AndOverflow); clarify that __int__ will be called for non-PyLongs by Mark Dickinson · 12 years ago
  52. 0a22924 Issue #12965: Clean up C-API docs for PyLong_AsLong(AndOverflow); clarify that __int__ will be called for non-PyLongs by Mark Dickinson · 12 years ago
  53. 9b0c006 Remove useless test (flowinfo is unsigned). by Charles-François Natali · 12 years ago
  54. a07548e Issue #14653: email.utils.mktime_tz() no longer relies on system by Alexander Belopolsky · 12 years ago
  55. 9ed8b4e #10053: Don't close FDs when FileIO.__init__ fails by Hynek Schlawack · 12 years ago
  56. 103e811 Fix GzipFile's handling of filenames given as bytes objects. by Nadeem Vawda · 12 years ago
  57. f29ec4b Issue #15101: Make pool finalizer avoid joining current thread. by Richard Oudkerk · 12 years ago
  58. da7a6e7 Fix NEWS entry for #15036 by Petri Lehtinen · 12 years ago
  59. 3ac8c78 Update out of date docstring. by R David Murray · 12 years ago
  60. f90ea1f #14840: Add a bit on the difference between tuples and lists. Initial patch by Zachary Ware. by Ezio Melotti · 12 years ago
  61. 14d99a1 Ignore X-Antivirus headers in test_nntplib by Nick Coghlan · 12 years ago
  62. e6ef462 Issue #15095: Use better assertions in test_imaplib by Nick Coghlan · 12 years ago
  63. be4e4b5 Issue #15043: skip test_gdb if the custom hooks can't be loaded by Nick Coghlan · 12 years ago
  64. 50f147a Issue #15044: Handle Fedora 17's approach to ndbm compatibility by Nick Coghlan · 12 years ago
  65. 02653f1 #15036: Make a repeated changes and flushes work with single-file mailboxes by Petri Lehtinen · 12 years ago
  66. 1377522 Issue #14933: fix misleading doc about weakref support in extension types. by Antoine Pitrou · 12 years ago
  67. 993fe3f Issue #14937: Fix typo. Patch by Roger Serwy. by Martin v. Löwis · 12 years ago
  68. 27b130e Issue #15060: better fix, thanks to review on #python-dev by Sandro Tosi · 12 years ago
  69. 56692f5 Issue #15060: fix typo in socket doc; Patch by anatoly techtonik by Sandro Tosi · 12 years ago
  70. 197651b Issue #10133: Make multiprocessing deallocate buffer if socket read fails. by Richard Oudkerk · 12 years ago
  71. 2a2ce4f Issue #12510: Revise and triple # of calltip tests, with an eye to unittest by Terry Jan Reedy · 12 years ago
  72. 29471de Issue #13854: Properly handle non-integer, non-string arg to SystemExit by Richard Oudkerk · 12 years ago
  73. e41682b Issue #12157: pool.map() does not handle empty iterable correctly by Richard Oudkerk · 12 years ago
  74. a3a164a Nudge readers towards a more accurate mental model for loop else clauses by Nick Coghlan · 12 years ago
  75. 58f07a9 Fixes issue #15000: support the odd x32 abi on posixsubprocess's system call. by Gregory P. Smith · 12 years ago
  76. 2d7d56a Revert the modification of e.strerror in 3.2 as that kind of change could by Gregory P. Smith · 12 years ago
  77. 61ed804 Move the 14992 note to the correct section. by Gregory P. Smith · 12 years ago
  78. a81c856 Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError by Gregory P. Smith · 12 years ago
  79. 9f44a66 PEP 3131: support non-ASCII characters in auto-completion of identifiers. by Martin v. Löwis · 12 years ago
  80. 97aa21b Do not try to insert control characters. by Martin v. Löwis · 12 years ago
  81. 862d13a Issue #14937: Perform auto-completion of filenames in strings even for non-ASCII filenames. by Martin v. Löwis · 12 years ago
  82. e606e23 Issue 12510: Expand 2 bare excepts. Improve comments. Change deceptive name by Terry Jan Reedy · 12 years ago
  83. a948c79 Issue 10365: Add and replace comments; condense defaulted attribute access. by Terry Jan Reedy · 12 years ago
  84. 7f67133 backport c4bd68be5fc6 to 3.2 by Sandro Tosi · 12 years ago
  85. 29d09aa Issue #14926: fix docstring highlight by Sandro Tosi · 12 years ago
  86. 964f205 refer to time.strftime by Sandro Tosi · 12 years ago
  87. 554b348 #14957: fix doc typo. by R David Murray · 12 years ago
  88. 8e8fbea don't leak if the __class__ closure is set by Benjamin Peterson · 12 years ago
  89. ae1b94b #14957: clarify splitlines docs. by R David Murray · 12 years ago
  90. 3f7d1d3 Issue #14968: set 'Inplace Operators' as subsection; patch by Lars Buitinck by Sandro Tosi · 12 years ago
  91. 8b2a56b Issue #14962: Update text coloring in IDLE shell window after changing by Ned Deily · 12 years ago
  92. d70be9b Added test skip under Windows, as not applicable there. by Vinay Sajip · 12 years ago
  93. cf4a1b7 Add news item for #14943 by Brian Curtin · 12 years ago
  94. 13c7034 Fix #14943. Update the proper default value and list the proper argument names in the explanation. by Brian Curtin · 12 years ago
  95. 3aee941 Issue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu. by Ned Deily · 12 years ago
  96. e1ad3da Issue #14775: Fix a potential quadratic dict build-up due to the garbage collector repeatedly trying to untrack dicts. by Antoine Pitrou · 12 years ago
  97. 031e25b Issue #9041: raised exception is misleading by Meador Inge · 12 years ago
  98. 4b6045c Issue #14443: Tell rpmbuild to use the correct version of Python by Nick Coghlan · 12 years ago
  99. e1c5087 Issue14929: Stop Idle 3.x from closing on Unicode decode errors when grepping. by Terry Jan Reedy · 12 years ago
  100. c5301ef Issue12510: Attempting to get invalid tooltip no longer closes Idle. by Terry Jan Reedy · 12 years ago