diff options
author | Raymond Hettinger <python@rcn.com> | 2010-12-04 23:42:12 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-12-04 23:42:12 (GMT) |
commit | 6e35394ed5f01bd7b06a3366cadaeb8f765851ef (patch) | |
tree | 1bc948ae4bd739d65f2ece8d83015222eae6a43d /Doc/library | |
parent | 6f04adc54b224eae6be563413ddb995e25c3eb22 (diff) | |
download | cpython-6e35394ed5f01bd7b06a3366cadaeb8f765851ef.zip cpython-6e35394ed5f01bd7b06a3366cadaeb8f765851ef.tar.gz cpython-6e35394ed5f01bd7b06a3366cadaeb8f765851ef.tar.bz2 |
Mention itertools.accumulate().
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/random.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/library/random.rst b/Doc/library/random.rst index ba369e1..33ab5e5 100644 --- a/Doc/library/random.rst +++ b/Doc/library/random.rst @@ -274,6 +274,7 @@ change across Python versions, but two aspects are guaranteed not to change: * The generator's :meth:`random` method will continue to produce the same sequence when the compatible seeder is given the same seed. +.. _random-examples: Examples and Recipes ==================== |