1. 5d44c08 Issue #23353, asyncio: Workaround CPython bug #23353 by Victor Stinner · 9 years ago
  2. 7a66fc2 revert lineno and col_offset changes from #16795 (closes #21295) by Benjamin Peterson · 9 years ago
  3. c468b53 merge 3.3 (#23364, #23363) by Benjamin Peterson · 10 years ago
  4. 0eaabf1 check for overflows in permutations() and product() (closes #23363, closes #23364) by Benjamin Peterson · 10 years ago
  5. f635dc3 merge 3.3 (#23365) by Benjamin Peterson · 10 years ago
  6. 6f08229 check for overflow in combinations_with_replacement (closes #23365) by Benjamin Peterson · 10 years ago
  7. 819c4e9 merge 3.3 (#23366) by Benjamin Peterson · 10 years ago
  8. 4b40eeb detect overflow in combinations (closes #23366) by Benjamin Peterson · 10 years ago
  9. d40f136 https goodness by Benjamin Peterson · 10 years ago
  10. 337578b fix tests on systems that can't validate python.org by Benjamin Peterson · 10 years ago
  11. c0b743a merge 3.3 by Benjamin Peterson · 10 years ago
  12. 68389ea remove extra ws by Benjamin Peterson · 10 years ago
  13. 3675cd9 merge 3.3 (#23369) by Benjamin Peterson · 10 years ago
  14. e3bfe19 fix possible overflow in encode_basestring_ascii (closes #23369) by Benjamin Peterson · 10 years ago
  15. 3a43d06 Whitespace. by Stefan Krah · 10 years ago
  16. 0dc4e15 Issue #23352: Document that Py_buffer.suboffsets must be NULL if no suboffsets by Stefan Krah · 10 years ago
  17. 7213fcc Issue #23370: Fix off-by-one error for non-contiguous buffers. by Stefan Krah · 10 years ago
  18. f046dfe Added a cookbook entry on logging audible messages. by Vinay Sajip · 10 years ago
  19. 6b89973 Issue #23212: Update Windows copy of OpenSSL to 1.0.1l by Steve Dower · 10 years ago
  20. 26f7b8a Issue #23353: Fix the exception handling of generators in PyEval_EvalFrameEx(). by Victor Stinner · 10 years ago
  21. fdc9953 Issue #22765: Fixed test_gdb failures. Supressed unexpected gdb output. by Serhiy Storchaka · 10 years ago
  22. 756f0b1 Fix asyncio doc typo. by R David Murray · 10 years ago
  23. 188f2c0 asyncio doc: document the new ResourceWarning warnings by Victor Stinner · 10 years ago
  24. f2e43cb Issue #23347, asyncio: send_signal(), terminate(), kill() don't check if the by Victor Stinner · 10 years ago
  25. 1077dee asyncio doc: add a section about task cancellation by Victor Stinner · 10 years ago
  26. 7a55b88 Issue #21962, asyncio doc: Suggest the usage of wait_for() to replace by Victor Stinner · 10 years ago
  27. 1241ecc Issue #23347, asyncio: Make BaseSubprocessTransport.wait() private by Victor Stinner · 10 years ago
  28. 0698638 asyncio: Fix ResourceWarning in test_subprocess.test_proc_exit() by Victor Stinner · 10 years ago
  29. 47cd10d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  30. 978a9af Issue #23243, asyncio: Emit a ResourceWarning when an event loop or a transport by Victor Stinner · 10 years ago
  31. 3c0cf05 Issue #22668: Remove endianness assumption in test. by Stefan Krah · 10 years ago
  32. fa5d6a5 Issue #22668: Ensure that format strings survive slicing after casting. by Stefan Krah · 10 years ago
  33. 2934262 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  34. 54a231d asyncio doc: document Protocol state machine by Victor Stinner · 10 years ago
  35. 47bbea7 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  36. 7b5a900 asyncio: BaseSubprocessTransport._kill_wait() now also call close() by Victor Stinner · 10 years ago
  37. 702dada Always #define _PyLong_FromDev as we always need it to compile rather than by Gregory P. Smith · 10 years ago
  38. fa73779 asyncio: Fix _SelectorSocketTransport constructor by Victor Stinner · 10 years ago
  39. f07801b asyncio: SSL transports now clear their reference to the waiter by Victor Stinner · 10 years ago
  40. b507cba asyncio: Fix SSLProtocol.eof_received() by Victor Stinner · 10 years ago
  41. a89f5f0 Update setuptools to 12.0.5 and pip to 6.0.7 by Donald Stufft · 10 years ago
  42. 000daae Fixed memory leak in marshal. by Serhiy Storchaka · 10 years ago
  43. e09bcc8 Issue #22079: PyType_Ready() now checks that statically allocated type has by Serhiy Storchaka · 10 years ago
  44. db07164 Added a logging cookbook entry on customized exception formatting. by Vinay Sajip · 10 years ago
  45. ff018e4 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  46. 4dbc305 Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. Analysis by Serhiy Storchaka · 10 years ago
  47. b68c420 Issue #23286: Fix typo in the tutorial. by Berker Peksag · 10 years ago
  48. 498b1f6 asyncio, _overlapped.ConnectPipe(): release the GIL by Victor Stinner · 10 years ago
  49. 41063d2 asyncio, Tulip issue 204: Fix IocpProactor.recv() by Victor Stinner · 10 years ago
  50. 24dfa3c Issue #23095, asyncio: Fix _WaitHandleFuture.cancel() by Victor Stinner · 10 years ago
  51. e0fd157 Issue #23293, asyncio: Rewrite IocpProactor.connect_pipe() as a coroutine by Victor Stinner · 10 years ago
  52. 2a3f38f asyncio: PipeHandle.fileno() now raises an exception if the pipe is closed by Victor Stinner · 10 years ago
  53. a19b7b3 asyncio: Fix ProactorEventLoop.start_serving_pipe() by Victor Stinner · 10 years ago
  54. b76bcc4 Issue #14099: Backout changeset e5bb3044402b (except adapted tests). by Serhiy Storchaka · 10 years ago
  55. b6c0c5b Merge heads by Serhiy Storchaka · 10 years ago
  56. 2bef585 Issue #18518: timeit now rejects statements which can't be compiled outside by Serhiy Storchaka · 10 years ago
  57. 9b524d5 Issue #23208, asyncio: Add BaseEventLoop._current_handle by Victor Stinner · 10 years ago
  58. 3d2256f Issue #23293, asyncio: Cleanup IocpProactor.close() by Victor Stinner · 10 years ago
  59. 2596dd0 asyncio: Close transports on error by Victor Stinner · 10 years ago
  60. 21d7533 Issue #23094: Fixed readline with frames in Python implementation of pickle. by Serhiy Storchaka · 10 years ago
  61. 5106d04 Issue #7665: Fixed tests test_ntpath and test_urllib2 when ran in the by Serhiy Storchaka · 10 years ago
  62. 624caf7 Add credits for Martin Panter. by Serhiy Storchaka · 10 years ago
  63. f186e12 Issue #23268: Fixed bugs in the comparison of ipaddress classes. by Serhiy Storchaka · 10 years ago
  64. f4b7a02 Issue #21408: The default __ne__() now returns NotImplemented if __eq__() by Serhiy Storchaka · 10 years ago
  65. 155ceaa handle headers with no key (closes #19996) by Benjamin Peterson · 10 years ago
  66. 7e4b905 Issue #23321: Fixed a crash in str.decode() when error handler returned by Serhiy Storchaka · 10 years ago
  67. 1923b62 #23215: reflow paragraph. by R David Murray · 10 years ago
  68. f1f9675 #23251: Note that time.sleep affects the calling thread only. by R David Murray · 10 years ago
  69. e6cc701 Increase http.client.HTTPConnection test coverage. by Senthil Kumaran · 10 years ago
  70. ff37cfe Issue #23305: clarified RotatingFileHandler documentation. by Vinay Sajip · 10 years ago
  71. 5abca70 Issue #23207: logging.basicConfig() now does additional validation of its arguments. by Vinay Sajip · 10 years ago
  72. 71e7296 Updated pyvenv documentation to match its current behaviour. by Vinay Sajip · 10 years ago
  73. 48e8100 revert 7b833bd1f509. I misread the side effect that the code was triggering. by Gregory P. Smith · 10 years ago
  74. 5666461 Remove the unimplemented but ignored without='-E' parameters being passed to by Gregory P. Smith · 10 years ago
  75. fe7c5d6 Only pass -E to the child interpreter if our interpreter was running in that by Gregory P. Smith · 10 years ago
  76. 2b77c54 asyncio, Tulip issue 204: Fix IocpProactor.accept_pipe() by Victor Stinner · 10 years ago
  77. 34cd2ae Break up TestCommandLine.test_env_var into four distinct tests. by Gregory P. Smith · 10 years ago
  78. 7ffa2c5 Issue #23293, asyncio: Rewrite IocpProactor.connect_pipe() by Victor Stinner · 10 years ago
  79. 752aba7 asyncio: IocpProactor.close() doesn't cancel anymore futures which are already by Victor Stinner · 10 years ago
  80. f6228f0 Issue #23009: Add missing "import sys" in test_selectors by Victor Stinner · 10 years ago
  81. 14d45c0 Issue #23009: Skip test_selectors.test_empty_select() on Windows by Victor Stinner · 10 years ago
  82. 1ca9392 Issue #23095, asyncio: IocpProactor.close() must not cancel pending by Victor Stinner · 10 years ago
  83. 0c2e408 asyncio: BaseEventLoop._create_connection_transport() catchs any exception, not by Victor Stinner · 10 years ago
  84. d0a28de Issue #23095, asyncio: Rewrite _WaitHandleFuture.cancel() by Victor Stinner · 10 years ago
  85. 442b0ad asyncio: pyflakes, remove unused import by Victor Stinner · 10 years ago
  86. cd0f7f9 asyncio: Enhance BaseProactorEventLoop._loop_self_reading() by Victor Stinner · 10 years ago
  87. b5684c4 Add the command line to the AssertionError raised by test.script_helper's by Gregory P. Smith · 10 years ago
  88. b176d40 Issue #23280: Fix docstrings for binascii.(un)hexlify by Zachary Ware · 10 years ago
  89. 5a494f6 Issue #22317: Document the action parameter in ArgumentParser.add_subparsers() docs. by Berker Peksag · 10 years ago
  90. 173ad83 Issue #23248: Update ssl error codes from latest OpenSSL git master. by Antoine Pitrou · 10 years ago
  91. d3faf43 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 10 years ago
  92. b2653b3 Issue #23098: 64-bit dev_t is now supported in the os module. by Serhiy Storchaka · 10 years ago
  93. ccb416f Issue #23180: Rename IDLE "Windows" menu item to "Window". Patch by Al Sweigart. by Ned Deily · 10 years ago
  94. 3bbb37e Issue #23211: Fix patch for 3.4 differences. by Ned Deily · 10 years ago
  95. 1e012e6 Issue #23211: Workaround test_logging failure on some OS X 10.6 systems: by Ned Deily · 10 years ago
  96. 465b057 Closes #23256: Avoid a crash in test_ctypes by Zachary Ware · 10 years ago
  97. bd34162 capitialize "HttpOnly" and "Secure" as they appear in the standard and other impls (closes #23250) by Benjamin Peterson · 10 years ago
  98. f716d8b Issue #22685: Fix test_pause_reading() of asyncio/test_subprocess by Victor Stinner · 10 years ago
  99. 406204c Backout changeset 6ab2575bc12b by Victor Stinner · 10 years ago
  100. cbd3bd5 Closes #23160: Respect the environment variable SVNROOT in external-common.bat (patch by anselm.kruis) by Steve Dower · 10 years ago