summaryrefslogtreecommitdiff
path: root/giscanner/glibtransformer.py
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2009-07-06 11:04:22 -0300
committerJohan Dahlin <johan@gnome.org>2009-07-06 11:04:22 -0300
commit4fabb3e649b9d359e10454bdf3984a3bdf5bb285 (patch)
treef981d663ecb56dbf5dcd743f9883054e386d938e /giscanner/glibtransformer.py
parentfeee5b3fa9f79b3085388e181d5f6473749d84b8 (diff)
downloadgobject-introspection-4fabb3e649b9d359e10454bdf3984a3bdf5bb285.tar.gz
Omit warnings, my console is not a todo list
Diffstat (limited to 'giscanner/glibtransformer.py')
-rw-r--r--giscanner/glibtransformer.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/giscanner/glibtransformer.py b/giscanner/glibtransformer.py
index 6a0dee06..993aee6e 100644
--- a/giscanner/glibtransformer.py
+++ b/giscanner/glibtransformer.py
@@ -170,7 +170,7 @@ class GLibTransformer(object):
try:
self._resolve_node(node)
except KeyError, e:
- print "WARNING: DELETING node %s: %s" % (node.name, e)
+ #print "WARNING: DELETING node %s: %s" % (node.name, e)
self._remove_attribute(node.name)
# Another pass, since we need to have the methods parsed
# in order to correctly modify them after class/record
@@ -186,7 +186,7 @@ class GLibTransformer(object):
if not self._noclosure:
self._resolve_types(nodes)
- self._validate(nodes)
+ #self._validate(nodes)
# Create a new namespace with what we found
namespace = Namespace(self._namespace_name, self._namespace_version)
@@ -998,7 +998,7 @@ class GLibTransformer(object):
for vfunc in iface.virtual_methods:
if not vfunc.invoker:
print ("warning: Interface %r virtual function %r " + \
- "has no known invoker") % (iface.name, vfunc.name)
+ "has no known invoker") % (iface.name, vfunc.name)
# This function is called at the very end, before we hand back the
# completed namespace to the writer. Add static analysis checks here.