2015-01-26 |
Serhiy Storchaka | Issue #21408: The default __ne__() now returns NotImple... |
commit | commitdiff | tree | snapshot |
2015-01-26 |
Benjamin Peterson | handle headers with no key (closes #19996) |
commit | commitdiff | tree | snapshot |
2015-01-25 |
Serhiy Storchaka | Issue #23321: Fixed a crash in str.decode() when error... |
commit | commitdiff | tree | snapshot |
2015-01-25 |
R David Murray | #23215: reflow paragraph. |
commit | commitdiff | tree | snapshot |
2015-01-25 |
R David Murray | #23251: Note that time.sleep affects the calling thread... |
commit | commitdiff | tree | snapshot |
2015-01-25 |
Senthil Kumaran | Increase http.client.HTTPConnection test coverage. |
commit | commitdiff | tree | snapshot |
2015-01-23 |
Vinay Sajip | Issue #23305: clarified RotatingFileHandler documentation. |
commit | commitdiff | tree | snapshot |
2015-01-23 |
Vinay Sajip | Issue #23207: logging.basicConfig() now does additional... |
commit | commitdiff | tree | snapshot |
2015-01-23 |
Vinay Sajip | Updated pyvenv documentation to match its current behav... |
commit | commitdiff | tree | snapshot |
2015-01-23 |
Gregory P.... | revert 7b833bd1f509. I misread the side effect that... |
commit | commitdiff | tree | snapshot |
2015-01-23 |
Gregory P.... | Remove the unimplemented but ignored without='-E' param... |
commit | commitdiff | tree | snapshot |
2015-01-23 |
Gregory P.... | Only pass -E to the child interpreter if our interprete... |
commit | commitdiff | tree | snapshot |
2015-01-22 |
Victor Stinner | asyncio, Tulip issue 204: Fix IocpProactor.accept_pipe() |
commit | commitdiff | tree | snapshot |
2015-01-22 |
Gregory P.... | Break up TestCommandLine.test_env_var into four distinc... |
commit | commitdiff | tree | snapshot |
2015-01-22 |
Victor Stinner | Issue #23293, asyncio: Rewrite IocpProactor.connect_pipe() |
commit | commitdiff | tree | snapshot |
2015-01-22 |
Victor Stinner | asyncio: IocpProactor.close() doesn't cancel anymore... |
commit | commitdiff | tree | snapshot |
2015-01-22 |
Victor Stinner | Issue #23009: Add missing "import sys" in test_selectors |
commit | commitdiff | tree | snapshot |
2015-01-22 |
Victor Stinner | Issue #23009: Skip test_selectors.test_empty_select... |
commit | commitdiff | tree | snapshot |
2015-01-21 |
Victor Stinner | Issue #23095, asyncio: IocpProactor.close() must not... |
commit | commitdiff | tree | snapshot |
2015-01-21 |
Victor Stinner | asyncio: BaseEventLoop._create_connection_transport... |
commit | commitdiff | tree | snapshot |
2015-01-21 |
Victor Stinner | Issue #23095, asyncio: Rewrite _WaitHandleFuture.cancel() |
commit | commitdiff | tree | snapshot |
2015-01-21 |
Victor Stinner | asyncio: pyflakes, remove unused import |
commit | commitdiff | tree | snapshot |
2015-01-21 |
Victor Stinner | asyncio: Enhance BaseProactorEventLoop._loop_self_reading() |
commit | commitdiff | tree | snapshot |
2015-01-21 |
Gregory P.... | Add the command line to the AssertionError raised by... |
commit | commitdiff | tree | snapshot |
2015-01-20 |
Zachary Ware | Issue #23280: Fix docstrings for binascii.(un)hexlify |
commit | commitdiff | tree | snapshot |
2015-01-20 |
Berker Peksag | Issue #22317: Document the action parameter in Argument... |
commit | commitdiff | tree | snapshot |
2015-01-18 |
Antoine Pitrou | Issue #23248: Update ssl error codes from latest OpenSS... |
commit | commitdiff | tree | snapshot |
2015-01-18 |
Serhiy Storchaka | Issue #23181: More "codepoint" -> "code point". |
commit | commitdiff | tree | snapshot |
2015-01-18 |
Serhiy Storchaka | Issue #23098: 64-bit dev_t is now supported in the... |
commit | commitdiff | tree | snapshot |
2015-01-18 |
Ned Deily | Issue #23180: Rename IDLE "Windows" menu item to "Window". |
commit | commitdiff | tree | snapshot |
2015-01-18 |
Ned Deily | Issue #23211: Fix patch for 3.4 differences. |
commit | commitdiff | tree | snapshot |
2015-01-18 |
Ned Deily | Issue #23211: Workaround test_logging failure on some... |
commit | commitdiff | tree | snapshot |
2015-01-17 |
Zachary Ware | Closes #23256: Avoid a crash in test_ctypes |
commit | commitdiff | tree | snapshot |
2015-01-17 |
Benjamin Peterson | capitialize "HttpOnly" and "Secure" as they appear... |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Victor Stinner | Issue #22685: Fix test_pause_reading() of asyncio/test_... |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Victor Stinner | Backout changeset 6ab2575bc12b |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Steve Dower | Closes #23160: Respect the environment variable SVNROOT... |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Victor Stinner | Closes #23219: cancelling asyncio.wait_for() now cancel... |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Victor Stinner | asyncio: Close transports in tests |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Victor Stinner | asyncio: Close the transport on subprocess creation... |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Victor Stinner | asyncio: Fix _ProactorBasePipeTransport.close() |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Victor Stinner | asyncio: Fix _ProactorBasePipeTransport.__repr__() |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Victor Stinner | Issue #23243: Close explicitly transports in asyncio... |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Victor Stinner | Issue #23243: Close explicitly event loops in asyncio... |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Victor Stinner | Issue #23243: Fix asyncio._UnixWritePipeTransport.close() |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Victor Stinner | SSLProtocol: set the _transport attribute in the constr... |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Victor Stinner | Issue #23242: asyncio.SubprocessStreamProtocol now... |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Victor Stinner | Issue #22560: Fix typo: call -> call_soon |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Victor Stinner | Issue #22560: Fix SSLProtocol._on_handshake_complete() |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Victor Stinner | StreamWriter: close() now clears the reference to the... |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Georg Brandl | Closes #23244: fix typo. Thanks Mayank Tripathi for... |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Ethan Furman | Issue22997: minor doc update; thanks to Simoen Visser |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Ethan Furman | Issue22988: clarify yield and exception blocks |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Ethan Furman | Issue20467: clarify __init__'s role |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Ethan Furman | Issue20467: clarify __init__'s role |
commit | commitdiff | tree | snapshot |
2015-01-15 |
Benjamin Peterson | fix parsing reST with code or code-block directives... |
commit | commitdiff | tree | snapshot |
2015-01-14 |
Victor Stinner | asyncio: sync with Tulip |
commit | commitdiff | tree | snapshot |
2015-01-14 |
Victor Stinner | Issue #23197: On SSL handshake failure on matching... |
commit | commitdiff | tree | snapshot |
2015-01-14 |
Victor Stinner | Issue #23197, asyncio: On SSL handshake failure, check... |
commit | commitdiff | tree | snapshot |
2015-01-14 |
Victor Stinner | Python issue #23173: sync with Tulip |
commit | commitdiff | tree | snapshot |
2015-01-13 |
Victor Stinner | Issue #23198: Reactor asyncio.StreamReader |
commit | commitdiff | tree | snapshot |
2015-01-13 |
Victor Stinner | Issue #22560: New SSL implementation based on ssl.MemoryBIO |
commit | commitdiff | tree | snapshot |
2015-01-13 |
Victor Stinner | Tulip issue 184: Fix test_pipe() on Windows |
commit | commitdiff | tree | snapshot |
2015-01-13 |
Victor Stinner | Issue #22922: Fix ProactorEventLoop.close() |
commit | commitdiff | tree | snapshot |
2015-01-13 |
Benjamin Peterson | fix instances of consecutive articles (closes #23221) |
commit | commitdiff | tree | snapshot |
2015-01-13 |
Victor Stinner | Issue #23209, #23225: selectors.BaseSelector.close... |
commit | commitdiff | tree | snapshot |
2015-01-11 |
Donald Stufft | Update setuptools to 11.3.1 |
commit | commitdiff | tree | snapshot |
2015-01-11 |
Antoine Pitrou | Issue #22952: improve multiprocessing doc introduction... |
commit | commitdiff | tree | snapshot |
2015-01-11 |
Mark Dickinson | Issue #21902: Replace incorrect 'hyperbolic arc sine... |
commit | commitdiff | tree | snapshot |
2015-01-09 |
Benjamin Peterson | remove buzzword (closes #23210) |
commit | commitdiff | tree | snapshot |
2015-01-09 |
Ned Deily | Issue #23212: 3.4-specific OS X installer updates |
commit | commitdiff | tree | snapshot |
2015-01-09 |
Ned Deily | Issue #23212: Update OS X installer build OpenSSL to... |
commit | commitdiff | tree | snapshot |
2015-01-09 |
Victor Stinner | Issue #23209: Revert change on selectors, test_selector... |
commit | commitdiff | tree | snapshot |
2015-01-09 |
Victor Stinner | Issue #23209: Break some reference cycles in asyncio... |
commit | commitdiff | tree | snapshot |
2015-01-09 |
Victor Stinner | asyncio: sync with Tulip |
commit | commitdiff | tree | snapshot |
2015-01-09 |
Victor Stinner | asyncio: SelectSelector is limited to 512 sockets on... |
commit | commitdiff | tree | snapshot |
2015-01-09 |
Victor Stinner | asyncio doc: fix section of event loop examples |
commit | commitdiff | tree | snapshot |
2015-01-09 |
Victor Stinner | asyncio: sync with Tulip |
commit | commitdiff | tree | snapshot |
2015-01-09 |
Victor Stinner | asyncio doc: list limitations to run subprocesses from... |
commit | commitdiff | tree | snapshot |
2015-01-08 |
Victor Stinner | asyncio: Truncate to 80 columns |
commit | commitdiff | tree | snapshot |
2015-01-08 |
Victor Stinner | asyncio: _make_ssl_transport: make the waiter parameter... |
commit | commitdiff | tree | snapshot |
2015-01-08 |
Terry Jan Reedy | Issue #23184: delete unused idlelib file. |
commit | commitdiff | tree | snapshot |
2015-01-07 |
Berker Peksag | Issue #20487: Clarify meaning of "side effect" in the... |
commit | commitdiff | tree | snapshot |
2015-01-06 |
Nick Coghlan | Issue 19548: update codecs module documentation |
commit | commitdiff | tree | snapshot |
2015-01-06 |
Victor Stinner | Issue #21356: Make ssl.RAND_egd() optional to support... |
commit | commitdiff | tree | snapshot |
2015-01-06 |
Victor Stinner | Issue #20896, #22935: The ssl.get_server_certificate... |
commit | commitdiff | tree | snapshot |
2015-01-06 |
Zachary Ware | Cosmetic fixes to the 'Develop with asyncio' page |
commit | commitdiff | tree | snapshot |
2015-01-06 |
Raymond Hettinger | Issue #23132: Mitigate regression in speed and clarity... |
commit | commitdiff | tree | snapshot |
2015-01-06 |
Victor Stinner | Issue #23140, asyncio: Simplify the unit test |
commit | commitdiff | tree | snapshot |
2015-01-06 |
Victor Stinner | Issue #23140, asyncio: Fix cancellation of Process... |
commit | commitdiff | tree | snapshot |
2015-01-06 |
Victor Stinner | Issue #23046: Expose the BaseEventLoop class in the... |
commit | commitdiff | tree | snapshot |
2015-01-05 |
Benjamin Peterson | emphasize that cffi is better than extension modules... |
commit | commitdiff | tree | snapshot |
2015-01-05 |
Ned Deily | Issue #22165: Skip test_undecodable_filename on OS... |
commit | commitdiff | tree | snapshot |
2015-01-05 |
Berker Peksag | Issue #18644: Fix a ResourceWarning in formatter.test(). |
commit | commitdiff | tree | snapshot |
2015-01-04 |
Benjamin Peterson | the current marshal version is 4 (closes #23167) |
commit | commitdiff | tree | snapshot |
2015-01-04 |
Benjamin Peterson | merge 3.3 (closes #23165) |
commit | commitdiff | tree | snapshot |
2015-01-04 |
Benjamin Peterson | merge 3.2 (closes #23165) |
commit | commitdiff | tree | snapshot |
2015-01-04 |
Benjamin Peterson | add some overflow checks before multiplying (closes... |
commit | commitdiff | tree | snapshot |
2015-01-04 |
Gregory P.... | fix issue23157 - time_hashlib hadn't been ported to... |
commit | commitdiff | tree | snapshot |
2015-01-03 |
Donald Stufft | Upgrade the bundled pip to 6.0.6 and the bundled setupt... |
commit | commitdiff | tree | snapshot |
next |