Returns a representation of this call to be printed by the engine in logging. :rtype: str
(self)
| 194 | return f"<Call owner_token={self.owner_token} token={self.token}>" |
| 195 | |
| 196 | def to_string(self): |
| 197 | """ |
| 198 | Returns a representation of this call to be printed by the engine |
| 199 | in logging. |
| 200 | :rtype: str |
| 201 | """ |
| 202 | if self.owner_token: |
| 203 | return f"{self.owner_token}.{self.token}()" |
| 204 | return f"{self.token}()" |
| 205 | |
| 206 | def is_attr(self): |
| 207 | """ |