From 337c382196ff0d57a61b39030820257c98393c49 Mon Sep 17 00:00:00 2001 From: Jonathan Slenders Date: Sat, 4 May 2019 13:13:53 -0700 Subject: [PATCH] Added termios.error (#2951) --- stdlib/2and3/termios.pyi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stdlib/2and3/termios.pyi b/stdlib/2and3/termios.pyi index 058398283..d788e1632 100644 --- a/stdlib/2and3/termios.pyi +++ b/stdlib/2and3/termios.pyi @@ -244,3 +244,5 @@ def tcsendbreak(fd: _FD, duration: int) -> None: ... def tcdrain(fd: _FD) -> None: ... def tcflush(fd: _FD, queue: int) -> None: ... def tcflow(fd: _FD, action: int) -> None: ... + +class error(Exception): ...