Mark the closed attribute of the profiler with PyDoc_STR(), and added
a docstring for the info attribute of the logreader object.
diff --git a/Modules/_hotshot.c b/Modules/_hotshot.c
index 32137b2..4abbcb9 100644
--- a/Modules/_hotshot.c
+++ b/Modules/_hotshot.c
@@ -1181,7 +1181,7 @@
 
 static PyGetSetDef profiler_getsets[] = {
     {"closed", (getter)profiler_get_closed, NULL,
-     "True if the profiler's output file has already been closed."},
+     PyDoc_STR("True if the profiler's output file has already been closed.")},
     {NULL}
 };
 
@@ -1250,7 +1250,8 @@
 };
 
 static PyMemberDef logreader_members[] = {
-    {"info", T_OBJECT, offsetof(LogReaderObject, info), RO},
+    {"info", T_OBJECT, offsetof(LogReaderObject, info), RO,
+     PyDoc_STR("Dictionary mapping informational keys to lists of values.")},
     {NULL}
 };