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 exarkun
Recipients exarkun, surkamp
Date 2010-01-25.20:55:07
SpamBayes Score 0.073380336
Marked as misclassified No
Message-id <1264452909.55.0.458998133044.issue7779@psf.upfronthosting.co.za>
In-reply-to
Content
There's no bug here.  You've misunderstood how the literal \0 syntax works.  Perhaps this will clarify things:

  >>> list('\0123')
  ['\n', '3']
  >>> list('\x00123')
  ['\x00', '1', '2', '3']
  >>>
History
Date User Action Args
2010-01-25 20:55:09exarkunsetrecipients: + exarkun, surkamp
2010-01-25 20:55:09exarkunsetmessageid: <1264452909.55.0.458998133044.issue7779@psf.upfronthosting.co.za>
2010-01-25 20:55:08exarkunlinkissue7779 messages
2010-01-25 20:55:07exarkuncreate