Every line of 'python clear screen' 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.
26 def clear_screen(stdscr): 27 stdscr.clear() 28 stdscr.refresh()
29 def clear_screen(): 30 if os.name == "nt": 31 os.system("cls") 32 else: 33 sys.stdout.write("\x1b[2J\x1b[H")
101 def clear(self): 102 """Refresh all windows""" 103 self.stdscr.erase() 104 if self.data_win: 105 self.data_win.erase() 106 if self.map_win: 107 self.map_win.erase() 108 if self.path_win: 109 self.path_win.erase() 110 if self.log_win: 111 self.log_win.erase() 112 if self.help_win: 113 self.help_win.erase() 114 if self.players_win: 115 self.players_win.erase() 116 if self.time_win: 117 self.time_win.erase() 118 if self.summary_win: 119 self.summary_win.erase() 120 if self.menu_win: 121 self.menu_win.erase() 122 curses.doupdate()
43 def clearScreen(): 44 if not _Stdscr: 45 _initCurses() 46 47 _Stdscr.clear()
1383 def clear(self): 1384 """ 1385 Clear the Screen of all content. 1386 1387 Note that this will instantly clear the Screen and reset all buffers to the default state, 1388 without waiting for you to call :py:meth:`~.Screen.refresh`. 1389 """ 1390 # Clear the actual terminal 1391 self.reset() 1392 self._change_colours(Screen.COLOUR_WHITE, 0, 0) 1393 self._clear()
201 def clear(button): 202 self.aqu_task.cancel() 203 graph.clear()
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))
84 def clear_screen(_input=sys.stdin, _output=sys.stdout): 85 """Clear terminal screen.""" 86 87 if not _output.isatty(): 88 return 89 90 cmd = 'cls' if os.name == 'nt' else 'clear' 91 subprocess.call(cmd, shell=True, stdin=_input, stdout=_output, stderr=_output)
300 def clear(self): 301 buffer = self.textView.get_buffer() 302 buffer.delete(*buffer.get_bounds())