summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan Dahlin <johan@src.gnome.org>2009-01-11 23:50:39 +0000
committerJohan Dahlin <johan@src.gnome.org>2009-01-11 23:50:39 +0000
commit716d64a8e02afc3bc89b2f4927707865b7c62c80 (patch)
tree4f20386b4fa5ec86305782d3f27297103963a05e
parent88bd0c5429be97b5921e0ed5c8381b2a6f4978dc (diff)
downloadgobject-introspection-716d64a8e02afc3bc89b2f4927707865b7c62c80.tar.gz
self.x = not not x -> self.x = x
svn path=/branches/annotation/; revision=1015
-rw-r--r--giscanner/ast.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/ast.py b/giscanner/ast.py
index 98f33d63..c5dc436c 100644
--- a/giscanner/ast.py
+++ b/giscanner/ast.py
@@ -308,7 +308,7 @@ class Parameter(TypeContainer):
else:
self.direction = PARAM_DIRECTION_IN
- self.allow_none = not not allow_none
+ self.allow_none = allow_none
self.scope = scope
self.closure_index = -1
self.destroy_index = -1