index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Doc
/
library
/
asyncio-eventloop.rst
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similar
Martin Panter
2016-02-10
1
-2/+2
*
Issue #26157: Fix typos in asyncio-eventloop.rst
Berker Peksag
2016-01-20
1
-4/+4
*
Issue #25593: Change semantics of EventLoop.stop(). (Merge 3.4->3.5)
Guido van Rossum
2015-11-19
1
-6/+16
|
\
|
*
Issue #25593: Change semantics of EventLoop.stop().
Guido van Rossum
2015-11-19
1
-6/+16
*
|
Issue #23972: updates to asyncio datagram API. By Chris Laws. (Merge 3.4->3.5.)
Guido van Rossum
2015-10-05
1
-4/+42
|
\
\
|
|
/
|
*
Issue #23972: updates to asyncio datagram API. By Chris Laws.
Guido van Rossum
2015-10-05
1
-4/+42
*
|
Merge 3.4 -> 3.5
Andrew Svetlov
2015-10-01
1
-3/+3
|
\
\
|
|
/
|
*
Reflect parameter name change in the doc
Andrew Svetlov
2015-10-01
1
-3/+3
*
|
Merge 3.4 (asyncio)
Victor Stinner
2015-09-21
1
-3/+10
|
\
\
|
|
/
|
*
Issue #23630, asyncio: host parameter of loop.create_server() can now be a
Victor Stinner
2015-09-21
1
-3/+10
*
|
Issue #25134: Update asyncio doc for SSL on Windows
Victor Stinner
2015-09-15
1
-2/+6
*
|
Marked keystrokes with the :kbd: role.
Serhiy Storchaka
2015-09-12
1
-1/+1
|
\
\
|
|
/
|
*
Marked keystrokes with the :kbd: role.
Serhiy Storchaka
2015-09-12
1
-1/+1
*
|
Issue #24947: Merge 3.4
Zachary Ware
2015-08-27
1
-1/+1
|
\
\
|
|
/
|
*
Issue #24947: Fix grammar in asyncio doc
Zachary Ware
2015-08-27
1
-1/+1
*
|
Issue #24487: Rename async() -> ensure_future() in asyncio docs.
Yury Selivanov
2015-07-01
1
-1/+1
|
/
*
Issue #24509: Clarify Handle.cancel() and loop.call_* methods.
Yury Selivanov
2015-06-25
1
-3/+9
*
asyncio.docs: Use less confusing title
Yury Selivanov
2015-06-25
1
-2/+2
*
docs/asyncio: Document set_task_factory/get_task_factory
Yury Selivanov
2015-05-11
1
-0/+20
*
asyncio: add a note about (non) thread safety in each class
Victor Stinner
2015-02-25
1
-0/+5
*
asyncio doc: annotate coroutine on coroutine functions and methods
Victor Stinner
2015-02-12
1
-15/+17
*
Fix asyncio doc typo.
R David Murray
2015-01-30
1
-1/+1
*
asyncio doc: fix section of event loop examples
Victor Stinner
2015-01-09
1
-5/+5
*
asyncio doc: call_soon() does not call immediatly the callback. Patch written
Victor Stinner
2014-12-15
1
-1/+3
*
asyncio doc: explain how to pass keywords to callbacks (functools.partial)
Victor Stinner
2014-11-28
1
-0/+33
*
Issue #22808: Link to the correct time method in BaseEventLoop.call_at().
Berker Peksag
2014-11-07
1
-1/+2
*
asyncio doc: fix typo in an example
Victor Stinner
2014-10-23
1
-4/+6
*
asyncio doc: write simpler examples to introduce asyncio
Victor Stinner
2014-10-15
1
-11/+50
*
asyncio doc: reformat create_server() doc
Victor Stinner
2014-10-12
1
-24/+28
*
asyncio doc: add UDP client and server examples
Victor Stinner
2014-10-12
1
-0/+3
*
asyncio doc: socket.socketpair() is not available on Windows yet
Victor Stinner
2014-10-11
1
-2/+5
*
asyncio doc: add examples showing the 3 ways to wait for data from an open
Victor Stinner
2014-10-11
1
-4/+56
*
asyncio doc: cleanup Hello World examples
Victor Stinner
2014-10-11
1
-4/+8
*
Revert #22251
Berker Peksag
2014-09-27
1
-3/+1
*
Issue #22251: Fix ReST markup to avoid errors building docs.
Berker Peksag
2014-09-27
1
-1/+3
*
Closes #22275: asyncio: enhance documentation of OS support
Victor Stinner
2014-08-31
1
-5/+21
*
Issue #22063: Fix asyncio documentation of socket and pipe operations regarding
Victor Stinner
2014-08-25
1
-5/+14
*
Issue #22112, asyncio doc: replace loop.create_task(coro) with
Victor Stinner
2014-08-10
1
-3/+2
*
Issue #22063: Mention in asyncio documentation that socket operations require
Victor Stinner
2014-07-29
1
-0/+8
*
Fix incomplete sentence in asyncio docs.
Andrew Svetlov
2014-07-24
1
-2/+3
*
Asyncio doc fixes: spelling, grammar, duplication.
Terry Jan Reedy
2014-07-24
1
-3/+1
*
asyncio: Server.close() leaves client sockets open
Victor Stinner
2014-07-12
1
-2/+5
*
asyncio: improve the documentation of servers
Victor Stinner
2014-07-11
1
-6/+21
*
Issue #21680: Document asyncio event loops
Victor Stinner
2014-07-08
1
-76/+6
*
Update asyncio documentation
Victor Stinner
2014-07-08
1
-2/+21
*
Closes #21921: Fix ResourceWarning in the asyncio examples: close the event
Victor Stinner
2014-07-05
1
-2/+8
*
asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if the
Victor Stinner
2014-06-22
1
-0/+2
*
asyncio: document the debug mode
Victor Stinner
2014-06-22
1
-1/+1
*
asyncio: Enable the debug mode of event loops when the PYTHONASYNCIODEBUG
Victor Stinner
2014-06-22
1
-1/+5
*
Tulip issue 83: document more asyncio functions in docstrings
Victor Stinner
2014-06-19
1
-4/+3
[next]