diff options
author | Naoki INADA <inada-n@eagle> | 2009-06-22 14:55:46 +0900 |
---|---|---|
committer | Naoki INADA <inada-n@eagle> | 2009-06-22 14:55:46 +0900 |
commit | 9a77ab57f6ffea1cf802f71736ebb5ff847db986 (patch) | |
tree | 519f2cb97717b350ba68896d7e7099390c9ce3d8 /python/msgpack | |
parent | 20a7ff0be80a1467f7375adc1b0645d2d8f2cf05 (diff) | |
parent | e814986b4ec017ab124dcf16496a6fefa65a9876 (diff) | |
download | msgpack-python-9a77ab57f6ffea1cf802f71736ebb5ff847db986.tar.gz |
merge document fix.
Diffstat (limited to 'python/msgpack')
-rw-r--r-- | python/msgpack/_msgpack.pyx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/msgpack/_msgpack.pyx b/python/msgpack/_msgpack.pyx index aa4006b..cbdcfc5 100644 --- a/python/msgpack/_msgpack.pyx +++ b/python/msgpack/_msgpack.pyx @@ -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) |