]> granicus.if.org Git - python/commitdiff
init_curses_panel(): Be more consistent with indentation and blank lines.
authorFred Drake <fdrake@acm.org>
Sat, 27 Jan 2001 18:58:04 +0000 (18:58 +0000)
committerFred Drake <fdrake@acm.org>
Sat, 27 Jan 2001 18:58:04 +0000 (18:58 +0000)
Modules/_curses_panel.c

index 4b97aa72b7136d272038042f81d43168ba21f373..42abc2ae3cb848ace6b2989ee5ad8de798542402 100644 (file)
@@ -474,11 +474,11 @@ init_curses_panel(void)
 {
     PyObject *m, *d, *v;
 
-       /* Initialize object type */
-       PyCursesPanel_Type.ob_type = &PyType_Type;
+    /* Initialize object type */
+    PyCursesPanel_Type.ob_type = &PyType_Type;
 
     import_curses();
-        
+
     /* Create the module and add the functions */
     m = Py_InitModule("_curses_panel", PyCurses_methods);
     d = PyModule_GetDict(m);
@@ -492,6 +492,4 @@ init_curses_panel(void)
     PyDict_SetItemString(d, "version", v);
     PyDict_SetItemString(d, "__version__", v);
     Py_DECREF(v);
-
 }
-