[gobject-introspection] treat constructors like methods when generating the label



commit 1751c105dc22048ce8dcc7ae67f7fca7a0f2af0c
Author: John (J5) Palmieri <johnp redhat com>
Date:   Mon Aug 15 10:33:06 2011 -0400

    treat constructors like methods when generating the label

 giscanner/mallardwriter.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/giscanner/mallardwriter.py b/giscanner/mallardwriter.py
index 3c4d6c9..3c0f2fd 100644
--- a/giscanner/mallardwriter.py
+++ b/giscanner/mallardwriter.py
@@ -265,7 +265,7 @@ class MallardFormatterPython(MallardFormatter):
         if isinstance(node, ast.Namespace):
             return "%s Documentation" % node.name
         elif isinstance(node, ast.Function):
-            if node.is_method:
+            if node.is_method and node.is_constructor:
                 return "%s.%s.%s" % (node.namespace.name, parent.name, node.name)
             else:
                 return "%s.%s" % (node.namespace.name, node.name)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]