[issue7861] 2to3: "import foo" -> "from . import foo"

2010-02-08 Thread Thomas Spura
Thomas Spura added the comment: The commit I'm talking about was 22 months ago (r61755), python 2.6.2 was released April 14, 2009. At least strange, that this is not jet in there, but if you think, it will in the next version... -- ___ Python trac

[issue7861] 2to3: "import foo" -> "from . import foo"

2010-02-05 Thread Benjamin Peterson
Benjamin Peterson added the comment: Well, you'll just have to wait for the next version of 2.6 to be released then. -- resolution: -> out of date status: open -> closed ___ Python tracker

[issue7861] 2to3: "import foo" -> "from . import foo"

2010-02-05 Thread Dave Malcolm
Changes by Dave Malcolm : -- nosy: +dmalcolm ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue7861] 2to3: "import foo" -> "from . import foo"

2010-02-05 Thread Thomas Spura
Thomas Spura added the comment: #2446 should be related to this one. -- nosy: +David Wolever ___ Python tracker ___ ___ Python-bugs-li

[issue7861] 2to3: "import foo" -> "from . import foo"

2010-02-05 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +benjamin.peterson, ezio.melotti, mark.dickinson priority: -> normal stage: -> needs patch type: compile error -> feature request ___ Python tracker _

[issue7861] 2to3: "import foo" -> "from . import foo"

2010-02-05 Thread Thomas Spura
New submission from Thomas Spura : My custom setup / testcase for testing the transition "import foo" -> "from . import foo": mkdir -p test/sub touch test/sub/__init__.py touch test/__init__.py cat >> test/__init__.py << EOF import sub EOF cat >> test.py << EOF import test EOF This won't wor