Return some info about the servers shared objects and connections
(self)
| 624 | self._process = None |
| 625 | |
| 626 | def _debug_info(self): |
| 627 | ''' |
| 628 | Return some info about the servers shared objects and connections |
| 629 | ''' |
| 630 | conn = self._Client(self._address, authkey=self._authkey) |
| 631 | try: |
| 632 | return dispatch(conn, None, 'debug_info') |
| 633 | finally: |
| 634 | conn.close() |
| 635 | |
| 636 | def _number_of_objects(self): |
| 637 | ''' |