Every line of 'python clear terminal' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
160 def clear(self): # From kb q99261 161 rp = COORD() 162 wr = DWORD() 163 csbi = CONSOLE_SCREEN_BUFFER_INFO() 164 GetConsoleScreenBufferInfo(self.stdout_handle, byref(csbi)) 165 sx = csbi.dwSize.X * csbi.dwSize.Y 166 167 FillConsoleOutputCharacter(self.stdout_handle, 32, 168 sx, rp, byref(wr)) 169 FillConsoleOutputAttribute(self.stdout_handle, csbi.wAttributes, 170 sx, rp, byref(wr))
180 def remove(self): 181 self.parent.hideConsole() 182 self.pressed = False 183 self.clicked = False