This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: typo in future_builtins documentation
Type: behavior Stage: resolved
Components: Documentation Versions: Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: fredreichbier, georg.brandl, r.david.murray
Priority: low Keywords:

Created on 2009-04-03 13:44 by fredreichbier, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg85304 - (view) Author: Friedrich Weber (fredreichbier) Date: 2009-04-03 13:44
Hi,

from http://docs.python.org/library/future_builtins.html:

.. function:: oct(object)

   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.

should rather be something like '... that is then converted to octal.'
msg85375 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2009-04-04 06:46
Thanks. Fixed in r71123.
History
Date User Action Args
2022-04-11 14:56:47adminsetgithub: 49928
2009-04-04 06:46:59r.david.murraysetstatus: open -> closed
priority: low
type: behavior

versions: - Python 3.0, Python 3.1
nosy: + r.david.murray

messages: + msg85375
resolution: fixed
stage: resolved
2009-04-03 13:44:15fredreichbiercreate