homepage

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 umedoblock
Recipients umedoblock
Date 2012年08月14日.05:03:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1344920611.47.0.245957417255.issue15644@psf.upfronthosting.co.za>
In-reply-to
Content
import io
_bytesio = io.BytesIO()
_bytesio.write(b'abc')
_bytesio.write(b'def')
_bytesio.seek(0)
_bytesio.write(b'xyz')
print(_bytesio.read(2))
print(_bytesio.read(2))
print(_bytesio.getvalue())
# output
b'de'
b'f'
b'xyzdef'
# where is the b'abc' ?
History
Date User Action Args
2012年08月14日 05:03:31umedoblocksetrecipients: + umedoblock
2012年08月14日 05:03:31umedoblocksetmessageid: <1344920611.47.0.245957417255.issue15644@psf.upfronthosting.co.za>
2012年08月14日 05:03:30umedoblocklinkissue15644 messages
2012年08月14日 05:03:30umedoblockcreate

AltStyle によって変換されたページ (->オリジナル) /