summaryrefslogtreecommitdiff
path: root/asyncio/base_events.py
Commit message (Expand)AuthorAgeFilesLines
* Python issue #23208: Don't use the traceback of the current handle if weVictor Stinner2015-01-261-1/+2
* Python issue #23208: Add BaseEventLoop._current_handleVictor Stinner2015-01-261-6/+19
* Close transports on errorVictor Stinner2015-01-231-3/+21
* BaseEventLoop._create_connection_transport() catchs any exception, not onlyVictor Stinner2015-01-221-1/+1
* Cleanup BaseEventLoop._create_connection_transport()Victor Stinner2015-01-161-1/+1
* Fix BaseEventLoop._create_connection_transport()Victor Stinner2015-01-141-1/+6
* Truncate to 80 columnsVictor Stinner2015-01-091-2/+2
* _make_ssl_transport: make the waiter parameter optionalVictor Stinner2015-01-081-1/+1
* Python issue #23046: Expose the BaseEventLoop class in the asyncio namespaceVictor Stinner2015-01-061-1/+1
* Python issue #22926: In debug mode, call_soon(), call_at() and call_later()Victor Stinner2014-12-261-18/+20
* Python issue #23074: get_event_loop() now raises an exception if the thread hasVictor Stinner2014-12-181-1/+1
* Python issue #22429: Fix EventLoop.run_until_complete(), don't stop the eventVictor Stinner2014-12-051-2/+12
* Python issue #22922: More EventLoop methods fail if the loop is closed. InitialVictor Stinner2014-12-041-0/+4
* Coroutine objects are now rejected with a TypeError by the following functions:Victor Stinner2014-11-201-4/+7
* run_forever() now consumes BaseException of the temporary taskVictor Stinner2014-10-111-1/+9
* Python issue 22448: cleanup _run_once(), only iterate once to remove delayed3.4.2Victor Stinner2014-09-301-4/+7
* Improve canceled timer callback handles cleanup (CPython issue #22448)Yury Selivanov2014-09-251-7/+37
* Tulip issue #200: Log errors in debug mode instead of simply ignoring them.Victor Stinner2014-08-251-0/+4
* Fix debug log in BaseEventLoop.create_connection(): get the socket object fromVictor Stinner2014-07-301-0/+3
* Python issue 20055: Fix BaseEventLoop.stop() docstring, incomplete sentence.Victor Stinner2014-07-241-3/+3
* Tulip issue #184: Log subprocess events in debug modeVictor Stinner2014-07-141-0/+42
* create_connection(): add the socket in the "connected to" debug logVictor Stinner2014-07-141-2/+2
* Clean up some docstrings and comments. Remove unused unimplemented _read_from...Guido van Rossum2014-07-121-37/+48
* Tulip issue #183: log socket events in debug modeVictor Stinner2014-07-121-2/+52
* BaseEventLoop.create_server() returns a Server objectVictor Stinner2014-07-121-1/+1
* Tulip issue #180: Make Server attributes and methods privateVictor Stinner2014-07-111-20/+21
* Tulip issue #182: Improve logs of BaseEventLoop._run_once()Victor Stinner2014-07-111-7/+14
* Fix create_task(): truncate the traceback to hide the call to create_task()Victor Stinner2014-07-101-1/+4
* Tulip issue #181: BaseEventLoop.create_datagram_endpoint() now waits untilVictor Stinner2014-07-081-2/+5
* Tulip issue #185: Add a create_task() method to event loopsVictor Stinner2014-07-081-0/+6
* Python issue #21163: BaseEventLoop.run_until_complete() andVictor Stinner2014-06-301-0/+7
* Sort importsVictor Stinner2014-06-301-2/+2
* Move coroutine code in the new module asyncio.coroutinesVictor Stinner2014-06-291-13/+15
* Tulip issue #137: In debug mode, save traceback where Future, Task and HandleVictor Stinner2014-06-271-3/+23
* Fix BaseEventLoop._assert_is_current_event_loop(): get_event_loop() raises anVictor Stinner2014-06-231-2/+5
* Tulip issue #171: BaseEventLoop.close() now raises an exception if the eventVictor Stinner2014-06-231-0/+4
* Tulip issue #172: only log selector timing in debug modeVictor Stinner2014-06-231-2/+1
* Enable the debug mode of event loops when the PYTHONASYNCIODEBUG environmentVictor Stinner2014-06-231-1/+2
* BaseEventLoop._assert_is_current_event_loop() now only raises an exception ifVictor Stinner2014-06-231-1/+2
* Tulip issue #105: in debug mode, log callbacks taking more than 100 ms to beVictor Stinner2014-06-201-5/+27
* Tulip issue #83: document more functions in docstringsVictor Stinner2014-06-191-3/+18
* Tulip issue #169, Python issue #21326: Add BaseEventLoop.is_closed() methodVictor Stinner2014-06-041-0/+19
* Close sockets on errorsVictor Stinner2014-06-041-0/+8
* Removed dead code path in _run_once.schlamar2014-05-101-5/+1
* Ensure call_soon(), call_later() and call_at() are invoked on current loop inVictor Stinner2014-03-211-1/+22
* _check_resolved_address() must also accept IPv6 without flow_info and scope_id:Victor Stinner2014-02-201-1/+1
* Fix _check_resolved_address() for IPv6 addressVictor Stinner2014-02-201-2/+5
* Issue #136: Add get/set_debug() methods to BaseEventLoopTests. Add also aVictor Stinner2014-02-191-0/+7
* pep8-ify the code.Yury Selivanov2014-02-181-5/+6
* Add new event loop exception handling API (closes issue #80).Yury Selivanov2014-02-181-2/+94