Author: fijal
Branch: unicode-utf8
Changeset: r92608:fd73eab7bc5a
Date: 2017-10-05 13:55 +0200
http://bitbucket.org/pypy/pypy/changeset/fd73eab7bc5a/

Log:    more of the same

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
@@ -626,7 +626,7 @@
 @unwrap_spec(utf8='utf8', errors='text_or_none')
 def charmap_encode(space, utf8, errors="strict", w_mapping=None):
     from pypy.interpreter.unicodehelper import EncodeWrapper
-    XXXXX
+    raise Exception("foo")
 
     if errors is None:
         errors = 'strict'
@@ -646,6 +646,7 @@
 @unwrap_spec(chars='utf8')
 def charmap_build(space, chars):
     # XXX CPython sometimes uses a three-level trie
+    raise Exception("foo")
     XXXXXX
     w_charmap = space.newdict()
     pos = 0
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to