philhanna / xxd

Python version of xxd
MIT License
0 stars 0 forks source link

Interactive use of sys.stdin requires more than one Ctrl-D #2

Open philhanna opened 2 years ago

philhanna commented 2 years ago

To reproduce:

$ ./pyxxd.py
Hello
(Ctrl-D)
(Ctrl-D)
00000010: 4865 6c6c 6f0a                           Hello.

Should only require one Ctrl-D. Compare with the compiled C version of xxd:

$ xxd
Hello
(Ctrl-D)
00000000: 4865 6c6c 6f0a                           Hello.