##// END OF EJS Templates
Dealing with tabs and whitespaces. Please, everybody, be careful not to...
Dealing with tabs and whitespaces. Please, everybody, be careful not to use any tabs, it a real nightmare dealing with different tabsizes.

File last commit:

r988:2f09c2ab
r1105:fff47e41 merge
Show More
manualtest_repr_tb.py
16 lines | 380 B | text/x-python | PythonLexer
/ test / manualtest_repr_tb.py
"""This should be run directly from ipython, and it should NOT crash.
It can't currently be run via runtests b/c exception handling changes there,
and this is precisely testing exception handling problems."""
ipmagic('xmode verbose')
src = """
class suck(object):
def __repr__(self):
raise ValueError("who needs repr anyway")
suck()
"""
__IPYTHON__.runlines(src)