summaryrefslogtreecommitdiff
path: root/_dbus_bindings/module.c
diff options
context:
space:
mode:
authorSimon McVittie <smcv@celebrin.pseudorandom.co.uk>2006-09-27 11:00:35 +0100
committerSimon McVittie <smcv@celebrin.pseudorandom.co.uk>2006-09-27 11:00:35 +0100
commita7bcad2d2239e28bb32ef7cfe74105c514a32ee5 (patch)
tree498f67b60ba226e3a7b1bf12b66dfae761db1a6a /_dbus_bindings/module.c
parent888110c46b864b613a3281e3d0bf76ed85b04b01 (diff)
downloaddbus-python-a7bcad2d2239e28bb32ef7cfe74105c514a32ee5.tar.gz
_dbus_bindings/module.c: PEP7-style whitespace
Diffstat (limited to '_dbus_bindings/module.c')
-rw-r--r--_dbus_bindings/module.c44
1 files changed, 22 insertions, 22 deletions
diff --git a/_dbus_bindings/module.c b/_dbus_bindings/module.c
index 163bfb7..b872a87 100644
--- a/_dbus_bindings/module.c
+++ b/_dbus_bindings/module.c
@@ -49,33 +49,33 @@ static PyMethodDef module_functions[] = {
};
PyMODINIT_FUNC
-init_dbus_bindings (void)
+init_dbus_bindings(void)
{
PyObject *this_module;
- if (!init_generic ()) return;
- if (!init_exception_types ()) return;
- if (!init_signature ()) return;
- if (!init_types ()) return;
- if (!init_container_types ()) return;
- if (!init_byte_types ()) return;
- if (!init_message_types ()) return;
- if (!init_pending_call ()) return;
- if (!init_conn_types ()) return;
- if (!init_bus_types ()) return;
-
- this_module = Py_InitModule3 ("_dbus_bindings", module_functions, module_doc);
+ if (!init_generic()) return;
+ if (!init_exception_types()) return;
+ if (!init_signature()) return;
+ if (!init_types()) return;
+ if (!init_container_types()) return;
+ if (!init_byte_types()) return;
+ if (!init_message_types()) return;
+ if (!init_pending_call()) return;
+ if (!init_conn_types()) return;
+ if (!init_bus_types()) return;
+
+ this_module = Py_InitModule3("_dbus_bindings", module_functions, module_doc);
if (!this_module) return;
- if (!insert_exception_types (this_module)) return;
- if (!insert_signature (this_module)) return;
- if (!insert_types (this_module)) return;
- if (!insert_container_types (this_module)) return;
- if (!insert_byte_types (this_module)) return;
- if (!insert_message_types (this_module)) return;
- if (!insert_pending_call (this_module)) return;
- if (!insert_conn_types (this_module)) return;
- if (!insert_bus_types (this_module)) return;
+ if (!insert_exception_types(this_module)) return;
+ if (!insert_signature(this_module)) return;
+ if (!insert_types(this_module)) return;
+ if (!insert_container_types(this_module)) return;
+ if (!insert_byte_types(this_module)) return;
+ if (!insert_message_types(this_module)) return;
+ if (!insert_pending_call(this_module)) return;
+ if (!insert_conn_types(this_module)) return;
+ if (!insert_bus_types(this_module)) return;
#define ADD_CONST_VAL(x, v) \
if (PyModule_AddIntConstant(this_module, x, v) < 0) return;