Neal Norwitz wrote: > I remember seeing a change which moved the plistlib module from > Lib/plat-mac to Lib so all platforms can use it. This change causes > *all* the builds fail because the test has several problems. For > example, the test references functions/methods that don't exist (see > below). Can someone fix this?
I fixed it by copying plistlib.py from the py3k directory Lib/plat-mac/ to Lib/. svn rm Lib/plistlib.py svn cp -r 60150 svn+ssh://[EMAIL PROTECTED]/python/branches/py3k/Lib/plat-mac/plistlib.py Lib/ svnmerge.py doesn't automatically do relative copies. It always copies the absolute path. In the case of a rename, move or copy one has to copy the right file manually. Christian _______________________________________________ Python-3000 mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000 Unsubscribe: http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com
