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
/
Lib
/
asyncio
Commit message (
Expand
)
Author
Age
Files
Lines
*
asyncio: Rename {Empty,Full} to {QueueEmpty,QueueFull} and no longer get them...
Guido van Rossum
2014-01-26
1
-9/+19
*
asyncio: Locks refactor: use a separate context manager; remove Semaphore._lo...
Guido van Rossum
2014-01-26
1
-22/+60
*
asyncio: Fix race in FastChildWatcher (by its original author, Anthony Baire).
Guido van Rossum
2014-01-26
1
-20/+16
*
Merge latest Tulip into asyncio
Victor Stinner
2014-01-25
2
-8/+3
*
asyncio: Don't export BaseEventLoop, BaseSelectorEventLoop nor
Victor Stinner
2014-01-25
1
-7/+1
*
Update asyncio from the Tulip project
Victor Stinner
2014-01-25
5
-14/+38
*
Fix asyncio tests: define resolution
Victor Stinner
2014-01-25
1
-0/+4
*
Issue #20311: asyncio: Add a granularity attribute to BaseEventLoop: maximum
Victor Stinner
2014-01-25
2
-0/+7
*
asyncio: wait_for() now cancels the future on timeout. Patch written by Gustavo
Victor Stinner
2014-01-23
1
-2/+4
*
asyncio (Tulip issue 110): StreamReader.read() and StreamReader.readline() now
Victor Stinner
2014-01-23
1
-7/+14
*
asyncio: Fix open_connection() documentation, writer is a StreamWriter
Victor Stinner
2014-01-23
1
-1/+1
*
asyncio: Cleanup logging in BaseEventLoop._run_once()
Victor Stinner
2014-01-22
1
-2/+5
*
Close #20275: Optimize BaseEventLoop._run_once()
Victor Stinner
2014-01-20
1
-8/+11
*
asyncio: Reincarnate CoroWrapper's docstring as a comment.
Guido van Rossum
2014-01-16
1
-0/+2
*
asyncio: Fix CoroWrapper (fix my previous commit)
Victor Stinner
2014-01-16
1
-3/+1
*
asyncio: Fix a typo in CoroWrapper
Victor Stinner
2014-01-16
1
-1/+1
*
Cleanup properly proactor event loop
Victor Stinner
2014-01-10
2
-4/+23
*
asyncio: Minimal pty support in UNIX read pipe, by Jonathan Slenders.
Guido van Rossum
2014-01-10
1
-2/+5
*
asyncio: Fix race in subprocess transport, by Victor Stinner.
Guido van Rossum
2014-01-10
1
-1/+2
*
asyncio: Tiny cleanup in streams.py.
Guido van Rossum
2014-01-10
1
-2/+2
*
asyncio: Don't special-case GeneratorExit in Condition.wait().
Guido van Rossum
2014-01-10
1
-6/+1
*
Fix typo in asyncio/streams.py.
Guido van Rossum
2014-01-08
1
-1/+1
*
asyncio: Fix deadlock in readexactly(). Fixes issue #20154.
Guido van Rossum
2014-01-07
1
-10/+19
*
asyncio: make PY34 symbol private (rename it to _PY34)
Victor Stinner
2014-01-02
1
-2/+2
*
Export asyncio.iscoroutine[function].
Guido van Rossum
2013-12-28
1
-0/+1
*
asyncio: Fix space in log message about poll time.
Guido van Rossum
2013-12-21
1
-1/+1
*
Issue #19967: Defer the formating of the traceback in asyncio.Future destructor
Victor Stinner
2013-12-20
1
-11/+14
*
asyncio: Export all abstract protocol and transport classes. Fixes issue #20029.
Guido van Rossum
2013-12-20
2
-2/+5
*
asyncio: Clean up formatting.
Guido van Rossum
2013-12-19
1
-3/+1
*
Close #19967: Thanks to the PEP 442, asyncio.Future can use a destructor in
Victor Stinner
2013-12-19
1
-7/+25
*
Shorten lines.
Guido van Rossum
2013-12-19
1
-2/+2
*
asyncio: remove references to the Tulip project, rename Tulip to asyncio.
Victor Stinner
2013-12-13
2
-2/+2
*
Remove a duplicated import
Victor Stinner
2013-12-07
1
-1/+0
*
asyncio: Add Task.current_task() class method.
Guido van Rossum
2013-12-06
2
-1/+21
*
fix cert names for asyncio test
Christian Heimes
2013-12-06
1
-2/+2
*
Issue #19509: Finish implementation of check_hostname
Christian Heimes
2013-12-05
1
-11/+14
*
Issue #19850: asyncio: Set SA_RESTART when registering a signal handler to
Charles-François Natali
2013-12-05
1
-0/+2
*
asyncio: Write flow control for proactor event loop.
Guido van Rossum
2013-12-04
1
-17/+99
*
Fix typo in asyncio.AbstractServer documentation
Victor Stinner
2013-12-03
1
-1/+1
*
asyncio: Improve default writelines().
Guido van Rossum
2013-12-03
1
-4/+12
*
asyncio: replace our with asynchronous in docstring
Victor Stinner
2013-12-02
1
-1/+1
*
asyncio: document locks
Victor Stinner
2013-12-02
1
-3/+3
*
Issue #19842: Refactor BaseSelector to make it an actual usable ABC.
Charles-François Natali
2013-12-01
1
-0/+14
*
asyncio: Use Interface instead of ABC. Fixes issue 19726.
Guido van Rossum
2013-11-30
3
-11/+11
*
asyncio: Add 'shield' to __all__.
Guido van Rossum
2013-11-29
1
-1/+1
*
asyncio: Change write buffer use to avoid O(N**2). Make write()/sendto() acce...
Guido van Rossum
2013-11-27
1
-31/+51
*
asyncio: Fix get_event_loop() to call set_event_loop() when setting the loop....
Guido van Rossum
2013-11-27
1
-1/+1
*
asyncio: Add StreamReaderProtocol to __all__.
Guido van Rossum
2013-11-25
1
-1/+1
*
asyncio: Fix docstring of get_nowait().
Guido van Rossum
2013-11-25
1
-1/+1
*
asyncio: Add BoundedSemaphore to export list in locks.__all__.
Guido van Rossum
2013-11-25
1
-1/+1
[next]