Remove unused static function

This commit is contained in:
Neal Norwitz 2002-05-31 21:47:02 +00:00
parent 14bd6de0ec
commit 3e12905e03
1 changed files with 0 additions and 19 deletions

View File

@ -635,25 +635,6 @@ static char module_doc[] =
*** IMPORTANT NOTICE ***\n\
On Windows, only sockets are supported; on Unix, all file descriptors.";
/*
* Convenience routine to export an integer value.
* For simplicity, errors (which are unlikely anyway) are ignored.
*/
static void
insint(PyObject *d, char *name, int value)
{
PyObject *v = PyInt_FromLong((long) value);
if (v == NULL) {
/* Don't bother reporting this error */
PyErr_Clear();
}
else {
PyDict_SetItemString(d, name, v);
Py_DECREF(v);
}
}
DL_EXPORT(void)
initselect(void)
{