From e256accd46af74d2695117e62361fe7ae9dfdfe3 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Tue, 6 Sep 2016 16:35:34 -0700 Subject: [PATCH] Issue #23226: Add linspace() recipe to the docs --- Doc/library/stdtypes.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 0c7249d96ef..214422d10b2 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -1363,6 +1363,11 @@ objects that compare equal might have different :attr:`~range.start`, The :attr:`~range.start`, :attr:`~range.stop` and :attr:`~range.step` attributes. +.. seealso:: + + * The `linspace recipe `_ + shows how to implement a lazy version of range that suitable for floating + point applications. .. index:: single: string; text sequence type