##// END OF EJS Templates
fix tests
Matthias Bussonnier -
Show More
@@ -72,7 +72,7 b' In [4]: run simpleerr.py'
72 72 ---------------------------------------------------------------------------
73 73 ZeroDivisionError Traceback (most recent call last)
74 74 <BLANKLINE>
75 ... in <module>()
75 ... in <module>
76 76 30 mode = 'div'
77 77 31
78 78 ---> 32 bar(mode)
@@ -104,7 +104,7 b' In [6]: run simpleerr.py'
104 104 ---------------------------------------------------------------------------
105 105 ZeroDivisionError Traceback (most recent call last)
106 106 <BLANKLINE>
107 ... in <module>()
107 ... in <module>
108 108 30 mode = 'div'
109 109 31
110 110 ---> 32 bar(mode)
@@ -161,7 +161,7 b' In [22]: %tb'
161 161 ---------------------------------------------------------------------------
162 162 SystemExit Traceback (most recent call last)
163 163 <BLANKLINE>
164 ...<module>()
164 ...<module>
165 165 30 mode = 'div'
166 166 31
167 167 ---> 32 bar(mode)
@@ -189,7 +189,7 b' In [24]: %tb'
189 189 ---------------------------------------------------------------------------
190 190 SystemExit Traceback (most recent call last)
191 191 <BLANKLINE>
192 ... in <module>()
192 ... in <module>
193 193 30 mode = 'div'
194 194 31
195 195 ---> 32 bar(mode)
@@ -217,7 +217,7 b' class IPythonConsoleLexer(Lexer):'
217 217
218 218 ---------------------------------------------------------------------------
219 219 Exception Traceback (most recent call last)
220 <ipython-input-1-fca2ab0ca76b> in <module>()
220 <ipython-input-1-fca2ab0ca76b> in <module>
221 221 ----> 1 raise Exception
222 222
223 223 Exception:
@@ -765,7 +765,7 b' context line to show. This allows to a many line of context on shallow stack tra'
765 765 In[6]: foo(1)
766 766 # ...
767 767 ipdb> where 8
768 <ipython-input-6-9e45007b2b59>(1)<module>()
768 <ipython-input-6-9e45007b2b59>(1)<module>
769 769 ----> 1 foo(1)
770 770
771 771 <ipython-input-5-7baadc3d1465>(5)foo()
@@ -794,7 +794,7 b' And less context on shallower Stack Trace:'
794 794 .. code::
795 795
796 796 ipdb> where 1
797 <ipython-input-13-afa180a57233>(1)<module>()
797 <ipython-input-13-afa180a57233>(1)<module>
798 798 ----> 1 foo(7)
799 799
800 800 <ipython-input-5-7baadc3d1465>(5)foo()
General Comments 0
You need to be logged in to leave comments. Login now