Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.61 KB | None | 0 0
  1. In [42]: __import__('ubuntu_sso.gui', globals(), locals(), [], -1)
  2. Out[43]: <module 'ubuntu_sso' from '/usr/lib/pymodules/python2.6/ubuntu_sso/__init__.py'>
  3.  
  4. In [44]: __import__('ubuntu_sso.gui'
  5.    ....: )
  6. Out[44]: <module 'ubuntu_sso' from '/usr/lib/pymodules/python2.6/ubuntu_sso/__init__.py'>
  7.  
  8. In [45]: __import__('ubuntu_sso.gui', globals(), locals(), ['goo'], -1)
  9. Out[45]: <module 'ubuntu_sso.gui' from '/usr/lib/pymodules/python2.6/ubuntu_sso/gui.py'>
  10.  
  11. In [46]: __import__('ubuntu_sso.gui', globals(), locals(), [''], -1)
  12. Out[46]: <module 'ubuntu_sso.gui' from '/usr/lib/pymodules/python2.6/ubuntu_sso/gui.py'>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement