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.

Author rvallury
Recipients paul.moore, rvallury, steve.dower, tim.golden, zach.ware
Date 2016-08-11.08:17:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1470903442.61.0.511890043327.issue27735@psf.upfronthosting.co.za>
In-reply-to
Content
'module' object has no attribute 'SIGALRM'

SIGALRM is not identified in windows, python 2.7.
There is no explicit mention of this in documentation as well.

===
$ python
Python 2.7.11 (v2.7.11:6d1b6a68f775, Dec  5 2015, 20:32:19) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import signal
>>> def handler(signum, frame):
...     print 'Signal handler called with signal', signum
...     raise IOError("Couldn't open device!")
...
>>> signal.signal(signal.SIGALRM, handler)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'SIGALRM'
>>>
====
History
Date User Action Args
2016-08-11 08:17:22rvallurysetrecipients: + rvallury, paul.moore, tim.golden, zach.ware, steve.dower
2016-08-11 08:17:22rvallurysetmessageid: <1470903442.61.0.511890043327.issue27735@psf.upfronthosting.co.za>
2016-08-11 08:17:22rvallurylinkissue27735 messages
2016-08-11 08:17:22rvallurycreate