Skip to content

Commit

Permalink
fix py:meth reference target not found, try 4
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasWaldmann committed Aug 26, 2023
1 parent 90841b6 commit 84a9a12
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 `.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 `.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 84a9a12

Please sign in to comment.