diff options
author | Jeroen Demeyer <J.Demeyer@UGent.be> | 2019-05-10 01:28:57 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-05-10 01:28:56 (GMT) |
commit | d237b3f0f61990c972b84c45eb4fe137db51a6a7 (patch) | |
tree | 68f1220b79ca14dcfa10b648b9f2b0ba446bce4e /Misc | |
parent | d267ac20c309e37d85a986b4417aa8ab4d05dabc (diff) | |
download | cpython-d237b3f0f61990c972b84c45eb4fe137db51a6a7.zip cpython-d237b3f0f61990c972b84c45eb4fe137db51a6a7.tar.gz cpython-d237b3f0f61990c972b84c45eb4fe137db51a6a7.tar.bz2 |
bpo-36601: clarify signal handler comment and remove unnecessary pid check. (GH-12784)
https://bugs.python.org/issue36601
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2019-04-13-16-14-16.bpo-36601.mIgS7t.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-04-13-16-14-16.bpo-36601.mIgS7t.rst b/Misc/NEWS.d/next/Core and Builtins/2019-04-13-16-14-16.bpo-36601.mIgS7t.rst new file mode 100644 index 0000000..0159aae --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2019-04-13-16-14-16.bpo-36601.mIgS7t.rst @@ -0,0 +1,2 @@ +A long-since-meaningless check for ``getpid() == main_pid`` was removed +from Python's internal C signal handler. |