Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-42392: Remove loop parameter from asyncio.streams (GH-23517) | Yurii Karabas | 2020-11-26 | 1 | -6/+4 |
| | |||||
* | bpo-40443: Remove unused imports in tests (GH-19804) | Victor Stinner | 2020-04-30 | 1 | -1/+0 |
| | |||||
* | bpo-40275: Avoid importing socket in test.support (GH-19603) | Serhiy Storchaka | 2020-04-25 | 1 | -2/+3 |
| | | | | | | * Move socket related functions from test.support to socket_helper. * Import socket, nntplib and urllib.error lazily in transient_internet(). * Remove importing multiprocess. | ||||
* | Remove unused imports in tests (GH-14518) | Victor Stinner | 2019-07-01 | 1 | -1/+0 |
| | |||||
* | bpo-36889: Merge asyncio streams (GH-13251) | Andrew Svetlov | 2019-05-27 | 1 | -4/+6 |
| | | | https://bugs.python.org/issue36889 | ||||
* | bpo-37027: Return a proxy socket object from transp.get_extra_info('socket') ↵ | Yury Selivanov | 2019-05-27 | 1 | -2/+2 |
| | | | | | | | | | | (GH-13530) Return a safe to use proxy socket object from `transport.get_extra_info('socket')` https://bugs.python.org/issue37027 | ||||
* | bpo-36341: Fix tests calling bind() on AF_UNIX sockets (GH-12399) | xdegaye | 2019-05-03 | 1 | -1/+1 |
| | | | | | | | Those tests may fail with PermissionError. https://bugs.python.org/issue36341 | ||||
* | bpo-33562: Check the global asyncio event loop policy isn't set after any ↵ | Brett Cannon | 2018-06-02 | 1 | -0/+4 |
| | | | | tests (GH-7328) | ||||
* | bpo-32662: Try making test_asyncio.test_server more reliable (#5338) | Yury Selivanov | 2018-01-26 | 1 | -1/+12 |
| | |||||
* | bpo-32662: Implement Server.start_serving() and Server.serve_forever() (#5312) | Yury Selivanov | 2018-01-25 | 1 | -0/+117 |
* bpo-32662: Implement Server.start_serving() and Server.serve_forever() New methods: * Server.start_serving(), * Server.serve_forever(), and * Server.is_serving(). Add 'start_serving' keyword parameter to loop.create_server() and loop.create_unix_server(). |