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
/
asyncio
/
unix_events.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
GH-94597: add deprecation warnings for subclassing `AbstractChildWatcher` (#9...
Kumar Aditya
2022-11-12
1
-0/+7
*
GH-98327: Reduce scope of catch_warnings() in _make_subprocess_transport (#98...
Kumar Aditya
2022-10-17
1
-24/+25
*
GH-94597: Deprecate child watcher getters and setters (#98215)
Kumar Aditya
2022-10-15
1
-24/+32
*
bpo-46364: Use sockets for stdin of asyncio only on AIX (#30596)
Christoph Hamsen
2022-10-13
1
-4/+3
*
GH-94597: deprecate `SafeChildWatcher`, `FastChildWatcher` and `MultiLoopChil...
Kumar Aditya
2022-10-08
1
-0/+15
*
GH-98023: Change default child watcher to PidfdChildWatcher on supported syst...
Kumar Aditya
2022-10-08
1
-1/+15
*
GH-94182: Run the PidfdChildWatcher on the running loop (#94184)
Thomas Grainger
2022-10-08
1
-32/+12
*
GH-85760: Fix race in calling process_exited callback too early (#97009)
Kumar Aditya
2022-09-22
1
-1/+2
*
Revert "gh-87079: Warn on unintended signal wakeup fd override in `asyncio` (...
Guido van Rossum
2022-09-17
1
-16/+3
*
gh-87079: Warn on unintended signal wakeup fd override in `asyncio` (#96807)
Michel Hidalgo
2022-09-17
1
-3/+16
*
bpo-44011: New asyncio ssl implementation (#31275)
Kumar Aditya
2022-02-15
1
-3/+14
*
Cleanup a couple of comments left on PR 28775 post-merge. (GH-29079)
Gregory P. Smith
2021-10-20
1
-1/+1
*
Fix typos in the Lib directory (GH-28775)
Christian Clauss
2021-10-06
1
-1/+1
*
bpo-43945: [Enum] reduce scope of new format() behavior (GH-26752)
Ethan Furman
2021-06-18
1
-2/+2
*
bpo-44011: Revert "New asyncio ssl implementation (GH-17975)" (GH-25848)
Pablo Galindo
2021-05-03
1
-14/+3
*
bpo-44011: New asyncio ssl implementation (#17975)
Andrew Svetlov
2021-05-02
1
-3/+14
*
bpo-43989: Add signal format specifier for unix_events (GH-25769)
Roberto Hueso
2021-05-01
1
-2/+2
*
bpo-38323: Add guard clauses in MultiLoopChildWatcher. (#22756)
Chris Jerdonek
2020-12-16
1
-14/+18
*
bpo-40364: asyncio uses os.waitstatus_to_exitcode() (GH-23798)
Victor Stinner
2020-12-16
1
-19/+15
*
bpo-42392: Remove loop parameter from asyncio.tasks and asyncio.subprocess (G...
Yurii Karabas
2020-11-28
1
-1/+1
*
s/wakup/wakeup (GH-20250)
Kunal Bhalla
2020-05-20
1
-1/+1
*
bpo-38356: Fix ThreadedChildWatcher thread leak in test_asyncio (GH-16552)
Kyle Stanley
2020-01-12
1
-1/+8
*
bpo-38982: Fix asyncio PidfdChildWatcher on waitpid() error (GH-17477)
Victor Stinner
2019-12-06
1
-2/+13
*
bpo-38951: Use threading.main_thread() check in asyncio (GH-17433)
Hill Ma
2019-12-05
1
-3/+2
*
Remove binding of captured exceptions when not used to reduce the chances of ...
Pablo Galindo
2019-11-19
1
-2/+2
*
bpo-38692: Add asyncio.PidfdChildWatcher to __all__ (GH-17161)
Kyle Stanley
2019-11-15
1
-1/+1
*
closes bpo-38692: Add a pidfd child process watcher to asyncio. (GH-17069)
Benjamin Peterson
2019-11-14
1
-0/+67
*
bpo-38019: correctly handle pause/resume reading of closed asyncio unix pipe ...
Andrew Svetlov
2019-09-29
1
-0/+11
*
Fix typos in docs, comments and test assert messages (#14872)
Min ho Kim
2019-07-21
1
-1/+1
*
bpo-35621: Support running subprocesses in asyncio when loop is executed in n...
Andrew Svetlov
2019-06-30
1
-29/+244
*
Revert "bpo-35621: Support running subprocesses in asyncio when loop is execu...
Andrew Svetlov
2019-06-04
1
-212/+28
*
Fix typos in docs and docstrings (GH-13745)
Xtreak
2019-06-02
1
-1/+1
*
bpo-35621: Support running subprocesses in asyncio when loop is executed in n...
Andrew Svetlov
2019-06-02
1
-28/+212
*
bpo-37035: Don't log OSError (GH-13548)
Andrew Svetlov
2019-05-27
1
-1/+1
*
bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528)
Yury Selivanov
2019-05-27
1
-5/+15
*
bpo-35721: Close socket pair if Popen in _UnixSubprocessTransport fails (GH-1...
Niklas Fiekas
2019-05-20
1
-6/+12
*
asyncio: __del__() keep reference to warnings.warn (GH-11491)
Victor Stinner
2019-01-10
1
-6/+4
*
bpo-34622: Extract asyncio exceptions into a separate module (GH-9141)
Andrew Svetlov
2018-09-11
1
-4/+5
*
bpo-33654: Support BufferedProtocol in set_protocol() and start_tls() (GH-7130)
Yury Selivanov
2018-05-28
1
-0/+4
*
bpo-33332: Add signal.valid_signals() (GH-6581)
Antoine Pitrou
2018-05-04
1
-2/+2
*
bpo-32622: Normalize ENOTCONN to ConnectionError on macOS (GH-5369)
Yury Selivanov
2018-01-27
1
-0/+11
*
bpo-32662: Implement Server.start_serving() and Server.serve_forever() (#5312)
Yury Selivanov
2018-01-25
1
-5/+7
*
bpo-32436: Implement PEP 567 (#5027)
Yury Selivanov
2018-01-23
1
-1/+1
*
bpo-32410: Make SendfileNotAvailableError exception public (#5243)
Andrew Svetlov
2018-01-19
1
-4/+4
*
bpo-32410: Implement loop.sock_sendfile() (#4976)
Andrew Svetlov
2018-01-16
1
-0/+93
*
bpo-26133: Fix typos (#5010)
Andrew Svetlov
2017-12-26
1
-2/+2
*
bpo-26133: Clear signals list on interpreter finalizing (#5002)
Andrew Svetlov
2017-12-24
1
-4/+7
*
bpo-26133: Dont unsubscribe signals in UNIX even loop on interpreter shutdown...
Andrew Svetlov
2017-12-21
1
-2/+8
*
bpo-29970: Make ssh_handshake_timeout None by default (#4939)
Andrew Svetlov
2017-12-20
1
-2/+9
*
bpo-29970: Add timeout for SSL handshake in asyncio
Neil Aspinall
2017-12-19
1
-7/+13
[next]