New issue 2866: [3.6] wrong exception while callinstr str on str
https://bitbucket.org/pypy/pypy/issues/2866/36-wrong-exception-while-callinstr-str-on

squeaky:

CPython 3.6

```
>>> str('text', 'text')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: decoding str is not supported
>>> 
```

PyPy nightly 3.6
```
>>>> str('text', 'text')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
LookupError: unknown encoding: text
>>>> 
```


_______________________________________________
pypy-issue mailing list
pypy-issue@python.org
https://mail.python.org/mailman/listinfo/pypy-issue

Reply via email to