From 95b876a84f3e175a211a088f55d58bb36629290d Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 9 Jun 2011 12:05:18 -0400 Subject: gdumpparser.py: Limit line length to 100 --- giscanner/gdumpparser.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'giscanner/gdumpparser.py') diff --git a/giscanner/gdumpparser.py b/giscanner/gdumpparser.py index 51054261..87621bc9 100644 --- a/giscanner/gdumpparser.py +++ b/giscanner/gdumpparser.py @@ -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: -- cgit v1.2.1