Actions
Bug #13162
closedtr does not recognize multi-byte characters correctly
Bug #13162:
tr does not recognize multi-byte characters correctly
Description
This looks as expected:
"\\".tr('\\', '\') # => "\"
but this doesn't:
"\\".tr("\\¥'", "\¥'") # => "\\"
I confirmed the strings are UTF-8.
Actions