summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
Commit message (Expand)AuthorAgeFilesLines
* Fix duplicating words words. (GH-6296)Serhiy Storchaka2018-03-281-1/+1
* Fix senfile typo (#6265)Sam Dunster2018-03-281-1/+1
* bpo-33037: Skip sending/receiving after SSL transport closing (GH-6044)Andrew Svetlov2018-03-101-1/+5
* bpo-32622: Native sendfile on windows (#5565)Andrew Svetlov2018-02-252-1/+91
* bpo-32841: Fix cancellation in awaiting asyncio.Condition (#5665)Bar Harel2018-02-141-1/+5
* bpo-32734: Fix asyncio.Lock multiple acquire safety issue (GH-5466)Bar Harel2018-02-021-10/+22
* Implement TimerHandle.when() (#5473)Andrew Svetlov2018-02-011-0/+8
* bpo-32251: Fix docs (#5408)Yury Selivanov2018-01-291-1/+1
* bpo-32251: Implement asyncio.BufferedProtocol. (#4755)Yury Selivanov2018-01-283-37/+241
* bpo-32327: Revert loop.run_in_executor behaviour: return a Future. (#5392)Yury Selivanov2018-01-281-2/+2
* bpo-32622: Normalize ENOTCONN to ConnectionError on macOS (GH-5369)Yury Selivanov2018-01-271-0/+11
* bpo-32622: Enforce sendfile fallback policy for FALLBACK transports (#5364)Yury Selivanov2018-01-271-1/+6
* bpo-32622: Implement loop.sendfile() (#5271)Andrew Svetlov2018-01-277-4/+219
* bpo-31399: Let OpenSSL verify hostname and IP address (#3462)Christian Heimes2018-01-271-6/+0
* bpo-32574: Fix leaks in asyncio.Queue.put() and .get() (#5208)José Melero Fernández2018-01-251-2/+10
* bpo-32662: Implement Server.start_serving() and Server.serve_forever() (#5312)Yury Selivanov2018-01-253-30/+132
* bpo-32391: Implement StreamWriter.wait_closed() (#5281)Andrew Svetlov2018-01-241-9/+27
* bpo-32636: Fix @asyncio.coroutine debug mode bug exposed by gh-5250 (#5291)Nathaniel J. Smith2018-01-241-1/+2
* bpo-32643: Drop support for a few private Task and Future APIs. (#5293)Yury Selivanov2018-01-242-18/+18
* bpo-32436: Implement PEP 567 (#5027)Yury Selivanov2018-01-237-36/+55
* bpo-32314: Fix asyncio.run() to cancel runinng tasks on shutdown (#5262)Yury Selivanov2018-01-212-15/+35
* bpo-32591: Add native coroutine origin tracking (#5250)Nathaniel J. Smith2018-01-212-66/+16
* bpo-32410: Make SendfileNotAvailableError exception public (#5243)Andrew Svetlov2018-01-193-16/+19
* bpo-32410: Implement loop.sock_sendfile() (#4976)Andrew Svetlov2018-01-163-0/+167
* bpo-32418: Postfix, raise NotImplementdError and close resources in tests (#5...Andrew Svetlov2017-12-301-3/+3
* bpo-32418: Add get_loop() method on Server, AbstractServer classes (#4997)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2017-12-302-0/+7
* bpo-23749: Implement loop.start_tls() (#5039)Yury Selivanov2017-12-304-1/+59
* bpo-26133: Fix typos (#5010)Andrew Svetlov2017-12-261-2/+2
* bpo-31721: Allow Future._log_traceback to only be set to False (#5009)Yury Selivanov2017-12-251-6/+16
* bpo-32363: Disable Task.set_exception() and Task.set_result() (#4923)Yury Selivanov2017-12-252-10/+21
* bpo-26133: Clear signals list on interpreter finalizing (#5002)Andrew Svetlov2017-12-241-4/+7
* bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992)Yury Selivanov2017-12-233-25/+36
* bpo-26133: Dont unsubscribe signals in UNIX even loop on interpreter shutdown...Andrew Svetlov2017-12-211-2/+8
* bpo-29970: Make ssh_handshake_timeout None by default (#4939)Andrew Svetlov2017-12-205-16/+41
* bpo-29970: Add timeout for SSL handshake in asyncioNeil Aspinall2017-12-197-68/+138
* bpo-29711: Fix stop_serving in proactor loop kill all listening servers (#431)Julien Duponchelle2017-12-191-1/+3
* bpo-32355: Optimize asyncio.gather() (#4913)Yury Selivanov2017-12-192-47/+67
* bpo-32357: Optimize asyncio.iscoroutine() for non-native coroutines (#4915)Yury Selivanov2017-12-191-5/+16
* bpo-27456: Simplify sock type checks (#4922)Yury Selivanov2017-12-193-29/+9
* bpo-32356: idempotent pause_/resume_reading; new is_reading method. (#4914)Yury Selivanov2017-12-184-16/+24
* bpo-32351: Use fastpath in asyncio.sleep if delay<0 (#4908)Andrew Svetlov2017-12-171-1/+1
* bpo-32250: Implement asyncio.current_task() and asyncio.all_tasks() (#4799)Andrew Svetlov2017-12-161-14/+87
* bpo-27456: Ensure TCP_NODELAY is set on linux (#4231)Yury Selivanov2017-12-163-24/+25
* bpo-32311: Implement asyncio.create_task() shortcut (#4848)Andrew Svetlov2017-12-157-89/+112
* bpo-32327: Convert asyncio functions documented as coroutines to coroutines. ...Yury Selivanov2017-12-153-76/+59
* bpo-32314: Implement asyncio.run() (#4852)Yury Selivanov2017-12-142-0/+50
* bpo-32296: Implement asyncio.get_event_loop and _get_running_loop in C. (#4827)Yury Selivanov2017-12-131-0/+27
* Fix couple typos (#4839)Andrew Svetlov2017-12-131-1/+1
* bpo-32258: Replace 'yield from' to 'await' in asyncio docs (#4779)Andrew Svetlov2017-12-113-10/+19
* Add asyncio.get_running_loop() function. (#4782)Yury Selivanov2017-12-111-1/+13