From f31a4403a1715ea5b48a12e1aa58df0e74b7e85f Mon Sep 17 00:00:00 2001 From: INADA Naoki Date: Mon, 21 Oct 2013 01:47:54 +0900 Subject: Document update. --- msgpack/__init__.py | 1 + 1 file changed, 1 insertion(+) (limited to 'msgpack') 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") -- cgit v1.2.1