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 ned.deily
Recipients ned.deily, pvg
Date 2012-05-24.03:17:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1337829421.17.0.381934208812.issue14896@psf.upfronthosting.co.za>
In-reply-to
Content
This should no longer be an issue on most platforms as of Python 2.7 and Python 3.1.  Both added a new algorithm such that "the repr() of a floating-point number x now returns a result based on the shortest decimal string that’s guaranteed to round back to x under correct rounding".  The new float repr applies to plistlib as well.  Here's an example:

$ cat pl.py
from plistlib import readPlistFromString, writePlistToString
d1 = dict(a=0.15)
s1 = writePlistToString(d1)
print(s1)
d2 = readPlistFromString(s1)
print(d2)
assert d1['a'] == d2['a']
print(d2['a'].hex())

$ python2.6 pl.py
<?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>
	<key>a</key>
	<real>0.14999999999999999</real>
</dict>
</plist>

{'a': 0.14999999999999999}
0x1.3333333333333p-3
$ python2.7 pl.py
<?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>
	<key>a</key>
	<real>0.15</real>
</dict>
</plist>

{'a': 0.15}
0x1.3333333333333p-3

Note that the binary representation of the float is the same on both 2.6 and 2.7 in this case anyway.

For more info, see:
http://docs.python.org/py3k/whatsnew/3.1.html#other-language-changes
http://docs.python.org/whatsnew/2.7.html#other-language-changes
History
Date User Action Args
2012-05-24 03:17:01ned.deilysetrecipients: + ned.deily, pvg
2012-05-24 03:17:01ned.deilysetmessageid: <1337829421.17.0.381934208812.issue14896@psf.upfronthosting.co.za>
2012-05-24 03:17:00ned.deilylinkissue14896 messages
2012-05-24 03:17:00ned.deilycreate