Class Interaction
An arbitrary interaction between any number of species.
This class definition is inteded solely as a minimal wrapper interface
that should be implemented and extended by more specific
abstractions.
Attributes:
data -- reference to arbitrary additional data
Method Summary |
|
__hash__ (self)
Returns a hashcode for self. |
|
__init_(self,
data)
|
|
__repr__ (self)
Returns a debugging string representation of self. |
|
__str__ (self)
Returns a string representation of self. |
__hash__(self)
(Hashing function)
Returns a hashcode for self.
-
|
__repr__(self)
(Representation operator)
Returns a debugging string representation of self.
-
|
__str__(self)
(Informal representation operator)
Returns a string representation of self.
-
|