diff --git a/Lib/hotshot/__init__.py b/Lib/hotshot/__init__.py index a23b2ee6526..b9f7866e4ed 100644 --- a/Lib/hotshot/__init__.py +++ b/Lib/hotshot/__init__.py @@ -25,6 +25,10 @@ def close(self): """Close the logfile and terminate the profiler.""" self._prof.close() + def fileno(self): + """Return the file descriptor of the profiler's log file.""" + return self._prof.fileno() + def start(self): """Start the profiler.""" self._prof.start()