(self, value)
| 838 | ostream.flush() |
| 839 | |
| 840 | def _some_str(self, value): |
| 841 | # Lifted from traceback.py |
| 842 | try: |
| 843 | return py3compat.cast_unicode(str(value)) |
| 844 | except: |
| 845 | return u'<unprintable %s object>' % type(value).__name__ |
| 846 | |
| 847 | |
| 848 | #---------------------------------------------------------------------------- |
no outgoing calls
no test coverage detected