[pypy-commit] pypy py3.5: fix

arigo pypy.commits at gmail.com
Tue Jan 10 02:43:24 EST 2017


Author: Armin Rigo <arigo at tunes.org>
Branch: py3.5
Changeset: r89461:ecb699d457d3
Date: 2017-01-10 08:42 +0100
http://bitbucket.org/pypy/pypy/changeset/ecb699d457d3/

Log:	fix

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_1_0'       : 'space.wrap(interp_ucd.ucd_6_1_0)',
+        'ucd_8_0_0'       : 'space.wrap(interp_ucd.ucd_8_0_0)',
         'ucd'             : 'space.wrap(interp_ucd.ucd)',
         '__doc__'         : "space.wrap('unicode character database')",
     }


More information about the pypy-commit mailing list