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_events.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
[3.7] bpo-37279: Fix asyncio sendfile support when extra data are sent in fa...
Andrew Svetlov
2019-06-15
1
-1/+2
*
bpo-35601: Alleviate race condition when waiting for SIGALRM in test_asyncio ...
Miss Islington (bot)
2018-12-29
1
-1/+3
*
[3.7] bpo-34490: Fix test_asyncio for AIX - do not call transport.get_extra_i...
Andrew Svetlov
2018-09-14
1
-4/+6
*
bpo-33353: test_asyncio use set_write_buffer_limits() (GH-7200)
Miss Islington (bot)
2018-05-29
1
-17/+29
*
bpo-32410: Avoid blocking on file IO in sendfile fallback code (GH-7172) (#7182)
Miss Islington (bot)
2018-05-29
1
-0/+11
*
bpo-33469: RuntimeError after closing loop that used run_in_executor (GH-7171)
Miss Islington (bot)
2018-05-28
1
-0/+18
*
bpo-33672: Fix Task.__repr__ crash with Cython's bogus coroutines (GH-7161) (...
Miss Islington (bot)
2018-05-28
1
-0/+10
*
bpo-33654: Support BufferedProtocol in set_protocol() and start_tls() (GH-7130)
Miss Islington (bot)
2018-05-28
1
-3/+3
*
[3.7] bpo-33353: Fix test_asyncio on FreeBSD (GH-7087)
Victor Stinner
2018-05-24
1
-5/+11
*
bpo-32517: re-enable test_read_pty_output on macOS (GH-6112)
Ned Deily
2018-03-27
1
-1/+0
*
bpo-32517: fix test_read_pty_output() hangs on macOS 10.13.2+ (GH-6037)
Miss Islington (bot)
2018-03-09
1
-0/+1
*
bpo-32622: Native sendfile on windows (GH-5565)
Miss Islington (bot)
2018-02-25
1
-35/+152
*
Implement TimerHandle.when() (GH-5473) (GH-5480)
Miss Islington (bot)
2018-02-01
1
-0/+6
*
Fix tests if Python compiled without SSL (#5367)
Andrew Svetlov
2018-01-27
1
-0/+2
*
bpo-32622: Enforce sendfile fallback policy for FALLBACK transports (#5364)
Yury Selivanov
2018-01-27
1
-0/+9
*
bpo-32622: Implement loop.sendfile() (#5271)
Andrew Svetlov
2018-01-27
1
-3/+300
*
bpo-31399: Let OpenSSL verify hostname and IP address (#3462)
Christian Heimes
2018-01-27
1
-2/+4
*
bpo-32593: Drop FreeBSD 9 and older support (#5232)
Victor Stinner
2018-01-22
1
-2/+0
*
bpo-32410: Implement loop.sock_sendfile() (#4976)
Andrew Svetlov
2018-01-16
1
-0/+2
*
bpo-32418: Postfix, raise NotImplementdError and close resources in tests (#5...
Andrew Svetlov
2017-12-30
1
-2/+19
*
bpo-32418: Add get_loop() method on Server, AbstractServer classes (#4997)
Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)
2017-12-30
1
-0/+13
*
bpo-23749: Implement loop.start_tls() (#5039)
Yury Selivanov
2017-12-30
1
-53/+14
*
Fix check for run_in_executor on closed loop. (#4996)
Andrew Svetlov
2017-12-23
1
-3/+7
*
bpo-32357: Fix tests in refleak mode (#4989)
Yury Selivanov
2017-12-23
1
-16/+17
*
bpo-29970: Make ssh_handshake_timeout None by default (#4939)
Andrew Svetlov
2017-12-20
1
-0/+10
*
bpo-32327: Convert asyncio functions documented as coroutines to coroutines. ...
Yury Selivanov
2017-12-15
1
-2/+3
*
bpo-32296: Unbreak tests on Windows (#4850)
Yury Selivanov
2017-12-13
1
-4/+7
*
bpo-32296: Implement asyncio.get_event_loop and _get_running_loop in C. (#4827)
Yury Selivanov
2017-12-13
1
-20/+113
*
Add asyncio.get_running_loop() function. (#4782)
Yury Selivanov
2017-12-11
1
-0/+6
*
bpo-32273: Move asyncio.test_utils to test.test_asyncio (#4785)
Yury Selivanov
2017-12-11
1
-3/+1
*
Skip test_read_pty_output test on macOS for poll and select. (#4774)
Yury Selivanov
2017-12-10
1
-3/+1
*
bpo-32193: Convert asyncio to async/await usage (#4753)
Andrew Svetlov
2017-12-08
1
-63/+66
*
bpo-32154: Remove asyncio.windows_utils.socketpair (#4609)
Victor Stinner
2017-11-28
1
-6/+6
*
bpo-32154: Remove asyncio.selectors (#4605)
Victor Stinner
2017-11-28
1
-1/+1
*
bpo-32126: Skip asyncio test when sem_open() is not functional (GH-4559)
xdegaye
2017-11-26
1
-0/+4
*
bpo-28684: Remove useless import added by the previous commit (GH-4547)
xdegaye
2017-11-24
1
-1/+0
*
bpo-28684: asyncio tests handle PermissionError raised on binding unix socket...
xdegaye
2017-11-24
1
-7/+8
*
bpo-32069: Drop legacy SSL transport (#4451)
Andrew Svetlov
2017-11-18
1
-68/+0
*
Add asyncio.Handle.cancelled() method (#2388)
Marat Sharafutdinov
2017-11-07
1
-4/+4
*
bpo-31819: Add AbstractEventLoop.sock_recv_into() (#4051)
Antoine Pitrou
2017-10-19
1
-0/+26
*
bpo-31346: Use PROTOCOL_TLS_CLIENT/SERVER (#3058)
Christian Heimes
2017-09-15
1
-8/+8
*
bpo-31234: Add support.join_thread() helper (#3587)
Victor Stinner
2017-09-14
1
-1/+1
*
bpo-31250, test_asyncio: fix EventLoopTestsMixin.tearDown() (#3264)
Victor Stinner
2017-09-01
1
-2/+2
*
bpo-31034: Reliable signal handler for test_asyncio (#2867)
Victor Stinner
2017-07-25
1
-13/+20
*
bpo-30110: fix resource leak in test_asyncio.test_events (#1413)
Xiang Zhang
2017-05-15
1
-1/+3
*
bpo-29703: asyncio: Fix creating new event loops in child processes. (#404)
Yury Selivanov
2017-03-03
1
-0/+22
*
Issue #28652: Make loop methods reject socket kinds they do not support.
Yury Selivanov
2016-11-09
1
-3/+8
*
asyncio: Fix _format_coroutine for coroutine-like objects w/o __name__
Yury Selivanov
2016-11-09
1
-2/+6
*
Issue #28613: Expose asyncio._get_running_loop() and _set_running_loop()
Yury Selivanov
2016-11-08
1
-0/+4
*
Issue #28613: Fix get_event_loop() to return the current loop
Yury Selivanov
2016-11-04
1
-0/+23
[next]