(self)
| 298 | self.shell_futures = shell_futures |
| 299 | |
| 300 | def __repr__(self): |
| 301 | name = self.__class__.__qualname__ |
| 302 | raw_cell = ((self.raw_cell[:50] + '..') |
| 303 | if len(self.raw_cell) > 50 else self.raw_cell) |
| 304 | return '<%s object at %x, raw_cell="%s" store_history=%s silent=%s shell_futures=%s>' %\ |
| 305 | (name, id(self), raw_cell, self.store_history, self.silent, self.shell_futures) |
| 306 | |
| 307 | |
| 308 | class ExecutionResult(object): |
nothing calls this directly
no outgoing calls
no test coverage detected