diff options
author | Yilei Yang <yileiyang@google.com> | 2023-12-24 01:07:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-24 01:07:52 (GMT) |
commit | 050783cb37d6a09d8238fa640814df8a915f6a68 (patch) | |
tree | 7560dc77405b33a58cd7fccd6f0f74c49a083591 /Misc | |
parent | 0187a7e4ec9550a6e35dd06b26f22863520242ab (diff) | |
download | cpython-050783cb37d6a09d8238fa640814df8a915f6a68.zip cpython-050783cb37d6a09d8238fa640814df8a915f6a68.tar.gz cpython-050783cb37d6a09d8238fa640814df8a915f6a68.tar.bz2 |
gh-112559: Avoid unnecessary conversion attempts to enum_klass in signal.py (#113040)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-12-12-20-15-57.gh-issue-112559.IgXkje.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-12-12-20-15-57.gh-issue-112559.IgXkje.rst b/Misc/NEWS.d/next/Library/2023-12-12-20-15-57.gh-issue-112559.IgXkje.rst new file mode 100644 index 0000000..c08cb7c --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-12-12-20-15-57.gh-issue-112559.IgXkje.rst @@ -0,0 +1,3 @@ +:func:`signal.signal` and :func:`signal.getsignal` no longer call ``repr`` on +callable handlers. :func:`asyncio.run` and :meth:`asyncio.Runner.run` no longer +call ``repr`` on the task results. Patch by Yilei Yang. |