diff options
Diffstat (limited to 'Python')
-rw-r--r-- | Python/random.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/random.c b/Python/random.c index 9c9d505..ea09e84 100644 --- a/Python/random.c +++ b/Python/random.c @@ -142,7 +142,6 @@ py_getrandom(void *buffer, Py_ssize_t size, int raise) } if (errno == EINTR) { - /* Note: EINTR should not occur with flags=0 */ if (PyErr_CheckSignals()) { if (!raise) Py_FatalError("getrandom() interrupted by a signal"); |