On Wed, 07 Dec 2022 19:38:19 +
tryandbuy wrote:
> Reading from stdin is very slow when a process runs outside of Cygwin
> Terminal.
>
> Steps to reproduce:
> 1. Create "test.txt" file using python code:
> long_text = "10" * 2500
> with open(r'test.txt', 'w') as f:
> for i in range(5000):
Reading from stdin is very slow when a process runs outside of Cygwin Terminal.
Steps to reproduce:
1. Create "test.txt" file using python code:
long_text = "10" * 2500
with open(r'test.txt', 'w') as f:
for i in range(5000):
f.write('KEY%03d: %d => %s\n' % (i % 100, i, long_text))
2.
2 matches
Mail list logo