From 8fbf82b26eb130e733148714057e0da8b7ab0c56 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 17 Feb 1995 13:54:04 +0000 Subject: [PATCH] bump version, add __version__ back in --- Modules/_cursesmodule.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c index 4b45403ecd9..151305d882c 100644 --- a/Modules/_cursesmodule.c +++ b/Modules/_cursesmodule.c @@ -130,7 +130,7 @@ None idlok(int) int=0 or int=1 None leaveok(int) int=0 or int=1 None scrollok(int) int=0 or int=1 None setscrreg(top,bottom) -None keypad(int) int=0 or int=1 +None keypad(int) int=0 or int=1 None nodelay(int) int=0 or int=1 None notimeout(int) int=0 or int=1 ******************************************************************/ @@ -201,7 +201,7 @@ Version 1.0: 94/08/30: ******************************************************************/ -char *PyCursesVersion = "1.1"; +char *PyCursesVersion = "1.2"; /* * Check the return code from a curses function and return None @@ -1419,7 +1419,7 @@ static PyMethodDef PyCurses_methods[] = { void initcurses() { - PyObject *m, *d; + PyObject *m, *d, *v; /* Create the module and add the functions */ m = Py_InitModule("curses", PyCurses_methods); @@ -1433,7 +1433,10 @@ initcurses() PyDict_SetItemString(d, "error", PyCursesError); /* Make the version available */ - PyDict_SetItemString(d,"version", PyString_FromString(PyCursesVersion)); + v = PyString_FromString(PyCursesVersion); + PyDict_SetItemString(d, "version", v); + PyDict_SetItemString(d, "__version__", v); + Py_DECREF(v); /* Here are some attributes you can add to chars to print */ SetDictInt("A_NORMAL", A_NORMAL);