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: textwrap: __all__ atribute missing 'dedent' function
Type: enhancement Stage:
Components: Extension Modules Versions: Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, wolfdown
Priority: normal Keywords:

Created on 2008-12-05 09:02 by wolfdown, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg76986 - (view) Author: Casey McGinty (wolfdown) Date: 2008-12-05 09:02
From textwrap.py: 46863 2006-06-11 19:42:51Z tim.peters

The __all__ define in this module is missing the helper function 'dedent'. 

This causes pydoc to not the list the function correctly.

Secondly, it also prevents 'dedent' from being imported when using 'from
textwrap import *'  (Yes, yes, I know this should never be done. Hence
why it is probably never noticed by anyone.)
msg77004 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-12-05 11:35
Fixed in r67575, will be ported to all branches.
History
Date User Action Args
2022-04-11 14:56:42adminsetgithub: 48794
2008-12-05 11:35:12georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg77004
nosy: + georg.brandl
2008-12-05 09:03:21wolfdownsettitle: textwrap: __all__ atribute missing 'dedent' functino -> textwrap: __all__ atribute missing 'dedent' function
2008-12-05 09:02:57wolfdowncreate