[Python-Dev] Making submodules available when importing top one

2013-10-16 Thread Facundo Batista
(all this using Python 3.4.0a3+) In the stdlib, I see that (as an example): import os os.path.abspath function abspath at 0xb7123734 os.path module 'posixpath' from '/.../python/trunk/Lib/posixpath.py' However, for other (newer) modules: import urllib urllib.requests.urlopen Traceback

Re: [Python-Dev] Making submodules available when importing top one

2013-10-16 Thread Oleg Broytman
On Wed, Oct 16, 2013 at 01:26:11PM -0300, Facundo Batista facundobati...@gmail.com wrote: (all this using Python 3.4.0a3+) In the stdlib, I see that (as an example): import os os.path.abspath function abspath at 0xb7123734 os.path module 'posixpath' from

Re: [Python-Dev] Making submodules available when importing top one

2013-10-16 Thread Guido van Rossum
On Wed, Oct 16, 2013 at 9:26 AM, Facundo Batista facundobati...@gmail.comwrote: (all this using Python 3.4.0a3+) In the stdlib, I see that (as an example): import os os.path.abspath function abspath at 0xb7123734 os.path module 'posixpath' from '/.../python/trunk/Lib/posixpath.py'

Re: [Python-Dev] Making submodules available when importing top one

2013-10-16 Thread Eric Snow
On Wed, Oct 16, 2013 at 10:26 AM, Facundo Batista facundobati...@gmail.com wrote: (all this using Python 3.4.0a3+) In the stdlib, I see that (as an example): import os os.path.abspath function abspath at 0xb7123734 os.path module 'posixpath' from '/.../python/trunk/Lib/posixpath.py'