diff options
author | Johan Dahlin <johan@src.gnome.org> | 2008-11-13 20:23:47 +0000 |
---|---|---|
committer | Johan Dahlin <johan@src.gnome.org> | 2008-11-13 20:23:47 +0000 |
commit | dd25c00fc843ea5e578f1a9c9de7bb07a90ee4a9 (patch) | |
tree | fc292ba835423a94db976f8fec7e1feaeedb0ba3 | |
parent | cc91fad40a5d1b4c05f704fd90ca6af2dfaf9dd1 (diff) | |
download | gobject-introspection-dd25c00fc843ea5e578f1a9c9de7bb07a90ee4a9.tar.gz |
Remove stray print(s)
svn path=/trunk/; revision=916
-rw-r--r-- | giscanner/dumper.py | 2 | ||||
-rw-r--r-- | giscanner/glibtransformer.py | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/giscanner/dumper.py b/giscanner/dumper.py index 066063e2..c19f9732 100644 --- a/giscanner/dumper.py +++ b/giscanner/dumper.py @@ -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) diff --git a/giscanner/glibtransformer.py b/giscanner/glibtransformer.py index a414078e..5f079bae 100644 --- a/giscanner/glibtransformer.py +++ b/giscanner/glibtransformer.py @@ -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) |