Comment out incomplete code.

This commit is contained in:
Robert Smallshire
2015-03-13 12:39:56 +01:00
parent b4b0fe5d92
commit 8a5c2997b9
+5 -4
View File
@@ -316,10 +316,11 @@ class IBMFloat(Real):
def __eq__(self, rhs):
if not isinstance(rhs, IBMFloat):
nlhs = self.normalize() if self.is_subnormal() else self
nrhs = rhs.normalize()
if
# TODO: Consider forcing normalisation
pass
# nlhs = self.normalize() if self.is_subnormal() else self
# nrhs = rhs.normalize()
# if
# # TODO: Consider forcing normalisation
return self._data == rhs._data
def __floordiv__(self, rhs):