[Python-bugs-list] [ python-Bugs-495609 ] python doesn't define SIG*

noreply@sourceforge.net noreply@sourceforge.net
Thu, 20 Dec 2001 16:34:26 -0800


Bugs item #495609, was opened at 2001-12-20 13:02
You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=105470&aid=495609&group_id=5470

>Category: Documentation
>Group: None
>Status: Open
Resolution: Invalid
Priority: 5
Submitted By: Matthias Klose (doko)
>Assigned to: Fred L. Drake, Jr. (fdrake)
Summary: python doesn't define SIG*

Initial Comment:
[please CC 109292@bugs.debian.org on replies. the 
original report can be found at 
http://bugs.debian.org/109292]

There is a function, os.kill( <pid>, <sig> ).  
However, there are no symbolic
name definitions for <sig>.  The values for signals 
can vary by arch and by
operating system.  Please add some definitions.


----------------------------------------------------------------------

>Comment By: Tim Peters (tim_one)
Date: 2001-12-20 16:34

Message:
Logged In: YES 
user_id=31435

Na, reopened this, changed the Category to Docs, and 
reassigned to Fred.

----------------------------------------------------------------------

Comment By: Matthias Klose (doko)
Date: 2001-12-20 15:57

Message:
Logged In: YES 
user_id=60903

Thanks. IMO a cross reference in the library docs for 
os.kill would be apropriate.

should another report be opened for this request?


----------------------------------------------------------------------

Comment By: Tim Peters (tim_one)
Date: 2001-12-20 15:40

Message:
Logged In: YES 
user_id=31435

Import signal to get the SIG* names appropriate for your 
platform; e.g., try

import signal
dir(signal)

at an interactive prompt to see what's there.

----------------------------------------------------------------------

You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=105470&aid=495609&group_id=5470