[Python-checkins] cpython (2.7): Fix typo in comment

martin.panter python-checkins at python.org
Fri Jun 10 04:49:20 EDT 2016


https://hg.python.org/cpython/rev/e13a445718ec
changeset:   101843:e13a445718ec
branch:      2.7
user:        Martin Panter <vadmium+py at gmail.com>
date:        Fri Jun 10 08:07:11 2016 +0000
summary:
  Fix typo in comment

files:
  Python/random.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Python/random.c b/Python/random.c
--- a/Python/random.c
+++ b/Python/random.c
@@ -93,7 +93,7 @@
     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

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list