chiark / gitweb /
Document all util files.
authordaid <daid303@gmail.com>
Fri, 14 Feb 2014 07:54:40 +0000 (08:54 +0100)
committerdaid <daid303@gmail.com>
Fri, 14 Feb 2014 07:54:40 +0000 (08:54 +0100)
Cura/doctest.py

index e74d76d6fb4f855b70de18a61cd3388b89182a86..b22dd10cafb22d9e1098da151744eb811c0856c8 100644 (file)
@@ -71,8 +71,8 @@ def main():
                                typeCount += 1
                                if inspect.getdoc(a):
                                        typeDocCount += 1
-                               else:
-                               #       undocList.append('%s.%s' % (module.__name__, name))
+                               else:
+                                       undocList.append('%s.%s' % (module.__name__, name))
                                for name2 in dir(a):
                                        a2 = getattr(a, name2)
                                        if type(a2) is types.MethodType: