New submission from Antonio Cota:
That's the situation:
a/
__init__.py
first.py
second.py
#init.py
__all__ = ['second', 'first']
print('i\'m starting the directory')
#first.py
print('hi, i\'m the first')
from . import *
#second
Changes by Antonio Cota :
--
versions: +Python 3.4
___
Python tracker
<http://bugs.python.org/issue23447>
___
___
Python-bugs-list mailing list
Unsubscribe:
Antonio Cota added the comment:
I tried the following on python 3.5.0a1:
#init.py
__all__ = ['second', 'first']
print('i\'m starting the directory')
#first.py
print('hi, i\'m the first')
from . import second
#second.py
print('hi, i\
Changes by Antonio Cota :
--
versions: -Python 3.4
___
Python tracker
<http://bugs.python.org/issue23447>
___
___
Python-bugs-list mailing list
Unsubscribe: