Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork248
Closed
Milestone
Description
In Python 3.3, python namespace packages were introduced [0] - namespace package is a virtual package whose contents can be distributed in various places along Python's PATH. TL;DR
Currently importing a namespace package in bpython fails with:
>>> import my_namespaceTraceback (most recent call last): File "<input>", line 1, in <module> import my_namespaceModuleNotFoundError: No module named 'my_namespace'
whereas the identical python distribution, just running native shell, produces:
>>> import my_namespace>>> my_namespace<module 'my_namespace' (namespace)>
Metadata
Metadata
Assignees
Labels
No labels