oshippy-dev team mailing list archive
-
oshippy-dev team
-
Mailing list archive
-
Message #00071
[Bug 610507] Re: some issues in ReferenceRange
** Project changed: oship => oshippy
** Changed in: oshippy
Milestone: 1.5 => None
--
You received this bug notification because you are a member of OSHIPpy
Developers, which is subscribed to OSHIPpy.
https://bugs.launchpad.net/bugs/610507
Title:
some issues in ReferenceRange
Status in Open Source Health Information Platform - Python:
New
Bug description:
Class ReferenceRange does not inherit from DvOrdered.
It seems that is not necessary to test for the types of the arguments in its initializer. Since it does not inherit from DvOrdered, it should not call the superclass initializer.
This invariant is not implemented:
Range_is_simple: (range.lower_unbounded or else range.lower.is_simple) and
(range.upper_unbounded or else range.upper.is_simple)
Wouldn't it be interesting to implement a representation method for
this class?