[Python-checkins] python/dist/src/Lib sre.py,1.45,1.46 sre_compile.py,1.47,1.48

Walter Dörwald walter@livinglogic.de
Wed, 02 Jul 2003 22:10:14 +0200


jvr@users.sourceforge.net wrote:

> !     STRING_TYPES = (type(""), type(unicode("")))

Is there a reason why this isn't:

     STRING_TYPES = (str, unicode)

Bye,
    Walter Dörwald