aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-07-12 20:35:45 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-07-12 20:35:45 -0500
commit6c59fc6839464daa0c8243bd3873ced015dd1460 (patch)
tree67bccfe1ea97623438c4b3118910c5305c2db444
parent9acea68c91720143ee55818d37e5a0ec585fc816 (diff)
parent6e1fa9b004833a776caa047c81d6e19750049397 (diff)
downloadcryptography-6c59fc6839464daa0c8243bd3873ced015dd1460.tar.gz
cryptography-6c59fc6839464daa0c8243bd3873ced015dd1460.tar.bz2
cryptography-6c59fc6839464daa0c8243bd3873ced015dd1460.zip
Merge pull request #1261 from alex/we-are-the-six-percent
Remove the 6% chance this test will fail -- refs #1259
-rw-r--r--docs/random-numbers.rst3
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/random-numbers.rst b/docs/random-numbers.rst
index 410f3757..68a72cf7 100644
--- a/docs/random-numbers.rst
+++ b/docs/random-numbers.rst
@@ -16,7 +16,6 @@ can obtain them with:
.. doctest::
>>> import os
- >>> os.urandom(16)
- '...'
+ >>> iv = os.urandom(16)
.. _`always use your operating system's provided random number generator`: http://sockpuppet.org/blog/2014/02/25/safely-generate-random-numbers/