New submission from Simon Weber:
When dealing with implicit relative imports of the form "import
as...", the 2to3 import fixer will rewrite them as "from .
import as...".
This is invalid syntax. Here's an example:
$ tree package/
package/
├── __init__.py
├──
Simon Weber added the comment:
That sounds much clearer. Thanks!
--
___
Python tracker
<http://bugs.python.org/issue19789>
___
___
Python-bugs-list mailin
New submission from Simon Weber:
In http://bugs.python.org/issue14864, this line was added to the
logging.disable docstring:
To undo the effect of a call to logging.disable(lvl), call
logging.disable(logging.NOTSET).
To prevent misunderstanding, I propose that this line be changed to