]> granicus.if.org Git - python/commitdiff
bpo-37913: Link to NotImplemented from new docs (GH-15860)
authorSteve Dower <steve.dower@python.org>
Tue, 10 Sep 2019 14:25:12 +0000 (15:25 +0100)
committerGitHub <noreply@github.com>
Tue, 10 Sep 2019 14:25:12 +0000 (15:25 +0100)
Doc/reference/datamodel.rst

index 6b9325da2f39afc44699bbfb26c9e9f6deb74cb7..c6c6e4075039cdb7a1ab5b06ce00b5438b451773 100644 (file)
@@ -2156,9 +2156,9 @@ through the container; for mappings, :meth:`__iter__` should be the same as
    Called to implement :func:`operator.length_hint`. Should return an estimated
    length for the object (which may be greater or less than the actual length).
    The length must be an integer ``>=`` 0. The return value may also be
-   *NotImplemented*, which is treated the same as if the ``__length_hint__``
-   method didn't exist at all. This method is purely an optimization and is
-   never required for correctness.
+   :const:`NotImplemented`, which is treated the same as if the
+   ``__length_hint__`` method didn't exist at all. This method is purely an
+   optimization and is never required for correctness.
 
    .. versionadded:: 3.4