summaryrefslogtreecommitdiff
path: root/giscanner/dumper.py
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2009-01-03 13:43:07 +0000
committerJürg Billeter <juergbi@src.gnome.org>2009-01-03 13:43:07 +0000
commit00b0ae6bca603adc2c424c9a9384c60c4e4b1ccb (patch)
tree319e50b9ff6f560e8afa881ddfdc4cc810bc4219 /giscanner/dumper.py
parent30182fa9cb9c90a4f663bed37812aae12a8a8279 (diff)
downloadgobject-introspection-00b0ae6bca603adc2c424c9a9384c60c4e4b1ccb.tar.gz
Fix inconsistencies with PEP8
2009-01-03 Jürg Billeter <j@bitron.ch> * giscanner/ast.py: * giscanner/dumper.py: * giscanner/girparser.py: * giscanner/glibtransformer.py: * giscanner/sourcescanner.py: * giscanner/transformer.py: * giscanner/xmlwriter.py: Fix inconsistencies with PEP8 svn path=/trunk/; revision=997
Diffstat (limited to 'giscanner/dumper.py')
-rw-r--r--giscanner/dumper.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/giscanner/dumper.py b/giscanner/dumper.py
index 45dcc25f..c85ae807 100644
--- a/giscanner/dumper.py
+++ b/giscanner/dumper.py
@@ -88,7 +88,6 @@ class DumpCompiler(object):
self._packages.append('gobject-introspection-1.0')
# Public API
-
def run(self):
c_path = self._generate_tempfile('.c')
f = open(c_path, 'w')
@@ -113,7 +112,6 @@ class DumpCompiler(object):
return IntrospectionBinary([bin_path], self._tmpdir)
# Private API
-
def _generate_tempfile(self, suffix=''):
tmpl = '%s-%s%s' % (self._options.namespace_name,
self._options.namespace_version, suffix)