More informative string representation
( self )
| 1481 | return ip |
| 1482 | |
| 1483 | def __repr__( self ): |
| 1484 | "More informative string representation" |
| 1485 | return '<%s %s: %s:%s pid=%s> ' % ( |
| 1486 | self.__class__.__name__, self.name, |
| 1487 | self.IP(), self.port, self.pid ) |
| 1488 | |
| 1489 | @classmethod |
| 1490 | def isAvailable( cls ): |