From: Jack Jansen Date: Fri, 7 Mar 2003 13:37:32 +0000 (+0000) Subject: Make tarfile raise ImportError on MacOS9. The pathname handling needs work, and I... X-Git-Tag: v2.3c1~1541 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cfc4902b2ada654585e3e2225eebe9c4737dccc2;p=thirdparty%2FPython%2Fcpython.git Make tarfile raise ImportError on MacOS9. The pathname handling needs work, and I don't have time to fix it. I'll file a bug report. --- diff --git a/Lib/tarfile.py b/Lib/tarfile.py index 270c2b2b8f57..0f088a3718ca 100644 --- a/Lib/tarfile.py +++ b/Lib/tarfile.py @@ -50,6 +50,13 @@ import errno import time import struct +if sys.platform == 'mac': + # This module needs work for MacOS9, especially in the area of pathname + # handling. In many places it is assumed a simple substitution of / by the + # local os.path.sep is good enough to convert pathnames, but this does not + # work with the mac rooted:path:name versus :nonrooted:path:name syntax + raise ImportError, "tarfile does not work for platform==mac" + try: import grp, pwd except ImportError: