summaryrefslogtreecommitdiff
path: root/asyncio/selector_events.py
Commit message (Expand)AuthorAgeFilesLines
* pyflakes: remove unused importVictor Stinner2015-01-161-1/+0
* cleanup BaseSelectorEventLoopVictor Stinner2015-01-141-2/+3
* Python issue #23197: On SSL handshake failure on matching hostname, check ifVictor Stinner2015-01-141-1/+2
* Python issue #23197: On SSL handshake failure, check if the waiter is cancelledVictor Stinner2015-01-141-1/+1
* Python issue #22560: New SSL implementation based on ssl.MemoryBIOVictor Stinner2015-01-141-21/+24
* Remove outdated TODO/XXXVictor Stinner2015-01-091-1/+0
* sock_connect(): pass directly the fd to _sock_connect_done instead of the socketVictor Stinner2015-01-091-3/+3
* Truncate to 80 columnsVictor Stinner2015-01-091-3/+4
* _make_ssl_transport: make the waiter parameter optionalVictor Stinner2015-01-081-2/+2
* Python issue #22926: In debug mode, call_soon(), call_at() and call_later()Victor Stinner2014-12-261-1/+1
* Python issue #22921: Don't require OpenSSL SNI to pass hostname to sslBenjamin Peterson2014-11-251-1/+1
* BaseSelectorEventLoop.close() now closes the self-pipe before calling theVictor Stinner2014-11-211-1/+3
* Python issue #22641: On Python 3.4 and newer, the default SSL context forVictor Stinner2014-11-051-6/+7
* Move loop attribute to _FlowControlMixinVictor Stinner2014-11-051-2/+1
* Enhance protocol representationVictor Stinner2014-10-141-1/+6
* Tulip issue #205: Fix a race condition in BaseSelectorEventLoop.sock_connect()Victor Stinner2014-08-311-13/+31
* Fix debug log in BaseEventLoop.create_connection(): get the socket object fromVictor Stinner2014-07-301-1/+0
* Fix _SelectorTransport.__repr__() if the transport was closedVictor Stinner2014-07-301-14/+16
* Python issue 22063: socket operations (socket,recv, sock_sendall, sock_connect,Victor Stinner2014-07-291-0/+8
* BaseSelectorEventLoop._write_to_self() now logs errors in debug modeVictor Stinner2014-07-251-1/+4
* Tulip issue 192, Python issue 21645: Rewrite signal handlingVictor Stinner2014-07-171-1/+5
* Tulip issue #183: log socket events in debug modeVictor Stinner2014-07-121-13/+76
* Tulip issue #180: Make Server attributes and methods privateVictor Stinner2014-07-111-2/+2
* Tulip issue #181: BaseEventLoop.create_datagram_endpoint() now waits untilVictor Stinner2014-07-081-3/+10
* Backed out changeset 9b16831a863aVictor Stinner2014-07-071-1/+1
* Tulip issue #181: Faster create_connection()Victor Stinner2014-07-071-1/+1
* Python issue 21447, 21886: Fix a race condition when setting the result of aVictor Stinner2014-07-051-2/+3
* Tulip issue #171: BaseEventLoop.close() now raises an exception if the eventVictor Stinner2014-06-231-1/+1
* Tulip issue #83: document more functions in docstringsVictor Stinner2014-06-191-4/+37
* Python issue 21595: BaseSelectorEventLoop._read_from_self() reads all availableVictor Stinner2014-06-191-4/+9
* Tulip issue #169, Python issue #21326: Add BaseEventLoop.is_closed() methodVictor Stinner2014-06-041-8/+8
* Fix for raising exception not derived from BaseException in _SelectorSslTrans...Andrew Svetlov2014-05-271-1/+1
* Fix the second half of bugs.python.org/issue21447: race in _write_to_self().Guido van Rossum2014-05-061-4/+11
* Reject add/remove reader/writer when event loop is closed.Guido van Rossum2014-03-041-0/+8
* cleanup: write the long line as a single lineVictor Stinner2014-02-261-2/+1
* Fix spelling & typosYury Selivanov2014-02-181-1/+1
* Issue #139: Improve error messages on "fatal errors"Victor Stinner2014-02-191-10/+12
* transports: Make _ProactorBasePipeTransport use _FlowControlMixinYury Selivanov2014-02-181-71/+2
* Add new event loop exception handling API (closes issue #80).Yury Selivanov2014-02-181-8/+27
* Issue #129: BaseEventLoop.sock_connect() now raises an error if the address isVictor Stinner2014-02-131-12/+8
* Issue #112: Inline make_handle() into Handle constructorVictor Stinner2014-02-101-2/+2
* Remove resolution and _granularity from selectors and asyncioVictor Stinner2014-02-071-1/+0
* Refactoring: move write flow control to a subclass/mixin.Guido van Rossum2014-01-271-37/+61
* Make the new granularity attribute privateVictor Stinner2014-01-261-1/+1
* Export more symbols: BaseEventLoop, BaseProactorEventLoop,Victor Stinner2014-01-251-0/+2
* Add a granularity attribute to BaseEventLoop: maximum between the resolution ofVictor Stinner2014-01-251-0/+1
* SSL hostname checking changes from CPython repo by Christian Heimes.Guido van Rossum2013-12-061-11/+14
* Replace some asserts with proper exceptions.Guido van Rossum2013-11-271-13/+29
* Support bytearray/memoryview arguments to write(), sendto(). Fixes issue 27.Guido van Rossum2013-11-271-4/+5
* Experimental bytearray buffer.Guido van Rossum2013-11-261-17/+20