diff options
author | 2019-02-13 10:24:22 +0200 | |
---|---|---|
committer | 2019-02-13 10:24:22 +0200 | |
commit | b9e167cba4ab236f2f6a4f5f464bece9bf5f7ee2 (patch) | |
tree | 013338180b28a1d22e884638c917f80eb480b042 /TODO | |
parent | minimize rpython difference to unicode-utf8 (diff) | |
download | pypy-b9e167cba4ab236f2f6a4f5f464bece9bf5f7ee2.tar.gz pypy-b9e167cba4ab236f2f6a4f5f464bece9bf5f7ee2.tar.bz2 pypy-b9e167cba4ab236f2f6a4f5f464bece9bf5f7ee2.zip |
update TODO
Diffstat (limited to 'TODO')
-rw-r--r-- | TODO | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -4,17 +4,16 @@ * think about cost of utf8 list strategy (CF) * revisit why runicode import str_decode_utf_8_impl needed instead of runicode import str_decode_utf_8 -* revisit all places where we do utf8.decode('utf-8'), they should work +* revisit remaining places in win32 where we do utf8.decode('utf-8'), they should work directly with utf8 (can be converted via runicode.str_decode_utf_8 as well) - rutf8.utf8_encode_mbcs - unicodehelper.fsencode - _winreg.interp_winreg * remove 'assert not isinstance(*, unicode) * add a flag that prevents support for unicode in rpython and enable it in PyPy (CF, Armin) -* remove asserts from _WIN32 paths in rlib.rposix.re{name,place} * convert all realunicode_w to unicode_w after we flush out all old uses of unicode_w -* view all uses of W_Unicode.text_w, right now it is exactly W_Unicode.utf8_w. +* review all uses of W_Unicode.text_w, right now it is exactly W_Unicode.utf8_w. It shoud only return valid utf8 (see 0be26dc39a59 which broke translation on win32 and failed tests on linux64). Then we can use it in places like _socket.interp_func.getaddrinfo instead of space.encode_unicode_object(w_port, |