FL, flp, and fl from IRIX have been deprecated for removal in 3.0.

This commit is contained in:
Brett Cannon 2008-05-15 03:20:36 +00:00
parent 72ccc40db5
commit 178582e2a4
7 changed files with 23 additions and 1 deletions

View file

@ -2128,6 +2128,11 @@ static PyMethodDef forms_methods[] = {
PyMODINIT_FUNC
initfl(void)
{
if (PyErr_WarnPy3k("the fl module has been removed in "
"Python 3.0", 2) < 0)
return;
Py_InitModule("fl", forms_methods);
if (m == NULL)
return;