[issue7779] smtplib SASL PLAIN authentication error

Jean-Paul Calderone report at bugs.python.org
Mon Jan 25 22:06:20 CET 2010


Jean-Paul Calderone <exarkun at divmod.com> added the comment:

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']
  >>>

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue7779>
_______________________________________


More information about the Python-bugs-list mailing list