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 benjamin.peterson
Recipients benjamin.peterson, theller
Date 2010-04-03.16:57:47
SpamBayes Score 0.010394168
Marked as misclassified No
Message-id <1270313868.4.0.365365163519.issue8306@psf.upfronthosting.co.za>
In-reply-to
Content
These coercions shouldn't be allowed:

import ctypes
>>> buf = ctypes.create_string_buffer("hi")
>>> buf.value
b'hi'
>>> buf.value = "23"
>>> buf.value
b'23'
History
Date User Action Args
2010-04-03 16:57:48benjamin.petersonsetrecipients: + benjamin.peterson, theller
2010-04-03 16:57:48benjamin.petersonsetmessageid: <1270313868.4.0.365365163519.issue8306@psf.upfronthosting.co.za>
2010-04-03 16:57:47benjamin.petersonlinkissue8306 messages
2010-04-03 16:57:47benjamin.petersoncreate