File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed
Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 3838
3939# ------------------------------------------------------------------------------
4040
41+ # Module version
42+ __version_info__ = (0 , 3 , 0 )
43+ __version__ = "." .join (str (x ) for x in __version_info__ )
44+
4145# Documentation strings format
4246__docformat__ = "restructuredtext en"
Original file line number Diff line number Diff line change 1313"""
1414
1515
16- NAME = "mutf8" # not cesu-8, which uses a different zero-byte
16+ # Module version
17+ __version_info__ = (0 , 3 , 0 )
18+ __version__ = "." .join (str (x ) for x in __version_info__ )
19+
20+ # Documentation strings format
21+ __docformat__ = "restructuredtext en"
22+
23+ # Encoding name: not cesu-8, which uses a different zero-byte
24+ NAME = "mutf8"
25+
26+ # ------------------------------------------------------------------------------
1727
1828
1929class DecodeMap (object ):
You can’t perform that action at this time.
0 commit comments