diff options
author | R. David Murray <rdmurray@bitdance.com> | 2009-04-04 06:39:56 +0000 |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2009-04-04 06:39:56 +0000 |
commit | 195374e836b3e70128890ced7e8f3ef4911e4712 (patch) | |
tree | 8cd1f4717f93a561ee137a9a98e8d95c7c6da145 | |
parent | 64906bbeba84d44c2704fce5f872171e596f60d1 (diff) | |
download | cpython-git-195374e836b3e70128890ced7e8f3ef4911e4712.tar.gz |
Fix error in description of 'oct' (issue 5678).
-rw-r--r-- | Doc/library/future_builtins.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/future_builtins.rst b/Doc/library/future_builtins.rst index 6a1fdab5c5..7ee7110f63 100644 --- a/Doc/library/future_builtins.rst +++ b/Doc/library/future_builtins.rst @@ -54,7 +54,7 @@ Available builtins are: Works like the builtin :func:`oct`, but instead of :meth:`__oct__` it will use the :meth:`__index__` method on its argument to get an integer that is - then converted to hexadecimal. + then converted to octal. .. function:: zip(*iterables) |