init_curses_panel(): Be more consistent with indentation and blank lines.

This commit is contained in:
Fred Drake 2001-01-27 18:58:04 +00:00
parent e7213c7a80
commit 2174f80c66
1 changed files with 3 additions and 5 deletions

View File

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