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 arigo
Recipients arigo, pitrou, rhettinger, serhiy.storchaka
Date 2013-01-17.17:39:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1358444372.26.0.671906847512.issue16273@psf.upfronthosting.co.za>
In-reply-to
Content
FWIW, on Windows only, "open('foo', 'a').tell()" always returns 0, which I think is broken too.  It usually works anyway, because it updates the position before the first .write().  But it does not work in case the writing occurs in another process, like described here:

http://stackoverflow.com/questions/13821708/

(Tested only on Python 2.6.2, but according to the link above, Python 2.7.3 has the same problem.)
History
Date User Action Args
2013-01-17 17:39:32arigosetrecipients: + arigo, rhettinger, pitrou, serhiy.storchaka
2013-01-17 17:39:32arigosetmessageid: <1358444372.26.0.671906847512.issue16273@psf.upfronthosting.co.za>
2013-01-17 17:39:32arigolinkissue16273 messages
2013-01-17 17:39:31arigocreate