[libvirt] [PATCH 07/11] maint: fix comma style issues: python

Eric Blake eblake at redhat.com
Wed Nov 20 00:30:07 UTC 2013


Most of our code base uses space after comma but not before;
fix the remaining uses before adding a syntax check.

* python/libvirt-override.c: Consistently use commas.

Signed-off-by: Eric Blake <eblake at redhat.com>
---
 python/libvirt-override.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/python/libvirt-override.c b/python/libvirt-override.c
index 747c877..6546dd1 100644
--- a/python/libvirt-override.c
+++ b/python/libvirt-override.c
@@ -461,7 +461,7 @@ libvirt_virDomainBlockStats(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) {
     PyObject *info;

     if (!PyArg_ParseTuple(args, (char *)"Oz:virDomainBlockStats",
-        &pyobj_domain,&path))
+        &pyobj_domain, &path))
         return NULL;
     domain = (virDomainPtr) PyvirDomain_Get(pyobj_domain);

@@ -676,7 +676,7 @@ libvirt_virDomainInterfaceStats(PyObject *self ATTRIBUTE_UNUSED, PyObject *args)
     PyObject *info;

     if (!PyArg_ParseTuple(args, (char *)"Oz:virDomainInterfaceStats",
-        &pyobj_domain,&path))
+        &pyobj_domain, &path))
         return NULL;
     domain = (virDomainPtr) PyvirDomain_Get(pyobj_domain);

@@ -4924,12 +4924,12 @@ libvirt_virConnectDomainEventCallback(virConnectPtr conn ATTRIBUTE_UNUSED,
     virDomainRef(dom);
     pyobj_dom = libvirt_virDomainPtrWrap(dom);
     pyobj_dom_args = PyTuple_New(2);
-    if (PyTuple_SetItem(pyobj_dom_args, 0, pyobj_conn_inst)!=0) {
-        DEBUG("%s error creating tuple",__FUNCTION__);
+    if (PyTuple_SetItem(pyobj_dom_args, 0, pyobj_conn_inst) != 0) {
+        DEBUG("%s error creating tuple", __FUNCTION__);
         goto cleanup;
     }
-    if (PyTuple_SetItem(pyobj_dom_args, 1, pyobj_dom)!=0) {
-        DEBUG("%s error creating tuple",__FUNCTION__);
+    if (PyTuple_SetItem(pyobj_dom_args, 1, pyobj_dom) != 0) {
+        DEBUG("%s error creating tuple", __FUNCTION__);
         goto cleanup;
     }
     Py_INCREF(pyobj_conn_inst);
-- 
1.8.3.1




More information about the libvir-list mailing list