[issue22803] textwrap.indent version added not documented

2014-11-05 Thread Raymond Hettinger
Raymond Hettinger added the comment: Thanks for the bug report. -- nosy: +rhettinger resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue22803] textwrap.indent version added not documented

2014-11-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 501edbbb74ff by Raymond Hettinger in branch '3.4': Issue 22803: Add missing versionadded directive. https://hg.python.org/cpython/rev/501edbbb74ff -- nosy: +python-dev ___ Python tracker

[issue22803] textwrap.indent version added not documented

2014-11-05 Thread Christopher Foo
New submission from Christopher Foo: 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/t