Skip to content

Commit

Permalink
fix py:meth reference target not found
Browse files Browse the repository at this point in the history
msgpack.fallback.Unpacker:6: WARNING: py:meth reference target not found: feed
  • Loading branch information
ThomasWaldmann committed Aug 26, 2023
1 parent f894c0e commit 61a8a7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion msgpack/_unpacker.pyx
Expand Up @@ -217,7 +217,7 @@ cdef class Unpacker(object):
:param file_like:
File-like object having `.read(n)` method.
If specified, unpacker reads serialized data from it and :meth:`feed()` is not usable.
If specified, unpacker reads serialized data from it and :meth:`msgpack.Unpacker.feed()` is not usable.
:param int read_size:
Used as `file_like.read(read_size)`. (default: `min(16*1024, max_buffer_size)`)
Expand Down
2 changes: 1 addition & 1 deletion msgpack/fallback.py
Expand Up @@ -139,7 +139,7 @@ class Unpacker:
:param file_like:
File-like object having `.read(n)` method.
If specified, unpacker reads serialized data from it and :meth:`feed()` is not usable.
If specified, unpacker reads serialized data from it and :meth:`msgpack.fallback.Unpacker.feed()` is not usable.
:param int read_size:
Used as `file_like.read(read_size)`. (default: `min(16*1024, max_buffer_size)`)
Expand Down

0 comments on commit 61a8a7b

Please sign in to comment.