This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author wangchun
Recipients wangchun
Date 2010-02-04.09:02:06
SpamBayes Score 0.36511576
Marked as misclassified No
Message-id <1265274130.06.0.273637901356.issue7852@psf.upfronthosting.co.za>
In-reply-to
Content
Apple's official utilities had been dropped the word "Computer". We should follow them.

imac:~$ cat test.py
__import__('plistlib').writePlist({}, 'test.plist')
imac:~$ python test.py
imac:~$ cat test.py
__import__('plistlib').writePlist({}, 'test.plist')
imac:~$ python test.py
imac:~$ cat test.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
</dict>
</plist>
imac:~$ plutil -convert xml1 test.plist
imac:~$ cat test.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict/>
</plist>
imac:~$
History
Date User Action Args
2010-02-04 09:02:10wangchunsetrecipients: + wangchun
2010-02-04 09:02:10wangchunsetmessageid: <1265274130.06.0.273637901356.issue7852@psf.upfronthosting.co.za>
2010-02-04 09:02:08wangchunlinkissue7852 messages
2010-02-04 09:02:07wangchuncreate