summaryrefslogtreecommitdiffstats
path: root/Python/random.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-12-01 16:16:30 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-12-01 16:16:30 (GMT)
commit0f8f784a77a51dc3ceac8c812177bff33bced830 (patch)
tree55227dc28b9e1fc5c85650a5604d28c52e32e70f /Python/random.c
parentd862db0d091a3bb95c185d7365384b8bd22f59be (diff)
downloadcpython-0f8f784a77a51dc3ceac8c812177bff33bced830.zip
cpython-0f8f784a77a51dc3ceac8c812177bff33bced830.tar.gz
cpython-0f8f784a77a51dc3ceac8c812177bff33bced830.tar.bz2
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 0776bfc..1e5776d 100644
--- a/Python/random.c
+++ b/Python/random.c
@@ -274,7 +274,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. */