Guest User

Untitled

a guest
Oct 20th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. >>> class MyInt(int):
  2. ... def __rmod__(self, other):
  3. ... return 42
  4. ...
  5. >>> class MyStr(str):
  6. ... def __rmod__(self, other):
  7. ... return 'wat'
  8. ...
  9. >>> 0 % MyInt()
  10. 42
  11. >>> '%r' % MyStr()
  12. "''"
Add Comment
Please, Sign In to add comment