merge document fix.

This commit is contained in:
Naoki INADA 2009-06-22 14:55:46 +09:00
commit 9a77ab57f6

View File

@ -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)