Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. $ ipython
  2.  
  3. In [1]: import inspect
  4. ...:
  5. ...: for s in inspect.stack():
  6. ...: m = inspect.getmodule(s[0])
  7. ...: if m: print(m.__file__)
  8. ...:
  9. /Users/nishimura/.pyenv/versions/anaconda3-2019.03/lib/python3.7/site-packages/IPython/core/interactiveshell.py
  10. /Users/nishimura/.pyenv/versions/anaconda3-2019.03/lib/python3.7/site-packages/IPython/core/interactiveshell.py
  11. /Users/nishimura/.pyenv/versions/anaconda3-2019.03/lib/python3.7/site-packages/IPython/core/interactiveshell.py
  12. /Users/nishimura/.pyenv/versions/anaconda3-2019.03/lib/python3.7/site-packages/IPython/core/async_helpers.py
  13. /Users/nishimura/.pyenv/versions/anaconda3-2019.03/lib/python3.7/site-packages/IPython/core/interactiveshell.py
  14. /Users/nishimura/.pyenv/versions/anaconda3-2019.03/lib/python3.7/site-packages/IPython/core/interactiveshell.py
  15. /Users/nishimura/.pyenv/versions/anaconda3-2019.03/lib/python3.7/site-packages/IPython/terminal/interactiveshell.py
  16. /Users/nishimura/.pyenv/versions/anaconda3-2019.03/lib/python3.7/site-packages/IPython/terminal/interactiveshell.py
  17. /Users/nishimura/.pyenv/versions/anaconda3-2019.03/lib/python3.7/site-packages/IPython/terminal/ipapp.py
  18. /Users/nishimura/.pyenv/versions/anaconda3-2019.03/lib/python3.7/site-packages/traitlets/config/application.py
  19. /Users/nishimura/.pyenv/versions/anaconda3-2019.03/lib/python3.7/site-packages/IPython/__init__.py
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement