Author: Armin Rigo <[email protected]>
Branch: py3.6
Changeset: r97776:3c57a384aae3
Date: 2019-10-14 12:04 +0200
http://bitbucket.org/pypy/pypy/changeset/3c57a384aae3/

Log:    the merge of 'fix-descrmismatch-crash' into 'py3.6' will need this
        line, not 'str'

diff --git a/pypy/objspace/std/bytesobject.py b/pypy/objspace/std/bytesobject.py
--- a/pypy/objspace/std/bytesobject.py
+++ b/pypy/objspace/std/bytesobject.py
@@ -19,6 +19,7 @@
 
 class W_AbstractBytesObject(W_Root):
     __slots__ = ()
+    exact_class_applevel_name = 'bytes'
 
     def is_w(self, space, w_other):
         if not isinstance(w_other, W_AbstractBytesObject):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to