Advertisement
dfarrell07

__init__.robot test

Apr 30th, 2015
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. [~/python_demo]$ tree
  2. .
  3. ├── pkg
  4. │   ├── code.py
  5. │   └── __init__.py
  6. └── strange_pkg
  7. ├── code.py
  8. └── __init__.robot
  9. [~/python_demo]$ ipython
  10. In [1]: import pkg.code
  11.  
  12. In [2]: import strage_pkg.code
  13. ---------------------------------------------------------------------------
  14. ImportError Traceback (most recent call last)
  15. <ipython-input-2-376a97c66535> in <module>()
  16. ----> 1 import strange_pkg.code
  17.  
  18. ImportError: No module named strange_pkg.code
  19.  
  20. In [3]:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement