From 716d64a8e02afc3bc89b2f4927707865b7c62c80 Mon Sep 17 00:00:00 2001 From: Johan Dahlin Date: Sun, 11 Jan 2009 23:50:39 +0000 Subject: self.x = not not x -> self.x = x svn path=/branches/annotation/; revision=1015 --- giscanner/ast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.1