[Python-checkins] cpython (3.3): Make indentation consistent

eli.bendersky python-checkins at python.org
Tue Jan 1 16:42:21 CET 2013


http://hg.python.org/cpython/rev/3ff3f3ab5e5b
changeset:   81189:3ff3f3ab5e5b
branch:      3.3
parent:      81184:eb7c5a36bd2c
user:        Eli Bendersky <eliben at gmail.com>
date:        Tue Jan 01 07:41:51 2013 -0800
summary:
  Make indentation consistent

files:
  Modules/xxmodule.c |  56 +++++++++++++++++-----------------
  1 files changed, 28 insertions(+), 28 deletions(-)


diff --git a/Modules/xxmodule.c b/Modules/xxmodule.c
--- a/Modules/xxmodule.c
+++ b/Modules/xxmodule.c
@@ -102,42 +102,42 @@
     sizeof(XxoObject),          /*tp_basicsize*/
     0,                          /*tp_itemsize*/
     /* methods */
-    (destructor)Xxo_dealloc, /*tp_dealloc*/
+    (destructor)Xxo_dealloc,    /*tp_dealloc*/
     0,                          /*tp_print*/
-    (getattrfunc)0,         /*tp_getattr*/
-    (setattrfunc)Xxo_setattr, /*tp_setattr*/
+    (getattrfunc)0,             /*tp_getattr*/
+    (setattrfunc)Xxo_setattr,   /*tp_setattr*/
     0,                          /*tp_reserved*/
     0,                          /*tp_repr*/
     0,                          /*tp_as_number*/
     0,                          /*tp_as_sequence*/
     0,                          /*tp_as_mapping*/
     0,                          /*tp_hash*/
-    0,                      /*tp_call*/
-    0,                      /*tp_str*/
+    0,                          /*tp_call*/
+    0,                          /*tp_str*/
     (getattrofunc)Xxo_getattro, /*tp_getattro*/
-    0,                      /*tp_setattro*/
-    0,                      /*tp_as_buffer*/
-    Py_TPFLAGS_DEFAULT,     /*tp_flags*/
-    0,                      /*tp_doc*/
-    0,                      /*tp_traverse*/
-    0,                      /*tp_clear*/
-    0,                      /*tp_richcompare*/
-    0,                      /*tp_weaklistoffset*/
-    0,                      /*tp_iter*/
-    0,                      /*tp_iternext*/
-    Xxo_methods,            /*tp_methods*/
-    0,                      /*tp_members*/
-    0,                      /*tp_getset*/
-    0,                      /*tp_base*/
-    0,                      /*tp_dict*/
-    0,                      /*tp_descr_get*/
-    0,                      /*tp_descr_set*/
-    0,                      /*tp_dictoffset*/
-    0,                      /*tp_init*/
-    0,                      /*tp_alloc*/
-    0,                      /*tp_new*/
-    0,                      /*tp_free*/
-    0,                      /*tp_is_gc*/
+    0,                          /*tp_setattro*/
+    0,                          /*tp_as_buffer*/
+    Py_TPFLAGS_DEFAULT,         /*tp_flags*/
+    0,                          /*tp_doc*/
+    0,                          /*tp_traverse*/
+    0,                          /*tp_clear*/
+    0,                          /*tp_richcompare*/
+    0,                          /*tp_weaklistoffset*/
+    0,                          /*tp_iter*/
+    0,                          /*tp_iternext*/
+    Xxo_methods,                /*tp_methods*/
+    0,                          /*tp_members*/
+    0,                          /*tp_getset*/
+    0,                          /*tp_base*/
+    0,                          /*tp_dict*/
+    0,                          /*tp_descr_get*/
+    0,                          /*tp_descr_set*/
+    0,                          /*tp_dictoffset*/
+    0,                          /*tp_init*/
+    0,                          /*tp_alloc*/
+    0,                          /*tp_new*/
+    0,                          /*tp_free*/
+    0,                          /*tp_is_gc*/
 };
 /* --------------------------------------------------------------------- */
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list