Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Issue #20505: use also the monotonic time to decide if asyncio debug traces | Victor Stinner | 2014-02-11 | 1 | -3/+4 | |
| | | | | should be printed | |||||
* | Issue #20505: Oops, only print debug info if selector.select(timeout) took less | Victor Stinner | 2014-02-11 | 1 | -1/+1 | |
| | | | | than timeout | |||||
* | Issue #20505: Improve debug info in asyncio event loop | Victor Stinner | 2014-02-11 | 1 | -5/+18 | |
| | ||||||
* | Issue #20505: BaseEventLoop uses again the resolution of the clock to decide if | Victor Stinner | 2014-02-10 | 1 | -2/+3 | |
| | | | | scheduled tasks should be executed or not. | |||||
* | Issue #20505: Add debug info to analyze sporaric failures of | Victor Stinner | 2014-02-10 | 1 | -0/+6 | |
| | | | | test_timeout_rounding() on Windows XP buildbots. | |||||
* | asyncio: Tulip issue 112: Inline make_handle() into Handle constructor | Victor Stinner | 2014-02-09 | 1 | -1/+1 | |
| | ||||||
* | Issue #20505: Remove resolution and _granularity from selectors and asyncio | Victor Stinner | 2014-02-07 | 1 | -12/+1 | |
| | | | | | * Remove selectors.BaseSelector.resolution attribute * Remove asyncio.BaseEventLoop._granularity attribute | |||||
* | Issue #20505: add debug info | Victor Stinner | 2014-02-07 | 1 | -0/+10 | |
| | ||||||
* | Issue #20452: Remove debug code, no more needed | Victor Stinner | 2014-01-31 | 1 | -9/+1 | |
| | ||||||
* | asyncio: Fix error message in BaseEventLoop.subprocess_shell(). Patch written | Victor Stinner | 2014-01-31 | 1 | -1/+1 | |
| | | | | by Vajrasky Kok. | |||||
* | Issue #20452: select and selectors round (again) timeout away from zero for | Victor Stinner | 2014-01-31 | 1 | -10/+5 | |
| | | | | | | poll and epoll Improve also debug info to analyze the issue | |||||
* | Issue #20452: Oops, fix debug code :-/ | Victor Stinner | 2014-01-31 | 1 | -5/+10 | |
| | | | | Add also event more debug info | |||||
* | Issue #20452: add more info in case of test_asyncio failure to try to debug the | Victor Stinner | 2014-01-31 | 1 | -1/+9 | |
| | | | | failure on buildbot "x86 Ubuntu Shared 3.x" | |||||
* | asyncio: subprocess_shell() and subprocess_exec() now raise ValueError ↵ | Victor Stinner | 2014-01-29 | 1 | -5/+14 | |
| | | | | | | instead of assert. Moreover, bufsize different than 0 is now considered as an error. | |||||
* | Merge latest Tulip into asyncio | Victor Stinner | 2014-01-25 | 1 | -7/+2 | |
| | | | | | | - Make the new granularity attribute private - Simplify BaseEventLoop._run_once(): avoid math.ceil(), use simple arithmetic instead | |||||
* | Issue #20311: asyncio: Add a granularity attribute to BaseEventLoop: maximum | Victor Stinner | 2014-01-25 | 1 | -0/+6 | |
| | | | | | | between the resolution of the BaseEventLoop.time() method and the resolution of the selector. The granuarility is used in the scheduler to round time and deadline. | |||||
* | asyncio: Cleanup logging in BaseEventLoop._run_once() | Victor Stinner | 2014-01-22 | 1 | -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 Stinner | 2014-01-20 | 1 | -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 Rossum | 2013-12-21 | 1 | -1/+1 | |
| | ||||||
* | asyncio: Better-looking errors when ssl module cannot be imported. In part ↵ | Guido van Rossum | 2013-11-01 | 1 | -0/+2 | |
| | | | | by Arnaud Faure. | |||||
* | asyncio: Various style nits. | Guido van Rossum | 2013-11-01 | 1 | -1/+1 | |
| | ||||||
* | asyncio: Document EventLoop.close(). | Guido van Rossum | 2013-11-01 | 1 | -0/+5 | |
| | ||||||
* | asyncio: Add server_hostname as create_connection() argument, with secure ↵ | Guido van Rossum | 2013-11-01 | 1 | -2/+21 | |
| | | | | default. | |||||
* | (Hopefully) proper fix for gentoo buildbot failure due to lacking AF_INET6 ↵ | Guido van Rossum | 2013-10-20 | 1 | -1/+5 | |
| | | | | | | support. This should supersede revision e3ec6b17260c (but please test before removing that). | |||||
* | Issue #19299: fix refleak test failures in test_asyncio | Antoine Pitrou | 2013-10-19 | 1 | -0/+8 | |
| | ||||||
* | Rename the logger to plain "logger". | Guido van Rossum | 2013-10-17 | 1 | -2/+2 | |
| | ||||||
* | Initial checkin of asyncio package (== Tulip, == PEP 3156). | Guido van Rossum | 2013-10-17 | 1 | -0/+606 | |