(self, value: Any)
| 470 | ostream.flush() |
| 471 | |
| 472 | def _some_str(self, value: Any) -> str: |
| 473 | # Lifted from traceback.py |
| 474 | try: |
| 475 | return str(value) |
| 476 | except: |
| 477 | return "<unprintable %s object>" % type(value).__name__ |
| 478 | |
| 479 | |
| 480 | _sentinel = object() |
no outgoing calls
no test coverage detected