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 dellair.jie
Recipients dellair.jie, loewis, r.david.murray, rpetrov, vstinner
Date 2014-04-29.13:37:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1398778644.19.0.332248201219.issue21085@psf.upfronthosting.co.za>
In-reply-to
Content
Finally got it compiled on Cygwin! :)

Victor,

I am still having issue with the "make test" on Cygwin, hence can only do some manual testing:

Output:
>>> info = signal.sigwaitinfo({signal.SIGINT})
^C
>>>
>>> info = signal.struct_siginfo((2, 128, 0, 0, 0, 3))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: signal.struct_siginfo() takes an at least 7-sequence (6-sequence given)
>>> info = signal.struct_siginfo((2, 128, 0, 0, 0, 3, 0))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: signal.struct_siginfo() takes an at most 6-sequence (7-sequence given)
>>> help(signal.struct_siginfo)
 |  ----------------------------------------------------------------------
 |  Data descriptors defined here:
 |
 |  si_code
 |      signal code
 |
 |  si_errno
 |      errno associated with this signal
 |
 |  si_pid
 |      sending process ID
 |
 |  si_signo
 |      signal number
 |
 |  si_status
 |      exit value or signal
 |
 |  si_uid
 |      real user ID of sending process
 |
 |  ----------------------------------------------------------------------

Feel free to let me know if more testing is required.

Br,
Dellair
History
Date User Action Args
2014-04-29 13:37:24dellair.jiesetrecipients: + dellair.jie, loewis, vstinner, rpetrov, r.david.murray
2014-04-29 13:37:24dellair.jiesetmessageid: <1398778644.19.0.332248201219.issue21085@psf.upfronthosting.co.za>
2014-04-29 13:37:24dellair.jielinkissue21085 messages
2014-04-29 13:37:23dellair.jiecreate