Author: Philip Jenvey <[email protected]>
Branch: py3.3
Changeset: r72137:7903d6671cda
Date: 2014-06-22 11:35 -0700
http://bitbucket.org/pypy/pypy/changeset/7903d6671cda/

Log:    fix (though unicodedata.ucd_<current_ver> doesn't exist on cpython
        anyway)

diff --git a/pypy/module/unicodedata/__init__.py 
b/pypy/module/unicodedata/__init__.py
--- a/pypy/module/unicodedata/__init__.py
+++ b/pypy/module/unicodedata/__init__.py
@@ -14,7 +14,7 @@
     interpleveldefs = {
         'unidata_version' : 'space.wrap(interp_ucd.ucd.version)',
         'ucd_3_2_0'       : 'space.wrap(interp_ucd.ucd_3_2_0)',
-        'ucd_6_0_0'       : 'space.wrap(interp_ucd.ucd_6_2_0)',
+        'ucd_6_2_0'       : 'space.wrap(interp_ucd.ucd_6_2_0)',
         'ucd'             : 'space.wrap(interp_ucd.ucd)',
         '__doc__'         : "space.wrap('unicode character database')",
     }
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to