Simon Poirier

Results 2 comments of Simon Poirier

Actually, patching pytest_bdd.feature.STEP_PREFIXES would be slightly better, as you don't need to alter the types, but rather the parsing. And since a few of those translations are many-to-one-type. e.g. according...

With termion backend, the easy workaround is to set a raw handle on startup and to pass it to the hook. Here's a simple case: ```rust use termion::raw::IntoRawMode; use termion::screen::AlternateScreen;...