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: sys.interrupt_main()
Type: Stage:
Components: Interpreter Core Versions: Python 2.3
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: kbk Nosy List: kbk, nnorwitz
Priority: normal Keywords: patch

Created on 2003-06-13 04:56 by kbk, last changed 2022-04-10 16:09 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
sysmodule.c.diff kbk, 2003-06-13 05:05 sysmodule.c.diff
Messages (4)
msg43946 - (view) Author: Kurt B. Kaiser (kbk) * (Python committer) Date: 2003-06-13 04:56
Patch implements this function.

Needed for interrupting IDLE subprocess
when running on win32.

Better here than in a separate module.
msg43947 - (view) Author: Kurt B. Kaiser (kbk) * (Python committer) Date: 2003-06-13 05:05
Logged In: YES 
user_id=149084

Urm, check the box!
msg43948 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2003-06-13 12:03
Logged In: YES 
user_id=33168

One thing that should be changed is METH_VARARGS should be
METH_NOARGS (this problem was in the original code).  The
sys doc should be updated (Doc/lib/libsys.tex) to mention
interupt*().  Probably a NEWS entry should be made too. 
Otherwise the patch is fine, but I didn't see a resolution
on changing the name to interupt vs interupt_main.
msg43949 - (view) Author: Kurt B. Kaiser (kbk) * (Python committer) Date: 2003-07-07 00:47
Logged In: YES 
user_id=149084

This has found a home at
thread.interrupt_main()

Brett Cannon updated NEWS

Lib documentation in Patch 766889
History
Date User Action Args
2022-04-10 16:09:10adminsetgithub: 38638
2003-06-13 04:56:55kbkcreate