mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-10-15 23:20:08 +02:00
merge document fix.
This commit is contained in:
@@ -79,7 +79,7 @@ cdef class Packer:
|
|||||||
packer.pack('foo')
|
packer.pack('foo')
|
||||||
packer.pack('bar')
|
packer.pack('bar')
|
||||||
|
|
||||||
This code is same as below code:
|
This is same to:
|
||||||
|
|
||||||
packer.pack(['foo', 'bar'])
|
packer.pack(['foo', 'bar'])
|
||||||
"""
|
"""
|
||||||
@@ -94,9 +94,9 @@ cdef class Packer:
|
|||||||
packer.pack('foo')
|
packer.pack('foo')
|
||||||
packer.pack('bar')
|
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)
|
msgpack_pack_map(&self.pk, len)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user