This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Modernize siginterrupt calls
Type: Stage: resolved
Components: Versions: Python 3.10
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: pablogsal
Priority: normal Keywords: patch

Created on 2020-08-31 13:51 by pablogsal, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 22028 merged pablogsal, 2020-08-31 13:53
Messages (2)
msg376152 - (view) Author: Pablo Galindo Salgado (pablogsal) * (Python committer) Date: 2020-08-31 13:51
siginterrupt is deprecated:

./Modules/signalmodule.c:667:5: warning: ‘siginterrupt’ is deprecated: Use sigaction with SA_RESTART instead [-Wdeprecated-declarations]
  667 |     if (siginterrupt(signalnum, flag)<0) {
msg376241 - (view) Author: Pablo Galindo Salgado (pablogsal) * (Python committer) Date: 2020-09-02 14:29
New changeset f9c5e3f5f61cd380f8a17c814766fc3730b7fbdf by Pablo Galindo in branch 'master':
bpo-41675: Modernize siginterrupt calls (GH-22028)
https://github.com/python/cpython/commit/f9c5e3f5f61cd380f8a17c814766fc3730b7fbdf
History
Date User Action Args
2022-04-11 14:59:35adminsetgithub: 85841
2020-09-02 14:29:25pablogsalsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2020-09-02 14:29:20pablogsalsetmessages: + msg376241
2020-08-31 13:53:50pablogsalsetkeywords: + patch
stage: patch review
pull_requests: + pull_request21128
2020-08-31 13:51:29pablogsalsetversions: - Python 3.8, Python 3.9
2020-08-31 13:51:22pablogsalcreate