Skip to content

Commit 5593a3b

Browse files
committed
PDB++ -> PDB
1 parent 50763fe commit 5593a3b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README_Hadoop_Streaming.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -306,13 +306,13 @@ for line in sys.stdin:
306306
print(f"{word}\t1")
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

338338
Don't forget to remove your temporary changes!

0 commit comments

Comments
 (0)