]> granicus.if.org Git - python/commitdiff
Renamed the C extension for ncurses support from 'curses' to '_curses'.
authorAndrew M. Kuchling <amk@amk.ca>
Sat, 10 Jun 2000 23:12:32 +0000 (23:12 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Sat, 10 Jun 2000 23:12:32 +0000 (23:12 +0000)
(The SourceForge admins have been asked to rename the ,v file.)

Modules/Setup.in
Modules/_cursesmodule.c

index 6540a7dd472a6735af0826b7ab701b80b6fe7bdd..312ac2e9a7d316fd5cbe053666774de98e0f2d86 100644 (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
 
 
 
index 8796aafae0028c89ae55e9c3e08b0b0217e67044..3c1dd086e62678e53e39b9807825703f3fb72da7 100644 (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");
 }