Author: Ronan Lamy <ronan.l...@gmail.com>
Branch: py3.5
Changeset: r94592:2c3be745bc08
Date: 2018-05-14 22:47 +0100
http://bitbucket.org/pypy/pypy/changeset/2c3be745bc08/

Log:    The py3k_ variants have been replaced by unicodehandler functions

diff --git a/pypy/module/_codecs/interp_codecs.py 
b/pypy/module/_codecs/interp_codecs.py
--- a/pypy/module/_codecs/interp_codecs.py
+++ b/pypy/module/_codecs/interp_codecs.py
@@ -621,8 +621,6 @@
     try:
         func = getattr(unicodehelper, impl_name)
     except AttributeError:
-        if hasattr(runicode, 'py3k_' + impl_name):
-            impl_name = 'py3k_' + impl_name
         func = getattr(runicode, impl_name)
     return func
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to