From 69a07fbd9b2c1e2d203532d4babbc6d874d389ee Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 12 May 2008 22:25:16 +0000 Subject: Remove the Mac modules --- Lib/plistlib.py | 35 ----------------------------------- 1 file changed, 35 deletions(-) (limited to 'Lib/plistlib.py') diff --git a/Lib/plistlib.py b/Lib/plistlib.py index db5eea1346..b7753246a5 100644 --- a/Lib/plistlib.py +++ b/Lib/plistlib.py @@ -53,7 +53,6 @@ Parse Plist example: __all__ = [ "readPlist", "writePlist", "readPlistFromBytes", "writePlistToBytes", - "readPlistFromResource", "writePlistToResource", "Plist", "Data", "Dict" ] # Note: the Plist and Dict classes have been deprecated. @@ -110,40 +109,6 @@ def writePlistToBytes(rootObject): return f.getvalue() -def readPlistFromResource(path, restype='plst', resid=0): - """Read plst resource from the resource fork of path. - """ - from Carbon.File import FSRef, FSGetResourceForkName - from Carbon.Files import fsRdPerm - from Carbon import Res - fsRef = FSRef(path) - resNum = Res.FSOpenResourceFile(fsRef, FSGetResourceForkName(), fsRdPerm) - Res.UseResFile(resNum) - plistData = Res.Get1Resource(restype, resid).data - Res.CloseResFile(resNum) - return readPlistFromString(plistData) - - -def writePlistToResource(rootObject, path, restype='plst', resid=0): - """Write 'rootObject' as a plst resource to the resource fork of path. - """ - from Carbon.File import FSRef, FSGetResourceForkName - from Carbon.Files import fsRdWrPerm - from Carbon import Res - plistData = writePlistToString(rootObject) - fsRef = FSRef(path) - resNum = Res.FSOpenResourceFile(fsRef, FSGetResourceForkName(), fsRdWrPerm) - Res.UseResFile(resNum) - try: - Res.Get1Resource(restype, resid).RemoveResource() - except Res.Error: - pass - res = Res.Resource(plistData) - res.AddResource(restype, resid, '') - res.WriteResource() - Res.CloseResFile(resNum) - - class DumbXMLWriter: def __init__(self, file, indentLevel=0, indent="\t"): self.file = file -- cgit v1.2.1