(**kwargs)
| 232 | |
| 233 | |
| 234 | def create_repl(**kwargs): |
| 235 | config = setup_config({"editor": "true"}) |
| 236 | repl = curtsiesrepl.BaseRepl( |
| 237 | config, cast(CursorAwareWindow, None), **kwargs |
| 238 | ) |
| 239 | os.environ["PAGER"] = "true" |
| 240 | os.environ.pop("PYTHONSTARTUP", None) |
| 241 | repl.width = 50 |
| 242 | repl.height = 20 |
| 243 | return repl |
| 244 | |
| 245 | |
| 246 | class TestFutureImports(TestCase): |
no test coverage detected