[Python-Dev] Deprecation warnings in Python 2.7 (original) (raw)
Florent Xicluna florent.xicluna at gmail.com
Wed Mar 3 12:00:05 CET 2010
- Previous message: [Python-Dev] Deprecation warnings in Python 2.7
- Next message: [Python-Dev] Caching function pointers in type objects
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
2010/3/3 Florent Xicluna <florent.xicluna at gmail.com>:
u'\xff' == bytearray('\xff') # It should raise an error because of '-bb' main:1: BytesWarning: Comparison between bytearray and string False u'\xff' == '\xff' main:1: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal False
I see that the BytesWarning (and -b option) is a 3.x feature. I don't see the reason to keep it in 2.x, though....
On the other side, UnicodeWarning is unused in 3.x, why we keep it around? We may phase it out in 3.2?
-- Florent
- Previous message: [Python-Dev] Deprecation warnings in Python 2.7
- Next message: [Python-Dev] Caching function pointers in type objects
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]