i tried to import all modules of namespaces but no modules imported. how can I import all ?
example
example
1 2 3 4 5 6 7 8 |
# myfolder # | mymodule1.py # | mymodule2.py # | mymodule3.py # | subfolder import myfolder # imports namespace from myfolder import * # imports nothing. why ? |