dellair jie added the comment:

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

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue21085>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to