31 lines
1.1 KiB
Python
31 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
#*****************************************************************************
|
|
# Copyright (C) 2003-2006 Gary Bishop.
|
|
# Copyright (C) 2006 Jorgen Stenarson. <jorgen.stenarson@bostream.nu>
|
|
#
|
|
# Distributed under the terms of the BSD License. The full license is in
|
|
# the file COPYING, distributed as part of this software.
|
|
#*****************************************************************************
|
|
import logger,clipboard,lineeditor,modes
|
|
from rlmain import *
|
|
__all__ = [ 'parse_and_bind',
|
|
'get_line_buffer',
|
|
'insert_text',
|
|
'clear_history',
|
|
'read_init_file',
|
|
'read_history_file',
|
|
'write_history_file',
|
|
'get_history_length',
|
|
'set_history_length',
|
|
'set_startup_hook',
|
|
'set_pre_input_hook',
|
|
'set_completer',
|
|
'get_completer',
|
|
'get_begidx',
|
|
'get_endidx',
|
|
'set_completer_delims',
|
|
'get_completer_delims',
|
|
'add_history',
|
|
'GetOutputFile']
|
|
|
|
import release
|