(self)
| 109 | return result |
| 110 | |
| 111 | def test_issue108(self): |
| 112 | input = textwrap.dedent( |
| 113 | """\ |
| 114 | def spam(): |
| 115 | u"y\\xe4y" |
| 116 | \b |
| 117 | spam(""" |
| 118 | ) |
| 119 | deferred = self.run_bpython(input) |
| 120 | return deferred.addCallback(self.check_no_traceback) |
| 121 | |
| 122 | def test_issue133(self): |
| 123 | input = textwrap.dedent( |
nothing calls this directly
no test coverage detected