Remove stray print(s)
authorJohan Dahlin <johan@src.gnome.org>
Thu, 13 Nov 2008 20:23:47 +0000 (20:23 +0000)
committerJohan Dahlin <johan@src.gnome.org>
Thu, 13 Nov 2008 20:23:47 +0000 (20:23 +0000)
svn path=/trunk/; revision=916

giscanner/dumper.py
giscanner/glibtransformer.py

index 066063e..c19f973 100644 (file)
@@ -76,7 +76,6 @@ main(int argc, char **argv)
     for include in options.cpp_includes:
         cc_args.append('-I' + include)
     cc_args.extend(['-c', '-o', o_path, c_path])
-    print "%r" % (cc_args, )
     subprocess.check_call(cc_args)
 
     bin_path = mktmp(tmpdir, nsname, nsver, '')
@@ -108,7 +107,6 @@ main(int argc, char **argv)
     # from gir-repository.  Right now those don't define new GTypes, so we
     # don't need to introspect them.
     ld_args.append('-l'+options.libraries[0])
-    print "%r" % (ld_args, )
     subprocess.check_call(ld_args)
 
     os.unlink(c_path)
index a414078..5f079ba 100644 (file)
@@ -226,7 +226,6 @@ class GLibTransformer(object):
         args = self._binary.args
         args.append(introspect_arg)
         # Invoke the binary, having written our get_type functions to types.txt
-        print args
         subprocess.check_call(args, stdout=sys.stdout, stderr=sys.stderr)
         self._read_introspect_dump(out_path)