(self, raw_cell, store_history, silent, shell_futures)
| 292 | shell_futures = True |
| 293 | |
| 294 | def __init__(self, raw_cell, store_history, silent, shell_futures): |
| 295 | self.raw_cell = raw_cell |
| 296 | self.store_history = store_history |
| 297 | self.silent = silent |
| 298 | self.shell_futures = shell_futures |
| 299 | |
| 300 | def __repr__(self): |
| 301 | name = self.__class__.__qualname__ |