| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-39529: Deprecate creating new event loop in asyncio.get_event_loop() (GH-... | Serhiy Storchaka | 2021-04-25 | 1 | -11/+42 |
|
|
* | bpo-43723: Fix deprecation error caused by thread.setDaemon() (GH-25361) | Christian Heimes | 2021-04-12 | 1 | -1/+1 |
|
|
* | bpo-34215: Clarify IncompleteReadError message when "expected" is None (GH-21... | Zackery Spytz | 2020-11-28 | 1 | -3/+5 |
|
|
* | bpo-42392: Remove loop parameter from asyncio.streams (GH-23517) | Yurii Karabas | 2020-11-26 | 1 | -52/+26 |
|
|
* | bpo-40275: Avoid importing socket in test.support (GH-19603) | Serhiy Storchaka | 2020-04-25 | 1 | -5/+5 |
|
|
* | bpo-38529: Fix asyncio stream warning (GH-17474) | Andrew Svetlov | 2019-12-07 | 1 | -53/+0 |
|
|
* | bpo-38242: Revert "bpo-36889: Merge asyncio streams (GH-13251)" (#16482) | Yury Selivanov | 2019-09-30 | 1 | -950/+182 |
|
|
* | bpo-36373: Deprecate explicit loop in task and subprocess API (GH-16033) | Andrew Svetlov | 2019-09-12 | 1 | -3/+4 |
|
|
* | bpo-38107: Replace direct future and task contructor calls with factories in ... | Andrew Svetlov | 2019-09-11 | 1 | -18/+16 |
|
|
* | bpo-38066: Hide internal Stream methods (GH-15762) | Andrew Svetlov | 2019-09-10 | 1 | -79/+103 |
|
|
* | Replace deprecation warning with RuntimeError (GH-14397) | Andrew Svetlov | 2019-06-27 | 1 | -0/+6 |
|
|
* | Make asyncio stream sendfile fail on error (was hang) (GH-14025) | Andrew Svetlov | 2019-06-12 | 1 | -5/+8 |
|
|
* | bpo-37142: Make asyncio stream tests more robust again (GH-13804) | Andrew Svetlov | 2019-06-04 | 1 | -9/+16 |
|
|
* | Make StreamServer.close() tests more robust (GH-13790) | Andrew Svetlov | 2019-06-04 | 1 | -11/+37 |
|
|
* | bpo-37148: Fix asyncio test that check for warning when running the test suit... | Pablo Galindo | 2019-06-04 | 1 | -0/+4 |
|
|
* | bpo-36889: Merge asyncio streams (GH-13251) | Andrew Svetlov | 2019-05-27 | 1 | -180/+828 |
|
|
* | bpo-36921: Deprecate @coroutine for sake of async def (GH-13346) | Andrew Svetlov | 2019-05-16 | 1 | -2/+1 |
|
|
* | bpo-36801: Temporarily fix regression in writer.drain() (#13330) | Andrew Svetlov | 2019-05-14 | 1 | -23/+0 |
|
|
* | bpo-36916: asyncio: Swallow unhandled write() exception (GH-13313) | Andrew Svetlov | 2019-05-14 | 1 | -0/+3 |
|
|
* | bpo-36802: Drop awrite()/aclose(), support await write() and await close() in... | Andrew Svetlov | 2019-05-09 | 1 | -12/+30 |
|
|
* | bpo-36801: Fix waiting in StreamWriter.drain for closing SSL transport (GH-13... | Andrew Svetlov | 2019-05-07 | 1 | -0/+23 |
|
|
* | Forbid creating of stream objects outside of asyncio (#13101) | Andrew Svetlov | 2019-05-07 | 1 | -50/+116 |
|
|
* | bpo-35934: Add socket.create_server() utility function (GH-11784) | Giampaolo Rodola | 2019-04-08 | 1 | -8/+3 |
|
|
* | bpo-35065: Remove `StreamReaderProtocol._untrack_reader` (#10212) | Vincent Michel | 2018-11-08 | 1 | -0/+23 |
|
|
* | bpo-34728: Fix asyncio tests to run under "-Werror" (GH-9661) | Yury Selivanov | 2018-10-02 | 1 | -1/+1 |
|
|
* | bpo-34687: Make asynico use ProactorEventLoop by default (GH-9538) | Victor Stinner | 2018-09-25 | 1 | -1/+2 |
|
|
* | bpo-34666: Implement stream.awrite() and stream.aclose() (GH-9274) | Andrew Svetlov | 2018-09-13 | 1 | -0/+22 |
|
|
* | bpo-34638: Store a weak reference to stream reader to break strong references... | Andrew Svetlov | 2018-09-12 | 1 | -0/+71 |
|
|
* | bpo-33562: Check the global asyncio event loop policy isn't set after any tes... | Brett Cannon | 2018-06-02 | 1 | -0/+4 |
|
|
* | bpo-32391: Implement StreamWriter.wait_closed() (#5281) | Andrew Svetlov | 2018-01-24 | 1 | -1/+30 |
|
|
* | bpo-32273: Move asyncio.test_utils to test.test_asyncio (#4785) | Yury Selivanov | 2017-12-11 | 1 | -1/+1 |
|
|
* | bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775) | Yury Selivanov | 2017-12-10 | 1 | -4/+5 |
|
|
* | bpo-32193: Convert asyncio to async/await usage (#4753) | Andrew Svetlov | 2017-12-08 | 1 | -20/+15 |
|
|
* | bpo-28684: asyncio tests handle PermissionError raised on binding unix socket... | xdegaye | 2017-11-24 | 1 | -4/+5 |
|
|
* | bpo-32034: Make IncompleteReadError & LimitOverrunError pickleable #4409 | Yury Selivanov | 2017-11-15 | 1 | -0/+18 |
|
|
* | Issue #28613: Fix get_event_loop() to return the current loop | Yury Selivanov | 2016-11-04 | 1 | -0/+1 |
|
|
* | Use raw string for regexp | Guido van Rossum | 2016-09-10 | 1 | -1/+1 |
|
|
* | Issue #26050: Add asyncio.StreamReader.readuntil() method. | Yury Selivanov | 2016-01-11 | 1 | -1/+127 |
|
|
* | asyncio/tests: Fix some ResourceWarnings | Yury Selivanov | 2015-12-17 | 1 | -6/+7 |
|
|
* | asyncio/tests: Fix deprecation warning | Yury Selivanov | 2015-12-17 | 1 | -1/+1 |
|
|
* | asyncio: Sync with github | Yury Selivanov | 2015-12-11 | 1 | -2/+2 |
|
|
* | Fix whitespace. | Guido van Rossum | 2015-10-19 | 1 | -1/+1 |
|
|
* | Issue #25441: asyncio: Raise error from drain() when socket is closed. | Guido van Rossum | 2015-10-19 | 1 | -0/+43 |
|
|
* | Fix StreamReader.__repr__ | Andrew Svetlov | 2015-09-29 | 1 | -0/+42 |
|
|
* | asyncio: sync with github | Victor Stinner | 2015-07-25 | 1 | -16/+12 |
|
|
* | asyncio: sync with github asyncio | Victor Stinner | 2015-07-09 | 1 | -3/+3 |
|
|
* | asyncio: pyflakes, remove unused import | Victor Stinner | 2015-01-21 | 1 | -9/+1 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-09 | 1 | -0/+19 |
|
|
* | asyncio: Truncate to 80 columns | Victor Stinner | 2015-01-08 | 1 | -2/+4 |
|
|
* | asyncio: Refactor tests: add a base TestCase class | Victor Stinner | 2014-06-17 | 1 | -2/+3 |
|
|