Updated _get_readline function file open by with block
Reverted skip_python3 function remove change
This commit is contained in:
parent
6dffb1e470
commit
e79a0e21e9
|
@ -87,7 +87,8 @@ class TestProcessProto(unittest.TestCase):
|
||||||
def _get_readline(cls, pfile):
|
def _get_readline(cls, pfile):
|
||||||
pfile = os.path.join(cls.home, pfile)
|
pfile = os.path.join(cls.home, pfile)
|
||||||
try:
|
try:
|
||||||
return open(pfile, 'rb').readline().strip()
|
with open(pfile, 'rb') as p:
|
||||||
|
return p.readline().strip()
|
||||||
except (OSError, IOError):
|
except (OSError, IOError):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
Reference in New Issue
Block a user