The following test fails: ``` from future.builtins import str b1 = b'\xcd\xeb\xff' s1 = str(b1, 'cp1251') assert s1 == u'Нля' ```
The following test fails: