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.
2 parents ac0e3eb + 88ec399 commit 513df73Copy full SHA for 513df73
neovim/msgpack_rpc/msgpack_stream.py
@@ -20,8 +20,7 @@ class MsgpackStream(object):
20
def __init__(self, event_loop):
21
"""Wrap `event_loop` on a msgpack-aware interface."""
22
self.loop = event_loop
23
- self._packer = Packer(encoding='utf-8',
24
- unicode_errors=unicode_errors_default)
+ self._packer = Packer(unicode_errors=unicode_errors_default)
25
self._unpacker = Unpacker()
26
self._message_cb = None
27
setup.cfg
@@ -1,2 +1,7 @@
1
[flake8]
2
ignore = D211,E731,D401
3
+
4
+[tool:pytest]
5
+filterwarnings =
6
+ once::DeprecationWarning
7
+ once::PendingDeprecationWarning
0 commit comments