# This corresponds to "forms.h".
# Recommended use: import FL; ... FL.NORMAL_BOX ... etc.
# Alternate use: from FL import *; ... NORMAL_BOX ... etc.
+from warnings import warnpy3k
+warnpy3k("the FL module has been removed in Python 3.0", stacklevel=2)
+del warnpy3k
_v20 = 1
_v21 = 1
#
# Jack Jansen, December 1991
#
+from warnings import warnpy3k
+warnpy3k("the flp module has been removed in Python 3.0", stacklevel=2)
+del warnpy3k
+
import string
import os
import sys
# This corresponds to "forms.h".
# Recommended use: import FL; ... FL.NORMAL_BOX ... etc.
# Alternate use: from FL import *; ... NORMAL_BOX ... etc.
+from warnings import warnpy3k
+warnpy3k("the FL module has been removed in Python 3.0", stacklevel=2)
+del warnpy3k
_v20 = 1
_v21 = 1
#
# Jack Jansen, December 1991
#
+from warnings import warnpy3k
+warnpy3k("the flp module has been removed in Python 3.0", stacklevel=2)
+del warnpy3k
+
import os
import sys
import FL
'ihooks', 'mhlib')
inclusive_platforms = {'irix' : ('pure', 'AL', 'al', 'CD', 'cd', 'cddb',
'cdplayer', 'CL', 'cl', 'DEVICE', 'GL',
- 'gl', 'ERRNO', 'FILE'),
+ 'gl', 'ERRNO', 'FILE', 'FL', 'flp', 'fl'),
'darwin' : ('autoGIL', 'Carbon', 'OSATerminology',
'icglue', 'Nav', 'MacOS', 'aepack',
'aetools', 'aetypes', 'applesingle',
Library
-------
+- The FL, flp, and fl modules from IRIX have been deprecated for removal in
+ Python 3.0.
+
- The FILE module on IRIX has been deprecated for removal in Python 3.0.
- The ERRNO module on IRIX has been deprecated for removal in Python 3.0.
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;