Issue 16738: Comparisons difference: bytes with bytes, str with str (original) (raw)
Python 3.3.0 (v3.3.0:bd8afb90ebf2, Sep 29 2012, 10:55:48) [MSC v.1600 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information.
b = b't' b[0] in [b] False u = 't' u[0] in [u] True