Author: Matti Picus <[email protected]>
Branch:
Changeset: r95257:e32a30711384
Date: 2018-10-27 22:34 +0300
http://bitbucket.org/pypy/pypy/changeset/e32a30711384/
Log: fix translation
diff --git a/pypy/module/thread/os_lock.py b/pypy/module/thread/os_lock.py
--- a/pypy/module/thread/os_lock.py
+++ b/pypy/module/thread/os_lock.py
@@ -195,7 +195,7 @@
w_owner = space.getitem(self.w_active,
space.newint(self.rlock_owner))
w_name = space.getattr(w_owner, space.newtext('name'))
- owner = space.str_w(space.repr(w_name))
+ owner = space.text_w(space.repr(w_name))
except OperationError as e:
if e.async(space):
raise
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit