Berker Peksag added the comment:

I think this is related to PEP 420.

    $ tree pkg/
    pkg/
    ├── foobar.py

    $ python3.2 -c "from pkg import foobar"
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ImportError: No module named pkg

But, with Python 3.3 and newer:

    $ python3.3 -c "from pkg import foobar"
    hello

See 
https://docs.python.org/3/whatsnew/3.3.html#pep-420-implicit-namespace-packages 
for the whatsnew entry.

----------
nosy: +berker.peksag, eric.smith
resolution:  -> not a bug
stage:  -> resolved
status: open -> pending

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue21784>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to