We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80428b1 commit 6fc0343Copy full SHA for 6fc0343
neovim/msgpack_rpc/msgpack_stream.py
@@ -20,7 +20,8 @@ class MsgpackStream(object):
20
def __init__(self, event_loop):
21
"""Wrap `event_loop` on a msgpack-aware interface."""
22
self._event_loop = event_loop
23
- self._packer = Packer(unicode_errors=unicode_errors_default)
+ self._packer = Packer(encoding='utf-8',
24
+ unicode_errors=unicode_errors_default)
25
self._unpacker = Unpacker()
26
self._message_cb = None
27
0 commit comments