Commit 71d041f6 authored by Stefan Behnel's avatar Stefan Behnel

whitespace

parent d914e150
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment