Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def foo():
- e = None
- for _ in 'foobar':
- try:
- raise AttributeError
- except AttributeError as e:
- pass
- else:
- e = None
- if e:
- raise AttributeError
- foo()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement