diff options
author | Raymond Hettinger <python@rcn.com> | 2010-09-07 05:35:10 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-09-07 05:35:10 (GMT) |
commit | 3149f9c6141ab638ac92c30f7bc3807aa1e8e885 (patch) | |
tree | 04a3b820b4ab002e6b4ae62c1e5e77d32f10ddc8 | |
parent | b21dac1e38285f6f36905a294c2a3e8bceac2d89 (diff) | |
download | cpython-3149f9c6141ab638ac92c30f7bc3807aa1e8e885.zip cpython-3149f9c6141ab638ac92c30f7bc3807aa1e8e885.tar.gz cpython-3149f9c6141ab638ac92c30f7bc3807aa1e8e885.tar.bz2 |
typo
-rw-r--r-- | Doc/library/random.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/random.rst b/Doc/library/random.rst index 1e1668f..55edcf8 100644 --- a/Doc/library/random.rst +++ b/Doc/library/random.rst @@ -55,7 +55,7 @@ Bookkeeping functions: If *x* is an int, it is used directly. With version 2 (the default), a :class:`str`, :class:`bytes`, or :class:`bytearray` - object gets converted to a :class:`int` and all of its bits are used. With version 1, + object gets converted to an :class:`int` and all of its bits are used. With version 1, the :func:`hash` of *x* is used instead. .. versionchanged:: 3.2 |