Guest User

Untitled

a guest
Dec 14th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. d={}
  2. exec('def a():b',d)
  3. exec('b=None',d)
  4. exec('a()',d)
  5.  
  6. d={}
  7. exec('def a():b',d)
  8. d=d.copy()
  9. exec('b=None',d)
  10. d=d.copy()
  11. exec('a()',d)
Add Comment
Please, Sign In to add comment