| 49 | |
| 50 | def _pty_size() -> Tuple[Optional[int], Optional[int]]: |
| 51 | class CONSOLE_SCREEN_BUFFER_INFO(Structure): |
| 52 | _fields_ = [ |
| 53 | ("dwSize", _COORD), |
| 54 | ("dwCursorPosition", _COORD), |
| 55 | ("wAttributes", c_ushort), |
| 56 | ("srWindow", _SMALL_RECT), |
| 57 | ("dwMaximumWindowSize", _COORD), |
| 58 | ] |
| 59 | |
| 60 | GetStdHandle = windll.kernel32.GetStdHandle |
| 61 | GetConsoleScreenBufferInfo = windll.kernel32.GetConsoleScreenBufferInfo |
no outgoing calls
no test coverage detected
searching dependent graphs…