Skip to content

Commit f31a440

Browse files
committed
Document update.
1 parent 1d0096b commit f31a440

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ doc-serve: all
99
doc:
1010
cd docs && make zip
1111

12+
upload-doc:
13+
python setup.py upload_docs --upload-dir docs/_build/html
14+
1215
cython:
1316
cython --cplus msgpack/*.pyx
1417

docs/api.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ API reference
2525
.. autoclass:: Unpacker
2626
:members:
2727

28+
.. autoclass:: ExtType
29+
2830
exceptions
2931
-----------
3032

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
#
5050
# The short X.Y version.
5151
# The full version, including alpha/beta/rc tags.
52-
version = release = '0.3'
52+
version = release = '0.4'
5353

5454
# The language for content autogenerated by Sphinx. Refer to documentation
5555
# for a list of supported languages.

msgpack/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77

88
class ExtType(namedtuple('ExtType', 'code data')):
9+
"""ExtType represents ext type in msgpack."""
910
def __new__(cls, code, data):
1011
if not isinstance(code, int):
1112
raise TypeError("code must be int")

0 commit comments

Comments
 (0)