Renamed the C extension for ncurses support from 'curses' to '_curses'.

(The SourceForge admins have been asked to rename the ,v file.)
This commit is contained in:
Andrew M. Kuchling 2000-06-10 23:12:32 +00:00
parent e53903c675
commit b7f198e01a
2 changed files with 8 additions and 8 deletions

View File

@ -314,12 +314,12 @@ rotor rotormodule.c # enigma-inspired encryption
#syslog syslogmodule.c # syslog daemon interface
# Lance's curses module. This requires the System V version of
# curses, sometimes known as ncurses (e.g. on Linux, link with
# -lncurses instead of -lcurses; on SunOS 4.1.3, insert -I/usr/5include
# Curses support, requring the System V version of curses, often
# provided by the ncurses library. e.g. on Linux, link with -lncurses
# instead of -lcurses; on SunOS 4.1.3, insert -I/usr/5include
# -L/usr/5lib before -lcurses).
#curses cursesmodule.c -lcurses -ltermcap
#_curses _cursesmodule.c -lcurses -ltermcap

View File

@ -2163,19 +2163,19 @@ static PyMethodDef PyCurses_methods[] = {
/* Initialization function for the module */
void
initcurses()
init_curses()
{
PyObject *m, *d, *v;
/* Create the module and add the functions */
m = Py_InitModule("curses", PyCurses_methods);
m = Py_InitModule("_curses", PyCurses_methods);
/* Add some symbolic constants to the module */
d = PyModule_GetDict(m);
ModDict = d; /* For PyCurses_InitScr */
/* For exception curses.error */
PyCursesError = PyString_FromString("curses.error");
PyCursesError = PyString_FromString("_curses.error");
PyDict_SetItemString(d, "error", PyCursesError);
/* Make the version available */
@ -2251,5 +2251,5 @@ initcurses()
/* Check for errors */
if (PyErr_Occurred())
Py_FatalError("can't initialize module curses");
Py_FatalError("can't initialize module _curses");
}