Show More
@@ -1,7 +1,7 b'' | |||||
1 | Traceback improvements |
|
1 | Traceback improvements | |
2 | ====================== |
|
2 | ====================== | |
3 |
|
3 | |||
4 |
Previously, error tracebacks for errors happening in code cells were showing a hash, the one used for compiling the Python AST |
|
4 | Previously, error tracebacks for errors happening in code cells were showing a hash, the one used for compiling the Python AST:: | |
5 |
|
|
5 | ||
6 | In [1]: def foo(): |
|
6 | In [1]: def foo(): | |
7 | ...: return 3 / 0 |
|
7 | ...: return 3 / 0 | |
@@ -20,7 +20,7 b' Previously, error tracebacks for errors happening in code cells were showing a h' | |||||
20 |
|
20 | |||
21 | ZeroDivisionError: division by zero |
|
21 | ZeroDivisionError: division by zero | |
22 |
|
22 | |||
23 | The error traceback is now correctly formatted, showing the cell number in which the error happened: |
|
23 | The error traceback is now correctly formatted, showing the cell number in which the error happened:: | |
24 |
|
|
24 | ||
25 | In [1]: def foo(): |
|
25 | In [1]: def foo(): | |
26 | ...: return 3 / 0 |
|
26 | ...: return 3 / 0 |
General Comments 0
You need to be logged in to leave comments.
Login now