Message130849
Consider the Python file:
import _winreg
_winreg.foo
x = _winreg
Currently, 2to3 converts this to:
import winreg
winreg.foo
x = _winreg
The result will elicit a NameError on line 3 (if line 2 is valid). Is it possible to support this case? |
|
| Date |
User |
Action |
Args |
| 2011-03-14 16:31:32 | jaraco | set | recipients:
+ jaraco |
| 2011-03-14 16:31:32 | jaraco | set | messageid: <1300120292.26.0.949538054065.issue11502@psf.upfronthosting.co.za> |
| 2011-03-14 16:31:31 | jaraco | link | issue11502 messages |
| 2011-03-14 16:31:31 | jaraco | create | |
|