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 belopolsky
Recipients belopolsky, doerwalter, loewis, pitrou
Date 2010-12-30.00:48:09
SpamBayes Score 1.6166097e-06
Marked as misclassified No
Message-id <1293670091.32.0.0858293111214.issue3232@psf.upfronthosting.co.za>
In-reply-to
Content
Martin's original code (r32301) was pretty clear:

 32301     loewis         # IDNA allows decoding to operate on Unicode strings, too.
 32301     loewis         if isinstance(input, unicode):
 32301     loewis             labels = dots.split(input)
 32301     loewis         else:
 32301     loewis             # Must be ASCII string
 32301     loewis             unicode(input, "ascii")
 32301     loewis             labels = input.split(".")

but the py3k port, r55215, was clearly incomplete and the log message is explicit about it:


r55215 | guido.van.rossum | 2007-05-09 19:40:37 -0400 (Wed, 09 May 2007) | 3 lines

Random modifications that slightly improve the chances of this not blowing up.
Walter will fix it for real.

I hope I picked the right Walter for the "nosy" list.
History
Date User Action Args
2010-12-30 00:48:11belopolskysetrecipients: + belopolsky, loewis, doerwalter, pitrou
2010-12-30 00:48:11belopolskysetmessageid: <1293670091.32.0.0858293111214.issue3232@psf.upfronthosting.co.za>
2010-12-30 00:48:10belopolskylinkissue3232 messages
2010-12-30 00:48:09belopolskycreate