diff -r 36178b5c9aeb -r 47a07bbf400a mercurial/crecord.py --- a/mercurial/crecord.py Thu Jun 18 10:48:27 2020 -0700 +++ b/mercurial/crecord.py Sat Jun 27 20:19:41 2020 +0200 @@ -63,15 +63,7 @@ curses.error except (ImportError, AttributeError): - # I have no idea if wcurses works with crecord... - try: - import wcurses as curses - - curses.error - except (ImportError, AttributeError): - # wcurses is not shipped on Windows by default, or python is not - # compiled with curses - curses = False + curses = False class fallbackerror(error.Abort):