diff options
author | Naoki INADA <inada-n@gear> | 2009-06-10 10:58:09 +0900 |
---|---|---|
committer | Naoki INADA <inada-n@gear> | 2009-06-10 10:58:09 +0900 |
commit | 3a9f74e79c3d1912d8c0c1ad4d1478c611caba0a (patch) | |
tree | 8eabf1d2851642f3a7a9a7456ffebbc4827e0666 /python/msgpack/__init__.py | |
parent | a1fb1507d45d27f0c08e8d39054987ed6dcaf9e7 (diff) | |
download | msgpack-python-3a9f74e79c3d1912d8c0c1ad4d1478c611caba0a.tar.gz |
Make msgpack package instead of module.
Diffstat (limited to 'python/msgpack/__init__.py')
-rw-r--r-- | python/msgpack/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/msgpack/__init__.py b/python/msgpack/__init__.py new file mode 100644 index 0000000..797b29c --- /dev/null +++ b/python/msgpack/__init__.py @@ -0,0 +1,3 @@ +# coding: utf-8 +from _msgpack import * + |