Skip to content

Commit

Permalink
xs:double
Browse files Browse the repository at this point in the history
  • Loading branch information
baverman committed Mar 29, 2012
1 parent aed12e0 commit 8250a92
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion dropthesoap/schema/xs.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,14 +389,18 @@ def to_python(value):
return _int(value)


class float_(_FinalSimpleType):
class float(_FinalSimpleType):
namespace = namespace

@staticmethod
def to_python(value):
return _float(value)


class double(float):
namespace = namespace


class anyType(Type):
@staticmethod
def init(instance, value):
Expand Down

0 comments on commit 8250a92

Please sign in to comment.