summaryrefslogtreecommitdiff
path: root/Doc/library/asyncio-eventloop.rst
Commit message (Collapse)AuthorAgeFilesLines
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
|
* Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similarMartin Panter2016-02-101-2/+2
| | | | | The original form is incorrect grammar and feels awkward, even though the meaning is clear.
* Issue #26157: Fix typos in asyncio-eventloop.rstBerker Peksag2016-01-201-4/+4
| | | | Initial patch by Carlo Beccarini.
* Issue #25593: Change semantics of EventLoop.stop(). (Merge 3.4->3.5)Guido van Rossum2015-11-191-6/+10
|\
| * Issue #23972: updates to asyncio datagram API. By Chris Laws. (Merge 3.4->3.5.)Guido van Rossum2015-10-051-4/+42
| |\
| * \ Merge 3.4 -> 3.5Andrew Svetlov2015-10-011-4/+8
| |\ \
| | * \ Merge 3.4 (asyncio)Victor Stinner2015-09-211-4/+8
| | |\ \
| | | * | Issue #25134: Update asyncio doc for SSL on WindowsVictor Stinner2015-09-151-2/+6
| | | | | | | | | | | | | | | | | | | | ProactorEventLoop now supports SSL.
| | | * | Marked keystrokes with the :kbd: role.Serhiy Storchaka2015-09-121-1/+1
| | | |\ \ | | | | | | | | | | | | | | | | | | Fixed the case of the "Ctrl-" prefixes.
| | | | * \ Issue #24947: Merge 3.4Zachary Ware2015-08-271-1/+1
| | | | |\ \
| | | | | * | Issue #24487: Rename async() -> ensure_future() in asyncio docs.Yury Selivanov2015-06-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Patch by Martin Panter.
* | | | | | | Issue #25593: Change semantics of EventLoop.stop().Guido van Rossum2015-11-191-6/+16
| |_|_|_|_|/ |/| | | | |
* | | | | | Issue #23972: updates to asyncio datagram API. By Chris Laws.Guido van Rossum2015-10-051-4/+42
|/ / / / /
* | | | | Reflect parameter name change in the docAndrew Svetlov2015-10-011-3/+3
|/ / / /
* | | | Issue #23630, asyncio: host parameter of loop.create_server() can now be aVictor Stinner2015-09-211-3/+10
|/ / / | | | | | | | | | sequence of strings. Patch written by Yann Sionneau.
* | | Marked keystrokes with the :kbd: role.Serhiy Storchaka2015-09-121-1/+1
|/ / | | | | | | Fixed the case of the "Ctrl-" prefixes.
* | Issue #24947: Fix grammar in asyncio docZachary Ware2015-08-271-1/+1
|/ | | | Patch by tagatac
* Issue #24509: Clarify Handle.cancel() and loop.call_* methods.Yury Selivanov2015-06-251-3/+9
|
* asyncio.docs: Use less confusing titleYury Selivanov2015-06-251-2/+2
|
* docs/asyncio: Document set_task_factory/get_task_factoryYury Selivanov2015-05-111-0/+20
|
* asyncio: add a note about (non) thread safety in each classVictor Stinner2015-02-251-0/+5
|
* asyncio doc: annotate coroutine on coroutine functions and methodsVictor Stinner2015-02-121-15/+17
|
* Fix asyncio doc typo.R David Murray2015-01-291-1/+1
|
* asyncio doc: fix section of event loop examplesVictor Stinner2015-01-091-5/+5
|
* asyncio doc: call_soon() does not call immediatly the callback. Patch writtenVictor Stinner2014-12-151-1/+3
| | | | by Martin Panter.
* asyncio doc: explain how to pass keywords to callbacks (functools.partial)Victor Stinner2014-11-281-0/+33
|
* Issue #22808: Link to the correct time method in BaseEventLoop.call_at().Berker Peksag2014-11-071-1/+2
| | | | Patch by Mark Grandi.
* asyncio doc: fix typo in an exampleVictor Stinner2014-10-231-4/+6
|
* asyncio doc: write simpler examples to introduce asyncioVictor Stinner2014-10-151-11/+50
|
* asyncio doc: reformat create_server() docVictor Stinner2014-10-121-24/+28
| | | | | Fix also the reate_unix_connection() doc: the method is not support on Windows, not need to mention that ssl is not support with ProactorEventLoop.
* asyncio doc: add UDP client and server examplesVictor Stinner2014-10-121-0/+3
|
* asyncio doc: socket.socketpair() is not available on Windows yetVictor Stinner2014-10-111-2/+5
|
* asyncio doc: add examples showing the 3 ways to wait for data from an openVictor Stinner2014-10-111-4/+56
| | | | socket
* asyncio doc: cleanup Hello World examplesVictor Stinner2014-10-111-4/+8
|
* Revert #22251Berker Peksag2014-09-281-3/+1
|
* Issue #22251: Fix ReST markup to avoid errors building docs.Berker Peksag2014-09-271-1/+3
|
* Closes #22275: asyncio: enhance documentation of OS supportVictor Stinner2014-08-311-5/+21
|
* Issue #22063: Fix asyncio documentation of socket and pipe operations regardingVictor Stinner2014-08-261-5/+14
| | | | | to non-blocking mode. The non-blocking mode does not matter when using a ProactorEventLoop, only for SelectorEventLoop.
* Issue #22112, asyncio doc: replace loop.create_task(coro) withVictor Stinner2014-08-111-3/+2
| | | | | | asyncio.async(coro), mention that asyncio.async() can be used to scheduler a coroutine, and make it clear that create_task() is only available in Python 3.4.2 and later.
* Issue #22063: Mention in asyncio documentation that socket operations requireVictor Stinner2014-07-291-0/+8
| | | | the socket to be non-blocking
* Fix incomplete sentence in asyncio docs.Andrew Svetlov2014-07-241-2/+3
|
* Asyncio doc fixes: spelling, grammar, duplication.Terry Jan Reedy2014-07-241-3/+1
|
* asyncio: Server.close() leaves client sockets openVictor Stinner2014-07-121-2/+5
|
* asyncio: improve the documentation of serversVictor Stinner2014-07-111-6/+21
| | | | | | - Fix the documentation of Server.close(): it closes sockets - Replace AbstractServer with Server - Document Server.sockets attribute
* Issue #21680: Document asyncio event loopsVictor Stinner2014-07-081-76/+6
|
* Update asyncio documentationVictor Stinner2014-07-081-2/+21
| | | | | | | | | - Document the new create_task() method - "Hide" the Task class: point to the create_task() method for interoperability - Rewrite the documentation of the Task class - Document the "Pending task destroyed" - Update output in debug mode of examples in the dev section - Replace Task() with create_task() in examples
* Closes #21921: Fix ResourceWarning in the asyncio examples: close the eventVictor Stinner2014-07-051-2/+8
| | | | | loop at exit. Patch written by Vajrasky Kok (I modified also the "hello world" example using a coroutine).
* asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if theVictor Stinner2014-06-231-0/+2
| | | | | event loop is running. You must first stop the event loop and then wait until it stopped, before closing it.
* asyncio: document the debug modeVictor Stinner2014-06-231-1/+1
|
* asyncio: Enable the debug mode of event loops when the PYTHONASYNCIODEBUGVictor Stinner2014-06-231-1/+5
| | | | environment variable is set