Advertisement
nanenj

Don't do this.

Nov 22nd, 2017
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. import __builtin__
  2.  
  3. class bad_idea(str):
  4.     def hello(self):
  5.         if self:
  6.             return self + "HELLO"
  7.         else:
  8.             return 'HELLO'
  9.  
  10. __builtin__.str = bad_idea
  11.  
  12. print str("DERP").hello()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement