diff options
author | INADA Naoki <inada-n@klab.com> | 2013-10-21 01:47:54 +0900 |
---|---|---|
committer | INADA Naoki <inada-n@klab.com> | 2013-10-21 01:47:54 +0900 |
commit | f31a4403a1715ea5b48a12e1aa58df0e74b7e85f (patch) | |
tree | ec7a77f177acba976bdeacc7573a8fe13223cabb /msgpack | |
parent | 1d0096b998abca1276b88ae6960316f8cff273b9 (diff) | |
download | msgpack-python-f31a4403a1715ea5b48a12e1aa58df0e74b7e85f.tar.gz |
Document update.
Diffstat (limited to 'msgpack')
-rw-r--r-- | msgpack/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/msgpack/__init__.py b/msgpack/__init__.py index a958025..6c5ae53 100644 --- a/msgpack/__init__.py +++ b/msgpack/__init__.py @@ -6,6 +6,7 @@ from collections import namedtuple class ExtType(namedtuple('ExtType', 'code data')): + """ExtType represents ext type in msgpack.""" def __new__(cls, code, data): if not isinstance(code, int): raise TypeError("code must be int") |