summaryrefslogtreecommitdiff
path: root/giscanner/__init__.py
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2008-03-25 22:07:17 +0000
committerJohan Dahlin <johan@src.gnome.org>2008-03-25 22:07:17 +0000
commit2e3d0c4e1284f961c5af25ecec4bd06687875e70 (patch)
tree6afce58774787423ee459aad8074c7aa6f9cf68b /giscanner/__init__.py
parent55e0a1d2b44aba6dd53d33d940d816b0f363939a (diff)
downloadgobject-introspection-2e3d0c4e1284f961c5af25ecec4bd06687875e70.tar.gz
Fix a typo and add an example python test program.
2008-03-25 Johan Dahlin <johan@gnome.org> * giscanner/__init__.py: * tools/g-ir-scanner: Fix a typo and add an example python test program. svn path=/trunk/; revision=167
Diffstat (limited to 'giscanner/__init__.py')
-rw-r--r--giscanner/__init__.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/giscanner/__init__.py b/giscanner/__init__.py
index 448577ee..55963624 100644
--- a/giscanner/__init__.py
+++ b/giscanner/__init__.py
@@ -35,9 +35,9 @@ TYPE_QUALIFIER_VOLATILE = 1 << 3
FUNCTION_NONE = 0
FUNCTION_INLINE = 1 << 1
-UNARY_ADDRESS_OF
-UNARY_POINTER_INDIRECTION
-UNARY_PLUS
-UNARY_MINUS
-UNARY_BITWISE_COMPLEMENT
-UNARY_LOGICAL_NEGATION
+(UNARY_ADDRESS_OF,
+ UNARY_POINTER_INDIRECTION,
+ UNARY_PLUS,
+ UNARY_MINUS,
+ UNARY_BITWISE_COMPLEMENT,
+ UNARY_LOGICAL_NEGATION) = range(6)