summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
Commit message (Collapse)AuthorAgeFilesLines
* Export asyncio.iscoroutine[function].Guido van Rossum2013-12-281-0/+1
|
* asyncio: Fix space in log message about poll time.Guido van Rossum2013-12-211-1/+1
|
* Issue #19967: Defer the formating of the traceback in asyncio.Future destructorVictor Stinner2013-12-201-11/+14
|
* asyncio: Export all abstract protocol and transport classes. Fixes issue #20029.Guido van Rossum2013-12-202-2/+5
|
* asyncio: Clean up formatting.Guido van Rossum2013-12-191-3/+1
|
* Close #19967: Thanks to the PEP 442, asyncio.Future can use a destructor inVictor Stinner2013-12-191-7/+25
| | | | | Python 3.4 to log "uncatched" exceptions, instead of the dedicated _TracebackLogger class.
* Shorten lines.Guido van Rossum2013-12-191-2/+2
|
* asyncio: remove references to the Tulip project, rename Tulip to asyncio.Victor Stinner2013-12-132-2/+2
| | | | Patch written by Vajrasky Kok.
* Remove a duplicated importVictor Stinner2013-12-071-1/+0
|
* asyncio: Add Task.current_task() class method.Guido van Rossum2013-12-062-1/+21
|
* fix cert names for asyncio testChristian Heimes2013-12-061-2/+2
|
* Issue #19509: Finish implementation of check_hostnameChristian Heimes2013-12-051-11/+14
| | | | The new asyncio package now supports the new feature and comes with additional tests for SSL.
* Issue #19850: asyncio: Set SA_RESTART when registering a signal handler toCharles-François Natali2013-12-051-0/+2
| | | | limit EINTR occurrences.
* asyncio: Write flow control for proactor event loop.Guido van Rossum2013-12-041-17/+99
|
* Fix typo in asyncio.AbstractServer documentationVictor Stinner2013-12-031-1/+1
|
* asyncio: Improve default writelines().Guido van Rossum2013-12-031-4/+12
|
* asyncio: replace our with asynchronous in docstringVictor Stinner2013-12-021-1/+1
|
* asyncio: document locksVictor Stinner2013-12-021-3/+3
|
* Issue #19842: Refactor BaseSelector to make it an actual usable ABC.Charles-François Natali2013-12-011-0/+14
|
* asyncio: Use Interface instead of ABC. Fixes issue 19726.Guido van Rossum2013-11-303-11/+11
|
* asyncio: Add 'shield' to __all__.Guido van Rossum2013-11-291-1/+1
|
* asyncio: Change write buffer use to avoid O(N**2). Make write()/sendto() ↵Guido van Rossum2013-11-271-31/+51
| | | | accept bytearray/memoryview too. Change some asserts with proper exceptions.
* asyncio: Fix get_event_loop() to call set_event_loop() when setting the ↵Guido van Rossum2013-11-271-1/+1
| | | | loop. By Anthony Baire.
* asyncio: Add StreamReaderProtocol to __all__.Guido van Rossum2013-11-251-1/+1
|
* asyncio: Fix docstring of get_nowait().Guido van Rossum2013-11-251-1/+1
|
* asyncio: Add BoundedSemaphore to export list in locks.__all__.Guido van Rossum2013-11-251-1/+1
|
* Issue #19740: Use WaitForSingleObject() instead of trusting TimerOrWaitFired.Richard Oudkerk2013-11-241-2/+9
|
* Keep asyncio working with Python 3.3 too.Guido van Rossum2013-11-231-2/+9
|
* asyncio: Change bounded semaphore into a subclass, like ↵Guido van Rossum2013-11-231-17/+19
| | | | threading.[Bounded]Semaphore.
* Issue #19735: Implement private function ssl._create_stdlib_context() toChristian Heimes2013-11-231-4/+2
| | | | | create SSLContext objects in Python's stdlib module. It provides a single configuration point and makes use of SSLContext.load_default_certs().
* Fix typo.Guido van Rossum2013-11-231-1/+1
|
* Fix transport docstringsAntoine Pitrou2013-11-231-5/+5
|
* asyncio: Pass cancellation from wrapping Future to wrapped Future. By Saúl ↵Guido van Rossum2013-11-221-3/+8
| | | | Ibarra Corretgé (mostly).
* asyncio: Make Semaphore(0) work properly.Guido van Rossum2013-11-211-2/+2
|
* asyncio: Add streams.start_server(), by Gustavo Carneiro.Guido van Rossum2013-11-191-2/+51
|
* asyncio: Replace connection_refused() with error_received().Guido van Rossum2013-11-162-16/+13
|
* asyncio: Fix from Anthony Baire for CPython issue 19566 (replaces earlier fix).Guido van Rossum2013-11-131-28/+41
|
* asyncio: Temporary fix by Victor Stinner for issue 19566.Guido van Rossum2013-11-131-2/+3
|
* asyncio: Add close() back to Unix selector event loop, to remove all signal ↵Guido van Rossum2013-11-071-0/+5
| | | | handlers. Should fix buildbot issues.
* asyncio: Refactor SIGCHLD handling. By Anthony Baire.Guido van Rossum2013-11-043-69/+414
|
* asyncio: Locks improvements by Arnaud Faure: better repr(), change Conditio\Guido van Rossum2013-11-041-24/+54
| | | | n structure.
* asyncio: Better-looking errors when ssl module cannot be imported. In part ↵Guido van Rossum2013-11-012-12/+21
| | | | by Arnaud Faure.
* asyncio: Various style nits.Guido van Rossum2013-11-013-11/+27
|
* asyncio: Log a warning when eof_received() returns true and using ssl.Guido van Rossum2013-11-011-1/+4
|
* asyncio: Document EventLoop.close().Guido van Rossum2013-11-012-0/+18
|
* asyncio: Refactor ssl transport ready loop (Nikolay Kim).Guido van Rossum2013-11-011-41/+53
|
* asyncio: Add server_hostname as create_connection() argument, with secure ↵Guido van Rossum2013-11-013-5/+24
| | | | default.
* asyncio: Fold some long lines.Guido van Rossum2013-11-012-3/+5
|
* asyncio: Pause accepting whenever accept() returns certain errors. Fixes ↵Guido van Rossum2013-11-012-7/+19
| | | | asyncio issue #78.
* asyncio: Add new file (forgotten).Guido van Rossum2013-10-301-0/+166
|