diff options
Diffstat (limited to 'Lib/plat-irix5/jpeg.py')
-rwxr-xr-x | Lib/plat-irix5/jpeg.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/plat-irix5/jpeg.py b/Lib/plat-irix5/jpeg.py index f8fc7e7210..944ce930e1 100755 --- a/Lib/plat-irix5/jpeg.py +++ b/Lib/plat-irix5/jpeg.py @@ -4,6 +4,9 @@ # XXX It appears that compressing grayscale images doesn't work right; # XXX the resulting file causes weirdness. +from warnings import warnpy3k +warnpy3k("the jpeg module has been removed in Python 3.0", stacklevel=2) +del warnpy3k class error(Exception): pass |