[pypy-commit] pypy default: fix a missing export_symbol in _multibytecodec module

bdkearns noreply at buildbot.pypy.org
Thu Feb 7 22:40:14 CET 2013


Author: Brian Kearns <bdkearns at gmail.com>
Branch: 
Changeset: r60946:9429071666e6
Date: 2013-02-07 16:39 -0500
http://bitbucket.org/pypy/pypy/changeset/9429071666e6/

Log:	fix a missing export_symbol in _multibytecodec module

diff --git a/pypy/module/_multibytecodec/c_codecs.py b/pypy/module/_multibytecodec/c_codecs.py
--- a/pypy/module/_multibytecodec/c_codecs.py
+++ b/pypy/module/_multibytecodec/c_codecs.py
@@ -62,7 +62,7 @@
         "pypy_cjk_enc_init", "pypy_cjk_enc_free", "pypy_cjk_enc_chunk",
         "pypy_cjk_enc_reset", "pypy_cjk_enc_outbuf", "pypy_cjk_enc_outlen",
         "pypy_cjk_enc_inbuf_remaining", "pypy_cjk_enc_inbuf_consumed",
-        "pypy_cjk_enc_replace_on_error",
+        "pypy_cjk_enc_replace_on_error", "pypy_cjk_enc_getcodec",
     ] + ["pypy_cjkcodec_%s" % codec for codec in codecs],
 )
 


More information about the pypy-commit mailing list