Author: guido.van.rossum Date: Wed May 9 19:38:24 2007 New Revision: 55203
Modified: python/branches/py3k-struni/Lib/encodings/idna.py Log: Fix trivial bug in idna encoding. Modified: python/branches/py3k-struni/Lib/encodings/idna.py ============================================================================== --- python/branches/py3k-struni/Lib/encodings/idna.py (original) +++ python/branches/py3k-struni/Lib/encodings/idna.py Wed May 9 19:38:24 2007 @@ -8,7 +8,6 @@ # IDNA section 5 ace_prefix = "xn--" -uace_prefix = str(ace_prefix, "ascii") # This assumes query strings, so AllowUnassigned is true def nameprep(label): _______________________________________________ Python-3000-checkins mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000-checkins
