mirror of https://github.com/conqp/rcon
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
699 B
33 lines
699 B
"""Wrapper for readline support."""
|
|
|
|
from os import name
|
|
from pathlib import Path
|
|
|
|
|
|
__all__ = ['CommandHistory']
|
|
|
|
|
|
HIST_FILE = Path.home().joinpath('.rconshell_history')
|
|
|
|
|
|
if name == 'posix':
|
|
from readline import read_history_file, write_history_file
|
|
|
|
class CommandHistory:
|
|
"""Context manager for the command line history."""
|
|
|
|
def __enter__(self):
|
|
read_history_file()
|
|
return self
|
|
|
|
def __exit__(self, *_):
|
|
write_history_file(HIST_FILE)
|
|
else:
|
|
class CommandHistory:
|
|
"""Context manager for the command line history."""
|
|
|
|
def __enter__(self):
|
|
return self
|
|
|
|
def __exit__(self, *_):
|
|
pass
|
|
|