File tree Expand file tree Collapse file tree 4 files changed +7
-1
lines changed
Expand file tree Collapse file tree 4 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ doc-serve: all
99doc :
1010 cd docs && make zip
1111
12+ upload-doc :
13+ python setup.py upload_docs --upload-dir docs/_build/html
14+
1215cython :
1316 cython --cplus msgpack/* .pyx
1417
Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ API reference
2525.. autoclass :: Unpacker
2626 :members:
2727
28+ .. autoclass :: ExtType
29+
2830exceptions
2931-----------
3032
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 66
77
88class 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" )
You can’t perform that action at this time.
0 commit comments