Advertisement
Guest User

Untitled

a guest
May 31st, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. /foo
  2. __init__.py
  3. bar.py
  4.  
  5. import bar
  6. eval("import bar")
  7.  
  8. >>> import foo
  9. Traceback (most recent call last):
  10. File "<stdin>", line 1, in <module>
  11. File "foo/__init__.py", line 2, in <module>
  12. eval('import bar')
  13. File "<string>", line 1
  14. import bar
  15. ^
  16. SyntaxError: invalid syntax
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement