[issue1687] plistlib.py restricts integer to Python int when writing

2008-01-19 Thread Georg Brandl

Georg Brandl added the comment:

Backported in r60098.

--
nosy: +georg.brandl
resolution: remind - fixed
status: pending - closed

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1687
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1687] plistlib.py restricts integer to Python int when writing

2008-01-04 Thread lafcadio

lafcadio added the comment:

tiran wrote:
 Should it be backported to 2.5?

I'm sure to understand what 'backport' means. Of course it would be nice
if in future 2.5 versions the read data could be written. But for me its
not important.

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1687
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1687] plistlib.py restricts integer to Python int when writing

2008-01-04 Thread Christian Heimes

Changes by Christian Heimes:


--
priority:  - normal
resolution: fixed - remind
versions:  -Python 2.6, Python 3.0

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1687
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1687] plistlib.py restricts integer to Python int when writing

2008-01-03 Thread Christian Heimes

Christian Heimes added the comment:

Fixed in trunk r59688

Should it be backported to 2.5?

--
nosy: +tiran
resolution:  - fixed
status: open - pending
versions: +Python 2.6, Python 3.0 -Python 2.3, Python 2.4

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1687
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1687] plistlib.py restricts integer to Python int when writing

2007-12-22 Thread lafcadio

New submission from lafcadio:

In PlistWriter.writeValue() the line 
  elif isinstance(value, int):
should be changed to
  elif isinstance(value, int) or isinstance(value, long):
since in http://www.apple.com/DTDs/PropertyList-1.0.dtd is no limitation
to signed 32-bit integer.

It occured an error when I tried to write an iTunes Music Library.xml
for the line keyPlay Date/keyinteger3221924209/integer.

--
components: Demos and Tools, Macintosh, XML
messages: 58963
nosy: lafcadio
severity: normal
status: open
title: plistlib.py restricts integer to Python int when writing
type: behavior
versions: Python 2.3, Python 2.4, Python 2.5

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1687
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com