diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-03-10 19:00:33 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-03-10 19:00:33 (GMT) |
commit | e8db162f62c369ce6dcbb92190d0aa2c03a15acb (patch) | |
tree | 31c26f7d0dfc915ddd687235164b7109cc11094e /Doc/library/operator.rst | |
parent | d840b8d6139ed0784d7fea1293a6b7d88a1d8a4f (diff) | |
download | cpython-e8db162f62c369ce6dcbb92190d0aa2c03a15acb.zip cpython-e8db162f62c369ce6dcbb92190d0aa2c03a15acb.tar.gz cpython-e8db162f62c369ce6dcbb92190d0aa2c03a15acb.tar.bz2 |
whatsnew: PEP 424 implementation.
Diffstat (limited to 'Doc/library/operator.rst')
-rw-r--r-- | Doc/library/operator.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst index fa3bcdd..3bcbaa4 100644 --- a/Doc/library/operator.rst +++ b/Doc/library/operator.rst @@ -240,9 +240,9 @@ their character equivalents. .. function:: length_hint(obj, default=0) - Return an estimated length for the object *o*. First trying to return its + Return an estimated length for the object *o*. First try to return its actual length, then an estimate using :meth:`object.__length_hint__`, and - finally returning the default value. + finally return the default value. .. versionadded:: 3.4 |