[issue5854] logging module's __all__ attribute not in sync with documentation

2009-04-27 Thread Vinay Sajip
Vinay Sajip added the comment: Fix checked in to trunk, release26-maint and py3k. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue5854] logging module's __all__ attribute not in sync with documentation

2009-04-27 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- assignee: -> vsajip nosy: +vsajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue5854] logging module's __all__ attribute not in sync with documentation

2009-04-27 Thread R. David Murray
R. David Murray added the comment: The addition of __all__ was made by raymond.hettinger in r60851. 'from xxx import *' is not a recommended style, but irregardless of that __all__ certainly should list all of the public APIs. -- keywords: +easy nosy: +r.david.murray, rhettinger priorit

[issue5854] logging module's __all__ attribute not in sync with documentation

2009-04-27 Thread Floris Bruynooghe
New submission from Floris Bruynooghe : The logging module in Python 2.6 has started to use the __all__ method. However it does not list all the symbols that are described in the documentation. Most notably the getLogger function is not in the __all__ list, but there are others like addLevelNam