Guest User

Untitled

a guest
Oct 19th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. >>> from abc import ABC
  2. >>> class Foo(ABC):
  3. ... pass
  4. ...
  5. >>> f = Foo()
  6. >>> # nothing happens
Add Comment
Please, Sign In to add comment