mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Gave hotshot.LogReader a close() method, to allow users to close the
file object that LogReader opens. Used it then in test_hotshot; the test passes again on Windows. Thank Guido for the analysis.
This commit is contained in:
parent
32616cf8ec
commit
30d4896511
2 changed files with 4 additions and 4 deletions
|
@ -51,6 +51,9 @@ class LogReader:
|
|||
self._append = self._stack.append
|
||||
self._pop = self._stack.pop
|
||||
|
||||
def close(self):
|
||||
self._reader.close()
|
||||
|
||||
def addinfo(self, key, value):
|
||||
"""This method is called for each additional ADD_INFO record.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue