Issue 22803: textwrap.indent version added not documented (original) (raw)

Issue22803

Created on 2014-11-06 04:35 by chfoo, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg230725 - (view) Author: Christopher Foo (chfoo) Date: 2014-11-06 04:35
I was running my program under CI and it failed under 3.2: text = textwrap.indent(text, '* ', predicate=lambda line: True) AttributeError: 'module' object has no attribute 'indent' textwrap.indent appears to be a new feature in 3.3 but Doc/library/textwrap.rst is not documented with ".. versionadded:: 3.3"
msg230726 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-11-06 05:28
New changeset 501edbbb74ff by Raymond Hettinger in branch '3.4': Issue 22803: Add missing versionadded directive. https://hg.python.org/cpython/rev/501edbbb74ff
msg230727 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2014-11-06 05:28
Thanks for the bug report.
History
Date User Action Args
2022-04-11 14:58:09 admin set github: 66992
2014-11-06 05:28:58 rhettinger set status: open -> closednosy: + rhettingermessages: + resolution: fixed
2014-11-06 05:28:33 python-dev set nosy: + python-devmessages: +
2014-11-06 04:35:13 chfoo create