File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -306,13 +306,13 @@ for line in sys.stdin:
306306 print (f " { word} \t 1 " )
307307```
308308
309- PDB/PDB++ confuses the stdin being piped in from the input file for user input, so we get these errors:
309+ PDB confuses the stdin being piped in from the input file for user input, so we get these errors:
310310``` console
311311$ cat input/input* | ./map.py
312312...
313- (Pdb++ ) *** SyntaxError: invalid syntax
314- (Pdb++ ) *** SyntaxError: invalid syntax
315- (Pdb++ ) *** SyntaxError: invalid syntax
313+ (Pdb) *** SyntaxError: invalid syntax
314+ (Pdb) *** SyntaxError: invalid syntax
315+ (Pdb) *** SyntaxError: invalid syntax
316316...
317317```
318318
@@ -332,7 +332,7 @@ Now our debugger works correctly.
332332``` console
333333$ cat input/input* | ./map.py
334334...
335- (Pdb++ )
335+ (Pdb)
336336```
337337
338338Don't forget to remove your temporary changes!
You can’t perform that action at this time.
0 commit comments