We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a67298 commit 3545785Copy full SHA for 3545785
src/etc/test-float-parse/runtests.py
@@ -177,15 +177,13 @@ def run(test):
177
178
179
def interact(proc, queue):
180
- line = ""
181
n = 0
182
while proc.poll() is None:
183
line = proc.stdout.readline()
184
if not line:
185
continue
186
assert line.endswith('\n'), "incomplete line: " + repr(line)
187
queue.put(line)
188
189
n += 1
190
if n % UPDATE_EVERY_N == 0:
191
msg("got", str(n // 1000) + "k", "records")
0 commit comments