(repl)
| 234 | |
| 235 | @contextmanager |
| 236 | def output_to_repl(repl): |
| 237 | old_out, old_err = sys.stdout, sys.stderr |
| 238 | try: |
| 239 | sys.stdout, sys.stderr = repl.stdout, repl.stderr |
| 240 | yield |
| 241 | finally: |
| 242 | sys.stdout, sys.stderr = old_out, old_err |
| 243 | |
| 244 | |
| 245 | class HigherLevelCurtsiesPaintingTest(CurtsiesPaintingTest): |
no outgoing calls
no test coverage detected