Skip to content

Commit afcb00a

Browse files
committed
tests: remove some old comments
1 parent c36ba06 commit afcb00a

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tests/helpers/ptrack_helpers.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1799,10 +1799,7 @@ def __init__(self, cmd, verbose, attach=False):
17991799
)
18001800
self.gdb_pid = self.proc.pid
18011801

1802-
# discard data from pipe,
1803-
# is there a way to do it a less derpy way?
18041802
while True:
1805-
# line = self.proc.stdout.readline()
18061803
line = self.get_line()
18071804

18081805
if 'No such process' in line:
@@ -1815,7 +1812,6 @@ def __init__(self, cmd, verbose, attach=False):
18151812

18161813
def get_line(self):
18171814
line = self.proc.stdout.readline()
1818-
# self.output += repr(line) + '\n'
18191815
self.output += line
18201816
return line
18211817

0 commit comments

Comments
 (0)