Skip to content

Commit bbbb380

Browse files
authored
Update README.md
1 parent f1c0b1e commit bbbb380

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@
44

55
# Better tracebacks
66

7-
This is a more helpful version of Python's built-in exception message: It shows more code context and the current values of nearby variables. This answers many of the questions I'd ask an interactive debugger: Where in the code was the crash, what's in the relevant local variables, and why was _that_ function called with _those_ arguments. It either prints to the console or gives you a string for logging.
7+
This is a more helpful version of Python's built-in exception message: It shows more code context and the current values of nearby variables. This answers many of the questions I'd ask an interactive debugger: Where in the code was the crash, what's in the relevant local variables, and why was _that_ function called with _those_ arguments. It either prints to the console or gives you a string for logging. [It's for Python 3.](https://github.com/cknd/stackprinter/issues/2#issuecomment-489458606)
88

99
```bash
1010
pip install stackprinter
1111
```
12-
[It's only for Python 3.](https://github.com/cknd/stackprinter/issues/2#issuecomment-487424967)
1312
### Before
1413
```
1514
Traceback (most recent call last):

0 commit comments

Comments
 (0)