Return representation of the referent (or a fall-back if that fails)
(self)
| 929 | (type(self).__name__, self._token.typeid, id(self)) |
| 930 | |
| 931 | def __str__(self): |
| 932 | ''' |
| 933 | Return representation of the referent (or a fall-back if that fails) |
| 934 | ''' |
| 935 | try: |
| 936 | return self._callmethod('__repr__') |
| 937 | except Exception: |
| 938 | return repr(self)[:-1] + "; '__str__()' failed>" |
| 939 | |
| 940 | # |
| 941 | # Function used for unpickling |
nothing calls this directly
no test coverage detected