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: 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
*
Issue #19740: Use WaitForSingleObject() instead of trusting TimerOrWaitFired.
Richard Oudkerk
2013-11-24
1
-2/+9
*
Keep asyncio working with Python 3.3 too.
Guido van Rossum
2013-11-23
1
-2/+9
*
asyncio: Change bounded semaphore into a subclass, like threading.[Bounded]Se...
Guido van Rossum
2013-11-23
1
-17/+19
*
Issue #19735: Implement private function ssl._create_stdlib_context() to
Christian Heimes
2013-11-23
1
-4/+2
*
Fix typo.
Guido van Rossum
2013-11-23
1
-1/+1
*
Fix transport docstrings
Antoine Pitrou
2013-11-23
1
-5/+5
*
asyncio: Pass cancellation from wrapping Future to wrapped Future. By Saúl I...
Guido van Rossum
2013-11-22
1
-3/+8
*
asyncio: Make Semaphore(0) work properly.
Guido van Rossum
2013-11-21
1
-2/+2
*
asyncio: Add streams.start_server(), by Gustavo Carneiro.
Guido van Rossum
2013-11-19
1
-2/+51
*
asyncio: Replace connection_refused() with error_received().
Guido van Rossum
2013-11-16
2
-16/+13
*
asyncio: Fix from Anthony Baire for CPython issue 19566 (replaces earlier fix).
Guido van Rossum
2013-11-13
1
-28/+41
*
asyncio: Temporary fix by Victor Stinner for issue 19566.
Guido van Rossum
2013-11-13
1
-2/+3
*
asyncio: Add close() back to Unix selector event loop, to remove all signal h...
Guido van Rossum
2013-11-07
1
-0/+5
*
asyncio: Refactor SIGCHLD handling. By Anthony Baire.
Guido van Rossum
2013-11-04
3
-69/+414
[next]