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 /Lib/plat-irix5 | |
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 'Lib/plat-irix5')
-rwxr-xr-x | Lib/plat-irix5/FL.py | 3 | ||||
-rwxr-xr-x | Lib/plat-irix5/flp.py | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/Lib/plat-irix5/FL.py b/Lib/plat-irix5/FL.py index 727da4c..d1b3be1 100755 --- a/Lib/plat-irix5/FL.py +++ b/Lib/plat-irix5/FL.py @@ -2,6 +2,9 @@ # 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 diff --git a/Lib/plat-irix5/flp.py b/Lib/plat-irix5/flp.py index 4f9175f..13c926f 100755 --- a/Lib/plat-irix5/flp.py +++ b/Lib/plat-irix5/flp.py @@ -3,6 +3,10 @@ # # 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 |