summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/base_events.py
Commit message (Collapse)AuthorAgeFilesLines
...
* asyncio: Cleanup logging in BaseEventLoop._run_once()Victor Stinner2014-01-221-2/+5
| | | | | | logger.log() is now responsible to format the timeout. It might be faster if the log is disabled for DEBUG level, but it's also more readable and fix an issue with Python 2.6 in the Trollius project.
* Close #20275: Optimize BaseEventLoop._run_once()Victor Stinner2014-01-201-8/+11
| | | | | | Logger.log() is "slow", logger.isEnabledFor() is faster and the logger is disabled in most cases. A microbenchmark executing 100,000 dummy tasks is 22% faster with this change.
* asyncio: Fix space in log message about poll time.Guido van Rossum2013-12-211-1/+1
|
* asyncio: Better-looking errors when ssl module cannot be imported. In part ↵Guido van Rossum2013-11-011-0/+2
| | | | by Arnaud Faure.
* asyncio: Various style nits.Guido van Rossum2013-11-011-1/+1
|
* asyncio: Document EventLoop.close().Guido van Rossum2013-11-011-0/+5
|
* asyncio: Add server_hostname as create_connection() argument, with secure ↵Guido van Rossum2013-11-011-2/+21
| | | | default.
* (Hopefully) proper fix for gentoo buildbot failure due to lacking AF_INET6 ↵Guido van Rossum2013-10-201-1/+5
| | | | | | support. This should supersede revision e3ec6b17260c (but please test before removing that).
* Issue #19299: fix refleak test failures in test_asyncioAntoine Pitrou2013-10-191-0/+8
|
* Rename the logger to plain "logger".Guido van Rossum2013-10-171-2/+2
|
* Initial checkin of asyncio package (== Tulip, == PEP 3156).Guido van Rossum2013-10-171-0/+606