gdumpparser.py: Limit line length to 100
authorColin Walters <walters@verbum.org>
Thu, 9 Jun 2011 16:05:18 +0000 (12:05 -0400)
committerColin Walters <walters@verbum.org>
Thu, 9 Jun 2011 16:05:18 +0000 (12:05 -0400)
giscanner/gdumpparser.py

index 5105426..87621bc 100644 (file)
@@ -211,7 +211,9 @@ blob containing data gleaned from GObject's primitive introspection."""
             self._initparse_get_type_function(func)
 
     def _initparse_get_type_function(self, func):
-        if func.symbol in ('g_object_get_type', 'g_initially_unowned_get_type', 'g_variant_get_gtype'):
+        if func.symbol in ('g_object_get_type',
+                           'g_initially_unowned_get_type',
+                           'g_variant_get_gtype'):
             # We handle these internally, see _initparse_gobject_record
             return True
         if func.parameters: