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 eric.frederich
Recipients eric.frederich, ncoghlan, paul.moore, python-dev, steve.dower, tim.golden, zach.ware
Date 2017-03-07.19:16:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1488914171.06.0.0189350323511.issue29319@psf.upfronthosting.co.za>
In-reply-to
Content
I'm wondering if I'm experiencing this same issue.
In a simple directory with a foo.py and a bar.py where foo tries to import from bar I cannot get it to work with the embeddable 3.6.0 zip, but the standard 3.6.0 that gets "installed" works fine.  Also 3.5.3 works fine

C:\Users\eric\Desktop\wtf>more foo.py
from bar import bar

print(bar('hi'))

C:\Users\eric\Desktop\wtf>more bar.py
def bar(s):
        return s.upper()

C:\Users\eric\Desktop\wtf>C:\Users\eric\Downloads\python-3.5.3-embed-amd64\python.exe foo.py
HI

C:\Users\eric\Desktop\wtf>C:\Users\eric\Downloads\python-3.6.0-embed-amd64\python.exe foo.py
Traceback (most recent call last):
  File "foo.py", line 1, in <module>
    from bar import bar
ModuleNotFoundError: No module named 'bar'
History
Date User Action Args
2017-03-07 19:16:11eric.frederichsetrecipients: + eric.frederich, paul.moore, ncoghlan, tim.golden, python-dev, zach.ware, steve.dower
2017-03-07 19:16:11eric.frederichsetmessageid: <1488914171.06.0.0189350323511.issue29319@psf.upfronthosting.co.za>
2017-03-07 19:16:10eric.frederichlinkissue29319 messages
2017-03-07 19:16:10eric.frederichcreate