summaryrefslogtreecommitdiffstats
path: root/Lib/hotshot
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2002-07-18 19:17:20 (GMT)
committerFred Drake <fdrake@acm.org>2002-07-18 19:17:20 (GMT)
commit7d17e6f3d05ec473a107a0d6b666f3637636d3bd (patch)
treefea1490b5450f0842a2c4ccc21e79161b9352526 /Lib/hotshot
parent666bf52a168d79396ef9144568e95b778e1e5293 (diff)
downloadcpython-7d17e6f3d05ec473a107a0d6b666f3637636d3bd.zip
cpython-7d17e6f3d05ec473a107a0d6b666f3637636d3bd.tar.gz
cpython-7d17e6f3d05ec473a107a0d6b666f3637636d3bd.tar.bz2
Expose the fileno() method of the underlying log reader.
Remove the crufty support for Python's that don't have StopIteration; the HotShot patch for Python 2.1 has not been maintained.
Diffstat (limited to 'Lib/hotshot')
-rw-r--r--Lib/hotshot/log.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/Lib/hotshot/log.py b/Lib/hotshot/log.py
index 9084461..a5020dd 100644
--- a/Lib/hotshot/log.py
+++ b/Lib/hotshot/log.py
@@ -21,12 +21,6 @@ EXIT = WHAT_EXIT
LINE = WHAT_LINENO
-try:
- StopIteration
-except NameError:
- StopIteration = IndexError
-
-
class LogReader:
def __init__(self, logfn):
# fileno -> filename
@@ -54,6 +48,10 @@ class LogReader:
def close(self):
self._reader.close()
+ def fileno(self):
+ """Return the file descriptor of the log reader's log file."""
+ return self._reader.fileno()
+
def addinfo(self, key, value):
"""This method is called for each additional ADD_INFO record.