summaryrefslogtreecommitdiff
path: root/asyncio/base_events.py
Commit message (Expand)AuthorAgeFilesLines
* add _get_sourceVictor Stinner2014-11-131-0/+7
* _get_traceback() logs the task or the handleVictor Stinner2014-11-131-4/+5
* call_exception_handler: log tb of the current handleVictor Stinner2014-11-131-0/+8
* _get_traceback() injects source traceback of the current handleVictor Stinner2014-10-311-17/+34
* _get_traceback(): inject the task tracebackVictor Stinner2014-10-301-1/+15
* Add a new BaseEventLoop._get_traceback() methodVictor Stinner2014-10-291-0/+5
* 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
* Add support for UNIX Domain Sockets. Closes issue #81.Yury Selivanov2014-02-181-0/+7
* Issue #129: BaseEventLoop.sock_connect() now raises an error if the address isVictor Stinner2014-02-131-0/+25
* Issue #130: Add more checks on subprocess_exec/subprocess_shell parametersVictor Stinner2014-02-111-3/+9
* Remove debug traces, there are only useful on Python buildbotsVictor Stinner2014-02-111-6/+0
* Issue #126: call_soon(), call_soon_threadsafe(), call_later(), call_at() andVictor Stinner2014-02-111-0/+6
* Python issue #20505: BaseEventLoop uses again the resolution of the clock toVictor Stinner2014-02-101-2/+9
* Issue #112: Inline make_handle() into Handle constructorVictor Stinner2014-02-101-1/+1
* Remove resolution and _granularity from selectors and asyncioVictor Stinner2014-02-071-2/+1