diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-06-10 08:07:11 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-06-10 08:07:11 (GMT) |
commit | 7740c406bc250568451c8b9e43fb21d48ffa311f (patch) | |
tree | 9d1c80ebbb2d650b4407530c231a9925c9c9be9a /Python/random.c | |
parent | c9813d83f78c1eed12aebc286d6df0e9a5d90d04 (diff) | |
download | cpython-7740c406bc250568451c8b9e43fb21d48ffa311f.zip cpython-7740c406bc250568451c8b9e43fb21d48ffa311f.tar.gz cpython-7740c406bc250568451c8b9e43fb21d48ffa311f.tar.bz2 |
Fix typo in comment
Diffstat (limited to 'Python/random.c')
-rw-r--r-- | Python/random.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/random.c b/Python/random.c index 50f4ac9..b4bc1f3 100644 --- a/Python/random.c +++ b/Python/random.c @@ -93,7 +93,7 @@ win32_urandom(unsigned char *buffer, Py_ssize_t size, int raise) return 0; } -/* Issue #25003: Don' use getentropy() on Solaris (available since +/* Issue #25003: Don't use getentropy() on Solaris (available since * Solaris 11.3), it is blocking whereas os.urandom() should not block. */ #elif defined(HAVE_GETENTROPY) && !defined(sun) #define PY_GETENTROPY 1 |