pypy/objspace/std/test/test_unicodeobject.py::AppTestUnicodeString::()::test_partition_str_unicode
self = <pypy.interpreter.typedef.W_ObjectObjectUserDictWeakrefable object at 0x00000000708d77c0>
def test_partition_str_unicode(self):
x = 'abbbd'.rpartition(u'bb')
assert x == (u'ab', u'bb', u'd')
> assert map(type, x) == [unicode, unicode, unicode]
E (application-level) NameError: name 'unicode' is not defined
[/buildbot/slave/own-linux-aarch64/build/pypy/objspace/std/test/test_unicodeobject.py:275]:4: NameError
builder: own-linux-aarch64 build #2821+
test: pypy/objspace/std/test/test_unicodeobject.py::AppTestUnicodeString::()::test_partition_str_unicode