##// END OF EJS Templates
crecord: drop calls to `curses.endwin()`...
crecord: drop calls to `curses.endwin()` We got a bug report where `curses.endwin()` failed with `_curses.error: endwin() returned ERR`. Looking at e306d552dfb12, it seems like we should be able to just remove these calls.

File last commit:

r51654:2c34c9b6 default
r52341:89cd0dd4 stable
Show More
_types.py
6 lines | 126 B | text/x-python | PythonLexer
Raphaël Gomès
thirdparty: vendor tomli...
r51654 from typing import Any, Callable, Tuple
# Type annotations
ParseFloat = Callable[[str], Any]
Key = Tuple[str, ...]
Pos = int