Allow user code to call the addinfo() method on the profiler object.
diff --git a/Lib/hotshot/__init__.py b/Lib/hotshot/__init__.py
index c362fea..f00e78d 100644
--- a/Lib/hotshot/__init__.py
+++ b/Lib/hotshot/__init__.py
@@ -21,6 +21,9 @@
     def stop(self):
         self._prof.stop()
 
+    def addinfo(self, key, value):
+        self._prof.addinfo(key, value)
+
     # These methods offer the same interface as the profile.Profile class,
     # but delegate most of the work to the C implementation underneath.