summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2014-04-12 10:54:23 +0200
committerStefan Behnel <stefan_ml@behnel.de>2014-04-12 10:54:23 +0200
commit71d041f6d8084c8fa3fbf489f7fdb10cd27ce3a4 (patch)
tree1a3becd232643274d7aa6bc8bf4dbe8ed58a7069
parentd914e150afcd96b0ec561decf4b66b3f64d39bae (diff)
downloadcython-71d041f6d8084c8fa3fbf489f7fdb10cd27ce3a4.tar.gz
whitespace
-rw-r--r--Cython/Compiler/PyrexTypes.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/Cython/Compiler/PyrexTypes.py b/Cython/Compiler/PyrexTypes.py
index 23c279252..604364c14 100644
--- a/Cython/Compiler/PyrexTypes.py
+++ b/Cython/Compiler/PyrexTypes.py
@@ -2875,7 +2875,8 @@ class CStructOrUnionType(CType):
if env.outer_scope is None:
return False
- if self._convert_to_py_code is False: return None # tri-state-ish
+ if self._convert_to_py_code is False:
+ return None # tri-state-ish
if self._convert_to_py_code is None:
for member in self.scope.var_entries:
@@ -2894,7 +2895,8 @@ class CStructOrUnionType(CType):
if env.outer_scope is None:
return False
- if self._convert_from_py_code is False: return None # tri-state-ish
+ if self._convert_from_py_code is False:
+ return None # tri-state-ish
if self._convert_from_py_code is None:
for member in self.scope.var_entries: