Commit 0cc53fdd authored by Kirill Smelkov's avatar Kirill Smelkov

fixup! golang_str_pickle: Fix it so that py3 can load what py2 saved and back

Fix typo made in 1ec5ed82: in one place the comment was saying we are
doing bstr(BINUNICODE) while in the pickle stream it was ustr() call.
parent 5aa1de72
......@@ -139,7 +139,7 @@ def test_strings_pickle_bstr_ustr(pickle):
# NOTE BINUNICODE ...edb3bf not ...ff (see test_strings_pickle_loadsave_UNICODE for details)
_(us, 1,
b'cgolang\nustr\n(X\x09\x00\x00\x00' # bstr(BINUNICODE)
b'cgolang\nustr\n(X\x09\x00\x00\x00' # ustr(BINUNICODE)
b'\xd0\xbc\xd0\xb0\xd0\xb9\xed\xb3\xbftR.')
_(bs, 2,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment