diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-05-15 03:20:36 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-05-15 03:20:36 (GMT) |
commit | 178582e2a48dab04bb0a20b92d38a8280327dd6f (patch) | |
tree | 2500c452f479f73f042288801073a22f678f89ff /Modules | |
parent | 72ccc40db5e595a7e643f1966f6ee674c5d81551 (diff) | |
download | cpython-178582e2a48dab04bb0a20b92d38a8280327dd6f.zip cpython-178582e2a48dab04bb0a20b92d38a8280327dd6f.tar.gz cpython-178582e2a48dab04bb0a20b92d38a8280327dd6f.tar.bz2 |
FL, flp, and fl from IRIX have been deprecated for removal in 3.0.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/flmodule.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Modules/flmodule.c b/Modules/flmodule.c index e507c9f..20e74e9 100644 --- a/Modules/flmodule.c +++ b/Modules/flmodule.c @@ -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; |