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.21:06:19
SpamBayes Score 0.0028019478
Marked as misclassified No
Message-id <1264453580.98.0.216442015494.issue7779@psf.upfronthosting.co.za>
In-reply-to
Content
It doesn't matter whether \0 or \x00 is used.  They mean the same thing.  Maybe this is the example I should have given:

  >>> list('\0%s' % ('12',))
  ['\x00', '1', '2']
  >>> list('\x00%s' % ('12',))
  ['\x00', '1', '2']
  >>>
History
Date User Action Args
2010-01-25 21:06:21exarkunsetrecipients: + exarkun, surkamp
2010-01-25 21:06:20exarkunsetmessageid: <1264453580.98.0.216442015494.issue7779@psf.upfronthosting.co.za>
2010-01-25 21:06:19exarkunlinkissue7779 messages
2010-01-25 21:06:19exarkuncreate