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
/
selector_events.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-33654: Support BufferedProtocol in set_protocol() and start_tls() (GH-7130)
Yury Selivanov
2018-05-28
1
-8/+20
*
bpo-31647: Fix write_eof() after close() for SelectorSocketTransport (GH-7149)
twisteroid ambassador
2018-05-28
1
-1/+1
*
bpo-33263: Fix FD leak in _SelectorSocketTransport (GH-6450)
Vlad Starostin
2018-05-21
1
-3/+9
*
bpo-32251: Implement asyncio.BufferedProtocol. (#4755)
Yury Selivanov
2018-01-28
1
-16/+68
*
bpo-32622: Implement loop.sendfile() (#5271)
Andrew Svetlov
2018-01-27
1
-0/+39
*
bpo-32436: Implement PEP 567 (#5027)
Yury Selivanov
2018-01-23
1
-2/+2
*
bpo-23749: Implement loop.start_tls() (#5039)
Yury Selivanov
2017-12-30
1
-0/+2
*
bpo-29970: Add timeout for SSL handshake in asyncio
Neil Aspinall
2017-12-19
1
-14/+26
*
bpo-27456: Simplify sock type checks (#4922)
Yury Selivanov
2017-12-19
1
-1/+1
*
bpo-32356: idempotent pause_/resume_reading; new is_reading method. (#4914)
Yury Selivanov
2017-12-18
1
-8/+7
*
bpo-27456: Ensure TCP_NODELAY is set on linux (#4231)
Yury Selivanov
2017-12-16
1
-1/+1
*
bpo-32327: Convert asyncio functions documented as coroutines to coroutines. ...
Yury Selivanov
2017-12-15
1
-20/+10
*
bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775)
Yury Selivanov
2017-12-10
1
-26/+26
*
bpo-32193: Convert asyncio to async/await usage (#4753)
Andrew Svetlov
2017-12-08
1
-9/+6
*
bpo-32154: Remove asyncio.selectors (#4605)
Victor Stinner
2017-11-28
1
-1/+1
*
asyncio: use directly socket.socketpair() (#4597)
Victor Stinner
2017-11-28
1
-4/+1
*
bpo-32069: Drop legacy SSL transport (#4451)
Andrew Svetlov
2017-11-18
1
-248/+0
*
bpo-32015: Asyncio looping during simultaneously socket read/write an… (#4386)
Andrey Egorov
2017-11-14
1
-19/+18
*
bpo-28369: Enhance transport socket check in add_reader/writer (#4365)
Yury Selivanov
2017-11-13
1
-1/+9
*
bpo-31819: Add AbstractEventLoop.sock_recv_into() (#4051)
Antoine Pitrou
2017-10-19
1
-0/+35
*
bpo-29617: Remove Python 3.3 support from asyncio (GH-232)
INADA Naoki
2017-04-25
1
-10/+5
*
Merge 3.5 (issue #28369)
Yury Selivanov
2016-10-05
1
-48/+79
|
\
|
*
Issue #28369: Raise an error when transport's FD is used with add_reader
Yury Selivanov
2016-10-05
1
-48/+79
*
|
Merge 3.5 (issue #28176)
Yury Selivanov
2016-09-15
1
-17/+10
|
\
\
|
|
/
|
*
Issue #28176: Fix callbacks race in asyncio.SelectorLoop.sock_connect.
Yury Selivanov
2016-09-15
1
-17/+10
*
|
Merge 3.5 (issue #27906)
Yury Selivanov
2016-09-15
1
-33/+40
|
\
\
|
|
/
|
*
Issue #27906: Fix socket accept exhaustion during high TCP traffic.
Yury Selivanov
2016-09-15
1
-33/+40
*
|
Merge 3.5 (issue #27456)
Yury Selivanov
2016-09-12
1
-0/+16
|
\
\
|
|
/
|
*
Issue #27456: asyncio: Set TCP_NODELAY by default.
Yury Selivanov
2016-09-12
1
-0/+16
*
|
Merge 3.5 (asyncio)
Yury Selivanov
2016-09-12
1
-0/+6
|
\
\
|
|
/
|
*
asyncio: Add set_protocol / get_protocol methods to Transports
Yury Selivanov
2016-09-12
1
-0/+6
*
|
Merge 3.5 (asyncio)
Yury Selivanov
2016-06-28
1
-1/+2
|
\
\
|
|
/
|
*
asyncio: Use socket specs for getaddrinfo() in sock_connect()
Yury Selivanov
2016-06-28
1
-1/+2
*
|
Merge 3.5 (issue #27223)
Yury Selivanov
2016-06-11
1
-0/+11
|
\
\
|
|
/
|
*
Issue #27223: aio: Fix _read_ready and _write_ready to respect _conn_lost.
Yury Selivanov
2016-06-11
1
-0/+11
*
|
Merge 3.5 (issue #27136, asyncio)
Yury Selivanov
2016-06-08
1
-10/+14
|
\
\
|
|
/
|
*
Issue #27136: Fix DNS static resolution; don't use it in getaddrinfo
Yury Selivanov
2016-06-08
1
-10/+14
*
|
Merge 3.5 (Issue #27041)
Yury Selivanov
2016-05-16
1
-5/+5
|
\
\
|
|
/
|
*
Issue #27041: asyncio: Add loop.create_future method
Yury Selivanov
2016-05-16
1
-5/+5
*
|
Issue #26778: Fixed "a/an/and" typos in code comment, documentation and error
Serhiy Storchaka
2016-04-17
1
-1/+1
|
\
\
|
|
/
|
*
Issue #26778: Fixed "a/an/and" typos in code comment and documentation.
Serhiy Storchaka
2016-04-17
1
-1/+1
*
|
Merge 3.5 (asyncio)
Victor Stinner
2016-04-01
1
-2/+1
|
\
\
|
|
/
|
*
asyncio: Don't log ConnectionAbortedError
Victor Stinner
2016-04-01
1
-2/+1
*
|
Add a source parameter to warnings.warn()
Victor Stinner
2016-03-22
1
-1/+2
|
/
*
Fix error message in asyncio.selector_events.
Victor Stinner
2016-02-01
1
-6/+6
*
asyncio: Skip getaddrinfo if host is already resolved.
Yury Selivanov
2015-12-17
1
-2/+1
*
asyncio: Cleanup Future API
Yury Selivanov
2015-11-17
1
-2/+4
*
asyncio: Add Transport.is_closing()
Yury Selivanov
2015-11-16
1
-0/+3
*
Issue #25114, asyncio: add ssl_object extra info to SSL transports
Victor Stinner
2015-09-21
1
-0/+1
*
asyncio: Sync with upstream (compat module)
Yury Selivanov
2015-08-04
1
-2/+2
[next]