[issue7852] [PATCH] Drop "Computer" from "Apple Computer" in plistlib

2010-04-29 Thread Ronald Oussoren
Ronald Oussoren added the comment: test failures have been fixed a while back. -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue7852] [PATCH] Drop "Computer" from "Apple Computer" in plistlib

2010-04-20 Thread STINNER Victor
STINNER Victor added the comment: r80279 and r80280 caused many buildbot to fail: i386 Ubuntu 3.x AMD64 Ubuntu trunk AMD64 Ubuntu wide trunk x86 Ubuntu trunk x86 XP-4 trunk x86 XP-5 trunk == FAIL: test_appleformattin

[issue7852] [PATCH] Drop "Computer" from "Apple Computer" in plistlib

2010-04-20 Thread Ronald Oussoren
Ronald Oussoren added the comment: I agree that the DTD should be changed. Fixed in r80279 (trunk) and r80280 (3.2). I won't backport to 2.6 and 3.1 because this is a mostly cosmetic issue and I do not want to risk breaking existing scripts. -- resolution: -> fixed stage: patch rev

[issue7852] [PATCH] Drop "Computer" from "Apple Computer" in plistlib

2010-02-09 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- assignee: -> ronaldoussoren ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue7852] [PATCH] Drop "Computer" from "Apple Computer" in plistlib

2010-02-05 Thread Wang Chun
Wang Chun added the comment: plutil is a command shipped with every Mac. See the example in my original post. -- ___ Python tracker ___ __

[issue7852] [PATCH] Drop "Computer" from "Apple Computer" in plistlib

2010-02-05 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ronaldoussoren ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue7852] [PATCH] Drop "Computer" from "Apple Computer" in plistlib

2010-02-05 Thread Zvezdan Petkovic
Zvezdan Petkovic added the comment: Also, on a Mac computer: - start Xcode 3.2.1 and select Help->Developer Documentation - type in the search box in the top right corner "property list" - the second hit is "Property List Programming Guide"; click on it - the second page gives the same example

[issue7852] [PATCH] Drop "Computer" from "Apple Computer" in plistlib

2010-02-05 Thread Zvezdan Petkovic
Zvezdan Petkovic added the comment: How about this example from Mac OS X Reference Library "Property List Programming Guide": http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/PropertyLists/QuickStartPlist/QuickStartPlist.html Perhaps the fact that Apple officially changed

[issue7852] [PATCH] Drop "Computer" from "Apple Computer" in plistlib

2010-02-05 Thread Ezio Melotti
Ezio Melotti added the comment: I did a quick search and couldn't find any reference about this change, the examples in the apple doc still use 'Apple Computer'. Do you have any reference that says that the correct doctype (now) uses only 'Apple'? -- nosy: +ezio.melotti priority: ->

[issue7852] [PATCH] Drop "Computer" from "Apple Computer" in plistlib

2010-02-04 Thread Wang Chun
New submission from Wang Chun : 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:~$