(self, include, exclude, **kwargs)
| 481 | self.exclude = exclude |
| 482 | |
| 483 | def _repr_mimebundle_(self, include, exclude, **kwargs): |
| 484 | if include and (include != self.include): |
| 485 | raise ValueError('include got modified: display() may be broken.') |
| 486 | if exclude and (exclude != self.exclude): |
| 487 | raise ValueError('exclude got modified: display() may be broken.') |
| 488 | |
| 489 | return None |
| 490 | |
| 491 | include = {'a', 'b', 'c'} |
| 492 | exclude = {'c', 'e' , 'f'} |
nothing calls this directly
no outgoing calls
no test coverage detected