diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/random-numbers.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/random-numbers.rst b/docs/random-numbers.rst index c8f95fd8..cd73a7b7 100644 --- a/docs/random-numbers.rst +++ b/docs/random-numbers.rst @@ -13,7 +13,7 @@ provided random number generator, which is available as ``os.urandom()``. For example, if you need 16 bytes of random data for an initialization vector, you can obtain them with: -.. doctest:: +.. code-block:: pycon >>> import os >>> os.urandom(16) |