summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio
Commit message (Expand)AuthorAgeFilesLines
* bpo-32841: Fix cancellation in awaiting asyncio.Condition (#5665)Bar Harel2018-02-141-4/+27
* bpo-31787: Prevent refleaks when calling __init__() more than once (GH-3995)Oren Milman2018-02-131-0/+14
* bpo-32734: Fix asyncio.Lock multiple acquire safety issue (GH-5466)Bar Harel2018-02-021-0/+50
* Implement TimerHandle.when() (#5473)Andrew Svetlov2018-02-011-0/+6
* bpo-23749: Make start-tls tests more stable on win7 buildbot (GH-5409)Yury Selivanov2018-01-291-2/+10
* bpo-32251: Implement asyncio.BufferedProtocol. (#4755)Yury Selivanov2018-01-283-3/+450
* bpo-32327: Revert loop.run_in_executor behaviour: return a Future. (#5392)Yury Selivanov2018-01-281-3/+2
* Fix tests if Python compiled without SSL (#5367)Andrew Svetlov2018-01-271-0/+2
* bpo-32622: Enforce sendfile fallback policy for FALLBACK transports (#5364)Yury Selivanov2018-01-271-0/+9
* bpo-32622: Implement loop.sendfile() (#5271)Andrew Svetlov2018-01-272-4/+308
* bpo-32630: Use contextvars in decimal (GH-5278)Yury Selivanov2018-01-271-0/+29
* bpo-31399: Let OpenSSL verify hostname and IP address (#3462)Christian Heimes2018-01-271-2/+4
* bpo-32662: Try making test_asyncio.test_server more reliable (#5338)Yury Selivanov2018-01-261-1/+12
* bpo-32574: Fix leaks in asyncio.Queue.put() and .get() (#5208)José Melero Fernández2018-01-251-0/+50
* bpo-32662: Implement Server.start_serving() and Server.serve_forever() (#5312)Yury Selivanov2018-01-251-0/+117
* bpo-32391: Implement StreamWriter.wait_closed() (#5281)Andrew Svetlov2018-01-241-1/+30
* bpo-32636: Fix two bugs in test_asyncio (#5302)Victor Stinner2018-01-242-1/+2
* bpo-32636: Fix @asyncio.coroutine debug mode bug exposed by gh-5250 (#5291)Nathaniel J. Smith2018-01-241-0/+17
* bpo-32410: Improve sock_sendfile tests (#5294)Andrew Svetlov2018-01-241-16/+19
* bpo-32643: Drop support for a few private Task and Future APIs. (#5293)Yury Selivanov2018-01-242-29/+3
* bpo-32633: Fix some warnings in test_asyncio.test_tasks (#5280)Nathaniel J. Smith2018-01-231-2/+8
* bpo-32436: Implement PEP 567 (#5027)Yury Selivanov2018-01-234-23/+118
* bpo-32593: Drop FreeBSD 9 and older support (#5232)Victor Stinner2018-01-221-2/+0
* bpo-32314: Fix asyncio.run() to cancel runinng tasks on shutdown (#5262)Yury Selivanov2018-01-212-0/+87
* bpo-32591: Add native coroutine origin tracking (#5250)Nathaniel J. Smith2018-01-211-28/+8
* bpo-32602: Test ECDSA certs (#5247)Christian Heimes2018-01-201-11/+17
* bpo-32410: Make SendfileNotAvailableError exception public (#5243)Andrew Svetlov2018-01-192-8/+10
* bpo-32410: Implement loop.sock_sendfile() (#4976)Andrew Svetlov2018-01-163-0/+411
* Make asyncio tests run when there's no SSL module (#5196)Yury Selivanov2018-01-151-3/+0
* bpo-32458: Temporarily mask start-tls proactor test on Windows (#5054)Yury Selivanov2017-12-301-2/+4
* bpo-32418: Postfix, raise NotImplementdError and close resources in tests (#5...Andrew Svetlov2017-12-301-2/+19
* bpo-32418: Add get_loop() method on Server, AbstractServer classes (#4997)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2017-12-301-0/+13
* bpo-23749: Implement loop.start_tls() (#5039)Yury Selivanov2017-12-304-53/+488
* bpo-26133: Fix typos (#5010)Andrew Svetlov2017-12-261-0/+17
* bpo-31721: Allow Future._log_traceback to only be set to False (#5009)Yury Selivanov2017-12-252-0/+14
* bpo-32363: Disable Task.set_exception() and Task.set_result() (#4923)Yury Selivanov2017-12-252-23/+73
* bpo-32415: Fix "error is already set" (#4999)Yury Selivanov2017-12-231-0/+26
* Fix check for run_in_executor on closed loop. (#4996)Andrew Svetlov2017-12-231-3/+7
* bpo-32415: Add more tests (#4995)Yury Selivanov2017-12-231-3/+21
* bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992)Yury Selivanov2017-12-232-5/+9
* bpo-32357: Fix tests in refleak mode (#4989)Yury Selivanov2017-12-232-23/+32
* bpo-29970: Make ssh_handshake_timeout None by default (#4939)Andrew Svetlov2017-12-204-0/+59
* bpo-29970: Add timeout for SSL handshake in asyncioNeil Aspinall2017-12-192-12/+35
* bpo-29711: Fix stop_serving in proactor loop kill all listening servers (#431)Julien Duponchelle2017-12-191-4/+15
* bpo-32357: Optimize asyncio.iscoroutine() for non-native coroutines (#4915)Yury Selivanov2017-12-191-0/+43
* Improve test coverage (#4924)Andrew Svetlov2017-12-191-0/+1
* bpo-32356: idempotent pause_/resume_reading; new is_reading method. (#4914)Yury Selivanov2017-12-183-8/+47
* bpo-32348: Optimize asyncio.Future schedule/add/remove callback. (#4907)Yury Selivanov2017-12-182-27/+175
* bpo-32250: Implement asyncio.current_task() and asyncio.all_tasks() (#4799)Andrew Svetlov2017-12-161-23/+183
* bpo-27456: Ensure TCP_NODELAY is set on linux (#4231)Yury Selivanov2017-12-162-7/+27