Advertisement
Guest User

Untitled

a guest
Feb 24th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.44 KB | None | 0 0
  1. $ python
  2. Python 3.6.4 (default, Jan  5 2018, 02:35:40)
  3. [GCC 7.2.1 20171224] on linux
  4. Type "help", "copyright", "credits" or "license" for more information.
  5. >>> import importlib
  6. >>> importlib.util.find_spec
  7. Traceback (most recent call last):
  8.   File "<stdin>", line 1, in <module>
  9. AttributeError: module 'importlib' has no attribute 'util'
  10. >>> help("importlib")
  11.  
  12. >>> importlib.util.find_spec
  13. <function find_spec at 0x7f5f24bc4048>
  14. >>>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement