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 ajaksu2
Recipients ajaksu2, benjamin.peterson, hagen, loewis
Date 2009-03-07.19:39:47
SpamBayes Score 9.239035e-07
Marked as misclassified No
Message-id <1236454789.72.0.573393364715.issue5425@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2009-03-07 19:39:49ajaksu2setrecipients: + ajaksu2, loewis, benjamin.peterson, hagen
2009-03-07 19:39:49ajaksu2setmessageid: <1236454789.72.0.573393364715.issue5425@psf.upfronthosting.co.za>
2009-03-07 19:39:47ajaksu2linkissue5425 messages
2009-03-07 19:39:47ajaksu2create