Daniel Diniz <[email protected]> added the comment: I think Hagen's initial analysis makes more sense: the translation is currently guessing that the user meant the more restrict (text) alternative.
IMHO it doesn't make much sense to have this: >>> strings = (types.StringType, types.UnicodeType) >>> strings == types.StringTypes True Translated to this: strings = (bytes, str) strings == str ---------- nosy: +ajaksu2 _______________________________________ Python tracker <[email protected]> <http://bugs.python.org/issue5425> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
