Message321780
| Author | vstinner |
|---|---|
| Recipients | njs, pitrou, vstinner |
| Date | 2018-07-17.00:09:37 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1531786178.44.0.56676864532.issue34130@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
The test failed at:
# Fill the send buffer
try:
while True:
write.send(b"x")
except BlockingIOError:
pass
# By default, we get a warning when a signal arrives
signal.set_wakeup_fd(write.fileno())
with captured_stderr() as err:
_testcapi.raise_signal(signum)
err = err.getvalue()
if ('Exception ignored when trying to {action} to the signal wakeup fd'
not in err):
raise AssertionError(err) # <~~~~~~ HERE |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2018-07-17 00:09:38 | vstinner | set | recipients: + vstinner, pitrou, njs |
| 2018-07-17 00:09:38 | vstinner | set | messageid: <1531786178.44.0.56676864532.issue34130@psf.upfronthosting.co.za> |
| 2018-07-17 00:09:38 | vstinner | link | issue34130 messages |
| 2018-07-17 00:09:37 | vstinner | create | |