Python readline.clear_history() Examples
The following are 16
code examples of readline.clear_history().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
readline
, or try the search function
.
Example #1
Source File: test_readline.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 6 votes |
def testHistoryUpdates(self): readline.clear_history() readline.add_history("first line") readline.add_history("second line") self.assertEqual(readline.get_history_item(0), None) self.assertEqual(readline.get_history_item(1), "first line") self.assertEqual(readline.get_history_item(2), "second line") readline.replace_history_item(0, "replaced line") self.assertEqual(readline.get_history_item(0), None) self.assertEqual(readline.get_history_item(1), "replaced line") self.assertEqual(readline.get_history_item(2), "second line") self.assertEqual(readline.get_current_history_length(), 2) readline.remove_history_item(0) self.assertEqual(readline.get_history_item(0), None) self.assertEqual(readline.get_history_item(1), "second line") self.assertEqual(readline.get_current_history_length(), 1)
Example #2
Source File: test_readline.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 6 votes |
def test_nonascii_history(self): readline.clear_history() try: readline.add_history("entrée 1") except UnicodeEncodeError as err: self.skipTest("Locale cannot encode test data: " + format(err)) readline.add_history("entrée 2") readline.replace_history_item(1, "entrée 22") readline.write_history_file(TESTFN) self.addCleanup(os.remove, TESTFN) readline.clear_history() readline.read_history_file(TESTFN) if is_editline: # An add_history() call seems to be required for get_history_ # item() to register items from the file readline.add_history("dummy") self.assertEqual(readline.get_history_item(1), "entrée 1") self.assertEqual(readline.get_history_item(2), "entrée 22")
Example #3
Source File: test_readline.py From android_universal with MIT License | 6 votes |
def testHistoryUpdates(self): readline.clear_history() readline.add_history("first line") readline.add_history("second line") self.assertEqual(readline.get_history_item(0), None) self.assertEqual(readline.get_history_item(1), "first line") self.assertEqual(readline.get_history_item(2), "second line") readline.replace_history_item(0, "replaced line") self.assertEqual(readline.get_history_item(0), None) self.assertEqual(readline.get_history_item(1), "replaced line") self.assertEqual(readline.get_history_item(2), "second line") self.assertEqual(readline.get_current_history_length(), 2) readline.remove_history_item(0) self.assertEqual(readline.get_history_item(0), None) self.assertEqual(readline.get_history_item(1), "second line") self.assertEqual(readline.get_current_history_length(), 1)
Example #4
Source File: test_readline.py From android_universal with MIT License | 6 votes |
def test_nonascii_history(self): readline.clear_history() try: readline.add_history("entrée 1") except UnicodeEncodeError as err: self.skipTest("Locale cannot encode test data: " + format(err)) readline.add_history("entrée 2") readline.replace_history_item(1, "entrée 22") readline.write_history_file(TESTFN) self.addCleanup(os.remove, TESTFN) readline.clear_history() readline.read_history_file(TESTFN) if is_editline: # An add_history() call seems to be required for get_history_ # item() to register items from the file readline.add_history("dummy") self.assertEqual(readline.get_history_item(1), "entrée 1") self.assertEqual(readline.get_history_item(2), "entrée 22")
Example #5
Source File: defs.py From hadrian with Apache License 2.0 | 5 votes |
def pause(self): """Write the current history to the history file and stop readline.""" readline.write_history_file(self.historyPath) readline.clear_history() readline.set_completer() self.active = False
Example #6
Source File: rlineimpl.py From Computable with MIT License | 5 votes |
def clear_history(): pass
Example #7
Source File: readlineng.py From NoobSec-Toolkit with GNU General Public License v2.0 | 5 votes |
def clear_history(): pass
Example #8
Source File: readlineng.py From NoobSec-Toolkit with GNU General Public License v2.0 | 5 votes |
def clear_history(): pass
Example #9
Source File: test_readline.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def test_write_read_append(self): hfile = tempfile.NamedTemporaryFile(delete=False) hfile.close() hfilename = hfile.name self.addCleanup(unlink, hfilename) # test write-clear-read == nop readline.clear_history() readline.add_history("first line") readline.add_history("second line") readline.write_history_file(hfilename) readline.clear_history() self.assertEqual(readline.get_current_history_length(), 0) readline.read_history_file(hfilename) self.assertEqual(readline.get_current_history_length(), 2) self.assertEqual(readline.get_history_item(1), "first line") self.assertEqual(readline.get_history_item(2), "second line") # test append readline.append_history_file(1, hfilename) readline.clear_history() readline.read_history_file(hfilename) self.assertEqual(readline.get_current_history_length(), 3) self.assertEqual(readline.get_history_item(1), "first line") self.assertEqual(readline.get_history_item(2), "second line") self.assertEqual(readline.get_history_item(3), "second line") # test 'no such file' behaviour os.unlink(hfilename) with self.assertRaises(FileNotFoundError): readline.append_history_file(1, hfilename) # write_history_file can create the target readline.write_history_file(hfilename)
Example #10
Source File: readlineng.py From darkc0de-old-stuff with GNU General Public License v3.0 | 5 votes |
def clear_history(): pass
Example #11
Source File: readlineng.py From POC-EXP with GNU General Public License v3.0 | 5 votes |
def clear_history(): pass
Example #12
Source File: readlineng.py From EasY_HaCk with Apache License 2.0 | 5 votes |
def clear_history(): pass
Example #13
Source File: test_readline.py From android_universal with MIT License | 5 votes |
def test_write_read_append(self): hfile = tempfile.NamedTemporaryFile(delete=False) hfile.close() hfilename = hfile.name self.addCleanup(unlink, hfilename) # test write-clear-read == nop readline.clear_history() readline.add_history("first line") readline.add_history("second line") readline.write_history_file(hfilename) readline.clear_history() self.assertEqual(readline.get_current_history_length(), 0) readline.read_history_file(hfilename) self.assertEqual(readline.get_current_history_length(), 2) self.assertEqual(readline.get_history_item(1), "first line") self.assertEqual(readline.get_history_item(2), "second line") # test append readline.append_history_file(1, hfilename) readline.clear_history() readline.read_history_file(hfilename) self.assertEqual(readline.get_current_history_length(), 3) self.assertEqual(readline.get_history_item(1), "first line") self.assertEqual(readline.get_history_item(2), "second line") self.assertEqual(readline.get_history_item(3), "second line") # test 'no such file' behaviour os.unlink(hfilename) with self.assertRaises(FileNotFoundError): readline.append_history_file(1, hfilename) # write_history_file can create the target readline.write_history_file(hfilename)
Example #14
Source File: isolate_io_context.py From phpsploit with GNU General Public License v3.0 | 4 votes |
def isolate_io_context(function): """A decorator for separating I/O context. This decorator isolates I/O context of target function or method. I/O Context is a mix of terminal related elements, such as current stdout and readline completer attributes. This decorator is useful if you run something that reconfigures the readline completer, or needs to use the default stdout file descriptor instead of the phpsploit's stdout wrapper. """ def wrapper(*args, **kwargs): try: import readline handle_readline = True except ImportError: handle_readline = False if handle_readline: # backup & reset readline completer old_readline_completer = readline.get_completer() readline.set_completer((lambda x: x)) # backup & reset readline history old_readline_history = [] hist_sz = readline.get_current_history_length() for i in range(1, hist_sz + 1): line = readline.get_history_item(i) old_readline_history.append(line) readline.clear_history() # backup & reset stdout old_stdout = sys.stdout sys.stdout = sys.__stdout__ try: retval = function(*args, **kwargs) finally: if handle_readline: # restore old readline completer readline.set_completer(old_readline_completer) # restore old readline history readline.clear_history() for line in old_readline_history: readline.add_history(line) # restore old stdout sys.stdout = old_stdout return retval return wrapper
Example #15
Source File: isolate_readline_context.py From phpsploit with GNU General Public License v3.0 | 4 votes |
def isolate_readline_context(function): """A decorator for separating readline context. This decorator isolates readline context of target function or method. Use when phpsploit's readline context should be reset temporarly is the context of triggering function or method. Unlike `isolate_io_context`, this decorator keeps original stdout wrapper. """ def wrapper(*args, **kwargs): try: import readline handle_readline = True except ImportError: handle_readline = False if handle_readline: # backup & reset readline completer old_readline_completer = readline.get_completer() readline.set_completer((lambda x: x)) # backup & reset readline history old_readline_history = [] hist_sz = readline.get_current_history_length() for i in range(1, hist_sz + 1): line = readline.get_history_item(i) old_readline_history.append(line) readline.clear_history() try: retval = function(*args, **kwargs) finally: if handle_readline: # restore old readline completer readline.set_completer(old_readline_completer) # restore old readline history readline.clear_history() for line in old_readline_history: readline.add_history(line) return retval return wrapper
Example #16
Source File: session.py From mouse with GNU General Public License v3.0 | 4 votes |
def interact(self): """Interact with an active session""" readline.clear_history() readline.set_completer(self.tab_complete) readline.parse_and_bind('tab: complete') command_modules = self.server.get_modules(self.type) while 1: try: #prepare command raw = input(self.get_handle()).strip(" ") if not raw or raw.replace(" ","") == "": continue cmd = raw.split()[0] cmd_data = {"cmd": cmd, "args":raw[len(cmd) + 1:]} if self.needs_refresh: # don't do anything if we are in the middle of updating session pass elif cmd == "exit": self.disconnect(True) return elif cmd == "back" and self.server.is_multi: return elif cmd == "help": self.show_commands() elif cmd in command_modules.keys(): command_modules[cmd].run(self,cmd_data) elif cmd in self.server.modules_local.keys(): self.server.modules_local[cmd].run(self,cmd_data) else: h.info_error("Unrecognized command!") except KeyboardInterrupt: try: print("") if readline.get_line_buffer(): continue except: pass self.disconnect(True) return except Exception as e: print(e)