projects
/
platform
/
upstream
/
gobject-introspection.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0d7b707
)
gdumpparser.py: Limit line length to 100
author
Colin Walters
<walters@verbum.org>
Thu, 9 Jun 2011 16:05:18 +0000
(12:05 -0400)
committer
Colin Walters
<walters@verbum.org>
Thu, 9 Jun 2011 16:05:18 +0000
(12:05 -0400)
giscanner/gdumpparser.py
patch
|
blob
|
history
diff --git
a/giscanner/gdumpparser.py
b/giscanner/gdumpparser.py
index 51054261b72f5d72d5619990b86e21ef34c6b271..87621bc905123c4768bbbc793e0dc3410f3e7b43 100644
(file)
--- 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: