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
/
test
/
test_asyncio
/
test_selector_events.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-38107: Replace direct future and task contructor calls with factories in ...
Andrew Svetlov
2019-09-11
1
-5/+5
*
bpo-37015: Ensure tasks created by _accept_connection2 due to AsyncMock are c...
Xtreak
2019-05-30
1
-6/+8
*
bpo-37035: Don't log OSError (GH-13548)
Andrew Svetlov
2019-05-27
1
-2/+25
*
bpo-31922: Do not connect UDP sockets when broadcast is allowed (GH-423)
Vincent Michel
2019-05-07
1
-0/+1
*
bpo-35380: Enable TCP_NODELAY for proactor event loop (#10867)
Andrew Svetlov
2018-12-03
1
-26/+0
*
bpo-35202: Remove unused imports in tests. (GH-10561)
Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)
2018-11-16
1
-1/+0
*
bpo-30064: Refactor sock_* asyncio API (#10419)
Andrew Svetlov
2018-11-12
1
-405/+0
*
bpo-34728: Fix asyncio tests to run under "-Werror" (GH-9661)
Yury Selivanov
2018-10-02
1
-8/+8
*
bpo-33562: Check the global asyncio event loop policy isn't set after any tes...
Brett Cannon
2018-06-02
1
-0/+4
*
bpo-33654: Support BufferedProtocol in set_protocol() and start_tls() (GH-7130)
Yury Selivanov
2018-05-28
1
-4/+41
*
bpo-31647: Fix write_eof() after close() for SelectorSocketTransport (GH-7149)
twisteroid ambassador
2018-05-28
1
-0/+6
*
bpo-33263: Fix FD leak in _SelectorSocketTransport (GH-6450)
Vlad Starostin
2018-05-21
1
-0/+15
*
bpo-32251: Implement asyncio.BufferedProtocol. (#4755)
Yury Selivanov
2018-01-28
1
-0/+171
*
bpo-32356: idempotent pause_/resume_reading; new is_reading method. (#4914)
Yury Selivanov
2017-12-18
1
-3/+25
*
bpo-27456: Ensure TCP_NODELAY is set on linux (#4231)
Yury Selivanov
2017-12-16
1
-0/+27
*
bpo-32327: Convert asyncio functions documented as coroutines to coroutines. ...
Yury Selivanov
2017-12-15
1
-22/+52
*
bpo-32273: Move asyncio.test_utils to test.test_asyncio (#4785)
Yury Selivanov
2017-12-11
1
-1/+1
*
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
-3/+0
*
asyncio: Fix BaseSelectorEventLoopTests (#4595)
Victor Stinner
2017-11-27
1
-0/+2
*
bpo-32069: Drop legacy SSL transport (#4451)
Andrew Svetlov
2017-11-18
1
-363/+0
*
bpo-32015: Asyncio looping during simultaneously socket read/write an… (#4386)
Andrey Egorov
2017-11-14
1
-19/+59
*
bpo-30280: Cleanup threads in ayncio tests (#2501)
Victor Stinner
2017-06-30
1
-5/+3
*
Issue #28613: Fix get_event_loop() to return the current loop
Yury Selivanov
2016-11-04
1
-0/+5
*
Issue #28369: Raise an error when transport's FD is used with add_reader
Yury Selivanov
2016-10-05
1
-32/+32
*
Issue #28283: Remove flaky test test_sock_connect_sock_write_race again
Berker Peksag
2016-10-01
1
-86/+0
*
Misc asyncio improvements from upstream
Guido van Rossum
2016-09-30
1
-0/+86
*
Issue #28283: Remove flaky test test_sock_connect_sock_write_race
Berker Peksag
2016-09-27
1
-86/+0
*
test_asynico: fix test_sock_connect_sock_write_race()
Victor Stinner
2016-09-21
1
-1/+1
*
Issue #28176: Increase timeout for test_sock_connect_sock_write_race
Berker Peksag
2016-09-17
1
-1/+1
*
Issue #28176: Fix callbacks race in asyncio.SelectorLoop.sock_connect.
Yury Selivanov
2016-09-15
1
-23/+101
*
Issue #27906: Fix socket accept exhaustion during high TCP traffic.
Yury Selivanov
2016-09-15
1
-0/+14
*
asyncio: Use socket specs for getaddrinfo() in sock_connect()
Yury Selivanov
2016-06-28
1
-0/+11
*
Issue #27223: aio: Fix _read_ready and _write_ready to respect _conn_lost.
Yury Selivanov
2016-06-11
1
-17/+13
*
Issue #27136: Fix DNS static resolution; don't use it in getaddrinfo
Yury Selivanov
2016-06-08
1
-5/+15
*
Issue #26778: Fixed "a/an/and" typos in code comment and documentation.
Serhiy Storchaka
2016-04-17
1
-1/+1
*
asyncio: Add Transport.is_closing()
Yury Selivanov
2015-11-16
1
-3/+3
*
asyncio: sync with github asyncio
Victor Stinner
2015-07-09
1
-1/+1
*
asyncio: Fix _SelectorTransport.__repr__() if the event loop is closed
Victor Stinner
2015-03-27
1
-0/+5
*
asyncio: sync with Tulip
Victor Stinner
2015-01-29
1
-1/+14
*
asyncio: Fix _SelectorSocketTransport constructor
Victor Stinner
2015-01-28
1
-5/+11
*
asyncio: Close transports in tests
Victor Stinner
2015-01-15
1
-0/+2
*
Issue #23243: Close explicitly transports in asyncio tests
Victor Stinner
2015-01-15
1
-144/+118
*
Issue #23243: Close explicitly event loops in asyncio tests
Victor Stinner
2015-01-15
1
-1/+15
*
asyncio: sync with Tulip
Victor Stinner
2015-01-14
1
-0/+1
*
Issue #23197, asyncio: On SSL handshake failure, check if the waiter is
Victor Stinner
2015-01-14
1
-4/+16
*
Issue #22560: New SSL implementation based on ssl.MemoryBIO
Victor Stinner
2015-01-13
1
-1/+5
*
asyncio: sync with Tulip
Victor Stinner
2014-12-26
1
-3/+0
*
don't require OpenSSL SNI to pass hostname to ssl functions (#22921)
Benjamin Peterson
2014-11-23
1
-1/+1
*
asyncio, Tulip issue 205: Fix a race condition in BaseSelectorEventLoop.sock_...
Victor Stinner
2014-08-31
1
-22/+52
[next]