summaryrefslogtreecommitdiff
path: root/Python/random.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-12-01 18:28:43 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2014-12-01 18:28:43 +0200
commitc8def83e79745dbf89e286ff791454c7e63c3c2b (patch)
treed634094ccd905482b374f078f8a65b2fae0fc194 /Python/random.c
parentcff8685224e9c1d0024aecfb87a2c120ca3a5542 (diff)
downloadcpython-c8def83e79745dbf89e286ff791454c7e63c3c2b.tar.gz
Removed duplicated words in in comments and docs.
Diffstat (limited to 'Python/random.c')
-rw-r--r--Python/random.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/random.c b/Python/random.c
index 2941ba16af..08030067bf 100644
--- a/Python/random.c
+++ b/Python/random.c
@@ -227,7 +227,7 @@ lcg_urandom(unsigned int x0, unsigned char *buffer, size_t size)
}
/* Fill buffer with size pseudo-random bytes from the operating system random
- number generator (RNG). It is suitable for for most cryptographic purposes
+ number generator (RNG). It is suitable for most cryptographic purposes
except long living private keys for asymmetric encryption.
Return 0 on success, raise an exception and return -1 on error. */