mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-11-03 19:10:55 +00:00
merge document fix.
This commit is contained in:
commit
d126e0c299
1 changed files with 3 additions and 3 deletions
|
|
@ -79,7 +79,7 @@ cdef class Packer:
|
|||
packer.pack('foo')
|
||||
packer.pack('bar')
|
||||
|
||||
This code is same as below code:
|
||||
This is same to:
|
||||
|
||||
packer.pack(['foo', 'bar'])
|
||||
"""
|
||||
|
|
@ -94,9 +94,9 @@ cdef class Packer:
|
|||
packer.pack('foo')
|
||||
packer.pack('bar')
|
||||
|
||||
This code is same as below code:
|
||||
This is same to:
|
||||
|
||||
packer.pack({'foo', 'bar'})
|
||||
packer.pack({'foo': 'bar'})
|
||||
"""
|
||||
msgpack_pack_map(&self.pk, len)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue