| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Close transports on error | Victor Stinner | 2015-01-23 | 1 | -3/+21 |
| | | | | | | Fix create_datagram_endpoint(), connect_read_pipe() and connect_write_pipe(): close the transport if the task is cancelled or on error. | ||||
| * | BaseEventLoop._create_connection_transport() catchs any exception, not only | Victor Stinner | 2015-01-22 | 1 | -1/+1 |
| | | | | | Exception | ||||
| * | Cleanup BaseEventLoop._create_connection_transport() | Victor Stinner | 2015-01-16 | 1 | -1/+1 |
| | | | | | Remove the exc variable, it's not used. | ||||
| * | Fix BaseEventLoop._create_connection_transport() | Victor Stinner | 2015-01-14 | 1 | -1/+6 |
| | | | | | | Close the transport if the creation of the transport (if the waiter) gets an exception. | ||||
| * | Truncate to 80 columns | Victor Stinner | 2015-01-09 | 1 | -2/+2 |
| | | |||||
| * | _make_ssl_transport: make the waiter parameter optional | Victor Stinner | 2015-01-08 | 1 | -1/+1 |
| | | |||||
| * | Python issue #23046: Expose the BaseEventLoop class in the asyncio namespace | Victor Stinner | 2015-01-06 | 1 | -1/+1 |
| | | |||||
| * | Python issue #22926: In debug mode, call_soon(), call_at() and call_later() | Victor Stinner | 2014-12-26 | 1 | -18/+20 |
| | | | | | | | | | | | methods of BaseEventLoop now use the identifier of the current thread to ensure that they are called from the thread running the event loop. Before, the get_event_loop() method was used to check the thread, and no exception was raised when the thread had no event loop. Now the methods always raise an exception in debug mode when called from the wrong thread. It should help to notice misusage of the API. | ||||
| * | Python issue #23074: get_event_loop() now raises an exception if the thread has | Victor Stinner | 2014-12-18 | 1 | -1/+1 |
| | | | | | no event loop even if assertions are disabled. | ||||
| * | Add run_aiotest.py | Victor Stinner | 2014-12-12 | 1 | -0/+1113 |
