//---------------------------------------------------------------------------
-%typemap(out) bool "$result = $1 ? Py_True : Py_False; Py_INCREF($result);"
-
+%typemap(out) bool {
+ $result = $1 ? Py_True : Py_False; Py_INCREF($result);
+}
//---------------------------------------------------------------------------