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 rexperience7
Recipients rexperience7
Date 2014-03-20.04:52:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1395291138.56.0.807224188986.issue20989@psf.upfronthosting.co.za>
In-reply-to
Content
I found a misbehavior when reading and writing XML File by open() with 'r+' flag, some strings will be overlapped at the end of the file. 

you can demonstrate it like below:

f = open(file, "r+")
c = f.read()

# todo: write something to do

f.write(c)
f.close()

Actually I'm not sure if it's bug or not however it might be.
History
Date User Action Args
2014-03-20 04:52:18rexperience7setrecipients: + rexperience7
2014-03-20 04:52:18rexperience7setmessageid: <1395291138.56.0.807224188986.issue20989@psf.upfronthosting.co.za>
2014-03-20 04:52:18rexperience7linkissue20989 messages
2014-03-20 04:52:18rexperience7create