Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit af6159a

Browse files
committed
Merge branch 'hotfix/0.4.2'
2 parents dce7a88 + 0d5382a commit af6159a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

doc/source/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,16 @@
4545

4646
# General information about the project.
4747
project = u'pyWCFBin'
48-
copyright = u'2011, Timo Schmid'
48+
copyright = u'2014, Timo Schmid'
4949

5050
# The version info for the project you're documenting, acts as replacement for
5151
# |version| and |release|, also used in various other places throughout the
5252
# built documents.
5353
#
5454
# The short X.Y version.
55-
version = '0.4.1'
55+
version = '0.4.2'
5656
# The full version, including alpha/beta/rc tags.
57-
release = '0.4.1'
57+
release = '0.4.2'
5858

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name = "wcf-binary parser",
6-
version = "0.4.1",
6+
version = "0.4.2",
77
author = "Timo Schmid",
88
author_email = "[email protected]",
99
description = ("A library for transforming wcf-binary data from and to xml"),

wcf/datatypes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ def parse(cls, fp):
194194
high = struct.unpack('<I', fp.read(4))[0]
195195
low = struct.unpack('<Q', fp.read(8))[0]
196196

197-
return cls(sign, scale, high, low)
197+
return cls(sign, high, low, scale)
198198

199199

200200
if __name__ == '__main__':

0 commit comments

Comments
 (0)