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_base_events.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-32410: Avoid blocking on file IO in sendfile fallback code (GH-7172) (#7182)
Miss Islington (bot)
2018-05-29
1
-0/+3
*
Use IPv4 only to avoid IP address collision (GH-7030)
Miss Islington (bot)
2018-05-21
1
-6/+4
*
Fix asyncio flaky tests (GH-7023) (#7024)
Miss Islington (bot)
2018-05-21
1
-2/+3
*
bpo-33522: Enable CI builds on Visual Studio Team Services (GH-6865) (GH-6926)
Miss Islington (bot)
2018-05-17
1
-3/+15
*
bpo-32622: Implement loop.sendfile() (#5271)
Andrew Svetlov
2018-01-27
1
-1/+8
*
bpo-32636: Fix two bugs in test_asyncio (#5302)
Victor Stinner
2018-01-24
1
-0/+1
*
bpo-32436: Implement PEP 567 (#5027)
Yury Selivanov
2018-01-23
1
-5/+5
*
bpo-32410: Make SendfileNotAvailableError exception public (#5243)
Andrew Svetlov
2018-01-19
1
-2/+3
*
bpo-32410: Implement loop.sock_sendfile() (#4976)
Andrew Svetlov
2018-01-16
1
-0/+158
*
bpo-29970: Make ssh_handshake_timeout None by default (#4939)
Andrew Svetlov
2017-12-20
1
-0/+16
*
bpo-29970: Add timeout for SSL handshake in asyncio
Neil Aspinall
2017-12-19
1
-11/+22
*
bpo-27456: Ensure TCP_NODELAY is set on linux (#4231)
Yury Selivanov
2017-12-16
1
-7/+0
*
bpo-32327: Convert asyncio functions documented as coroutines to coroutines. ...
Yury Selivanov
2017-12-15
1
-36/+14
*
bpo-32101: Fix tests for PYTHONDEVMODE=1 (#4821)
Victor Stinner
2017-12-12
1
-2/+5
*
bpo-32273: Move asyncio.test_utils to test.test_asyncio (#4785)
Yury Selivanov
2017-12-11
1
-12/+3
*
bpo-32193: Convert asyncio to async/await usage (#4753)
Andrew Svetlov
2017-12-08
1
-2/+4
*
bpo-32047: -X dev enables asyncio debug mode (#4418)
Victor Stinner
2017-11-20
1
-0/+4
*
Rewrite asyncio test to be more meaningful (#4363)
Yury Selivanov
2017-11-10
1
-11/+16
*
[asyncio] bpo-30423: add regression test for orphan future causes "RuntimeErr...
jimmylai
2017-11-01
1
-0/+16
*
bpo-31245: Asyncio unix socket datagram (#3164)
Quentin Dawans
2017-10-30
1
-0/+11
*
Issue #28652: Partially rollback previous changes
Yury Selivanov
2016-11-21
1
-6/+4
*
Issue #28652: Make loop methods reject socket kinds they do not support.
Yury Selivanov
2016-11-09
1
-8/+55
*
Issue #28613: Fix get_event_loop() to return the current loop
Yury Selivanov
2016-11-04
1
-0/+20
*
Issue #28600: Optimize loop.call_soon().
Yury Selivanov
2016-11-03
1
-28/+8
*
Issue #28371: Deprecate passing asyncio.Handles to run_in_executor.
Yury Selivanov
2016-10-05
1
-3/+6
*
Issue #28369: Raise an error when transport's FD is used with add_reader
Yury Selivanov
2016-10-05
1
-12/+12
*
Misc asyncio improvements from upstream
Guido van Rossum
2016-09-30
1
-20/+31
*
Issue #28174: Handle when SO_REUSEPORT isn't properly supported (asyncio)
Yury Selivanov
2016-09-15
1
-0/+11
*
Issue #27906: Fix socket accept exhaustion during high TCP traffic.
Yury Selivanov
2016-09-15
1
-1/+1
*
Issue #27136: Change test to use ::1 for better OS X Tiger compatibility
Martin Panter
2016-06-13
1
-4/+4
*
Issue #27136: Fix DNS static resolution; don't use it in getaddrinfo
Yury Selivanov
2016-06-08
1
-52/+39
*
asyncio: Fix getaddrinfo to accept service names (for port)
Yury Selivanov
2016-06-02
1
-0/+20
*
asyncio: Support host=b'' for getaddrinfo
Yury Selivanov
2016-06-02
1
-0/+4
*
asyncio: Fix getaddrinfo to accept None/str/bytes for 'port' arg
Yury Selivanov
2016-05-20
1
-0/+22
*
Issue #27040: Add loop.get_exception_handler method
Yury Selivanov
2016-05-16
1
-0/+2
*
asyncio/tests: Ensure a gc_collect for __del__ testing
Yury Selivanov
2016-05-13
1
-0/+1
*
asyncio/tests: Fix ResourceWarnings related to unclosed transports
Yury Selivanov
2015-12-17
1
-18/+29
*
asyncio/tests: Fix some ResourceWarnings
Yury Selivanov
2015-12-17
1
-7/+11
*
Normalize whitespace
Yury Selivanov
2015-12-17
1
-1/+1
*
asyncio: Skip getaddrinfo if host is already resolved.
Yury Selivanov
2015-12-17
1
-16/+192
*
asyncio: Fix with github
Yury Selivanov
2015-11-20
1
-3/+4
*
asyncio.tests: Fix whitespace
Yury Selivanov
2015-11-20
1
-4/+3
*
asyncio: Sync with github
Yury Selivanov
2015-11-20
1
-1/+1
*
Issue #25593: Change semantics of EventLoop.stop().
Guido van Rossum
2015-11-19
1
-0/+53
*
Issue #23972: Fix tests for Windows and Debian.
Guido van Rossum
2015-10-06
1
-4/+1
*
Issue #23972: updates to asyncio datagram API. By Chris Laws.
Guido van Rossum
2015-10-05
1
-2/+138
*
asyncio: Support PEP 492. Issue #24017.
Yury Selivanov
2015-05-12
1
-1/+2
*
asyncio: async() function is deprecated in favour of ensure_future().
Yury Selivanov
2015-05-11
1
-3/+3
*
Sync asyncio changes from the main repo.
Yury Selivanov
2015-05-11
1
-2/+43
*
Issue #23243: Close explicitly event loops in asyncio tests
Victor Stinner
2015-01-15
1
-0/+1
[next]