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: [PATCH] Documentation: fix typo, absolute_import not absolute_imports
Type: Stage: resolved
Components: Documentation Versions: Python 3.2
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ezio.melotti Nosy List: docs@python, ezio.melotti, intgr, python-dev
Priority: normal Keywords: patch

Created on 2011-04-21 10:09 by intgr, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
absolute_import_singular.patch intgr, 2011-04-21 10:09 Doc patch review
Messages (3)
msg134206 - (view) Author: (intgr) * Date: 2011-04-21 10:09
The "Porting Python 2 Code to Python 3" guide currently says:
   from __future__ import absolute_imports

However it should be singular:
   from __future__ import absolute_import
msg134207 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-04-21 11:50
New changeset 05a7d3048c49 by Ezio Melotti in branch '3.2':
#11897: Fix typo in porting howto. Patch by Marti Raudsepp.
http://hg.python.org/cpython/rev/05a7d3048c49

New changeset 968fba3f34b3 by Ezio Melotti in branch 'default':
#11897: Merge with 3.2.
http://hg.python.org/cpython/rev/968fba3f34b3
msg134208 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2011-04-21 11:54
Fixed, thanks for the patch!
History
Date User Action Args
2022-04-11 14:57:16adminsetgithub: 56106
2011-04-21 11:54:19ezio.melottisetstatus: open -> closed

assignee: docs@python -> ezio.melotti

nosy: + ezio.melotti
messages: + msg134208
resolution: fixed
stage: resolved
2011-04-21 11:50:33python-devsetnosy: + python-dev
messages: + msg134207
2011-04-21 10:09:14intgrcreate