def has_real_attributes(self):
     return Attributes.hasRealAttributes(self)
 def has_numerical_attributes(self):
     return Attributes.hasIntegerAttributes(
         self) or Attributes.hasRealAttributes(self)
 def hasNumericalAttributes(self):
     return (Attributes.hasIntegerAttributes(self)
             or Attributes.hasRealAttributes(self))