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.

Author MLModel
Recipients MLModel
Date 2009-05-27.18:53:11
SpamBayes Score 0.010216353
Marked as misclassified No
Message-id <1243450394.39.0.563669529088.issue6125@psf.upfronthosting.co.za>
In-reply-to
Content
2to3 -f import l.py
--- l.py (original)
File p.py (the four modules exist in the same directory as p.py):

from mod_a import a
from modb import b
from mod_c import *
from modd import *


% 2to3 -f import p.py
+++ p.py (refactored)
@@ -1,5 +1,5 @@
-from mod_a import a
-from modb import b
-from mod_c import *
-from modd import *
+from .mod_a import a
+from .modb import b
+from .mod_c import *
+from .modd import *
History
Date User Action Args
2009-05-27 18:53:14MLModelsetrecipients: + MLModel
2009-05-27 18:53:14MLModelsetmessageid: <1243450394.39.0.563669529088.issue6125@psf.upfronthosting.co.za>
2009-05-27 18:53:12MLModellinkissue6125 messages
2009-05-27 18:53:11MLModelcreate