Path: csiph.com!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'context': 0.05; 'cpython': 0.05; 'modify': 0.05; 'sys': 0.05; '-1)': 0.07; 'function,': 0.07; 'python': 0.09; 'key)': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'skip:# 30': 0.09; 'typedef': 0.09; 'def': 0.10; 'alpha': 0.15; 'b):': 0.16; 'c_int)': 0.16; 'c_int,': 0.16; 'ctypes.util': 0.16; 'int);': 0.16; 'received:80.91.229.3': 0.16; 'received:dip.t-dialin.net': 0.16; 'received:plane.gmane.org': 0.16; 'received:t-dialin.net': 0.16; 'string': 0.17; 'wrote:': 0.17; 'char': 0.17; 'module,': 0.17; 'warranties': 0.17; 'url:edu': 0.18; '>>>': 0.18; 'subject:] ': 0.19; 'trying': 0.21; 'import': 0.21; 'combination': 0.22; 'ctypes': 0.22; 'command': 0.24; 'header:User-Agent:1': 0.26; 'skip:" 20': 0.26; 'header:X -Complaints-To:1': 0.28; 'lines': 0.28; 'cat': 0.29; "d'aprano": 0.29; 'readline': 0.29; 'steven': 0.29; "i'm": 0.29; 'function': 0.30; 'url:python': 0.32; 'print': 0.32; 'int': 0.33; 'to:addr :python-list': 0.33; 'along': 0.35; 'something': 0.35; 'received:org': 0.36; 'url:org': 0.36; 'url:library': 0.36; 'execute': 0.37; 'does': 0.37; 'subject:[': 0.37; 'why': 0.37; 'subject:: ': 0.38; 'some': 0.38; 'url:docs': 0.38; 'to:addr:python.org': 0.39; 'where': 0.40; 'skip:" 10': 0.40; 'header:Received:5': 0.40; 'of:': 0.65; 'url:php': 0.86; 'source?': 0.91 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Peter Otten <__peter__@web.de> Subject: [on topic] Re: readline trick needed Date: Tue, 16 Oct 2012 10:30:01 +0200 Organization: None References: <50796ce5$0$6574$c3e8da3$5496439d@news.astraweb.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Gmane-NNTP-Posting-Host: p5084a115.dip.t-dialin.net User-Agent: KNode/4.7.3 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 67 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1350376172 news.xs4all.nl 6923 [2001:888:2000:d::a6]:38698 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:31366 Steven D'Aprano wrote: > I'm working with the readline module, and I'm trying to set a key > combination to process the current command line by calling a known > function, *and* enter the command line. > > Something along the lines of: > > * execute function spam() in some context where it can access > the current command line as a string > * enter the command line > > Function spam() may or may not modify the command line. > (P.S. I'm aware of IPython, I want to get this working in the standard > CPython interpreter.) If IPython does what you want why don't you have a look at the source? Anyway, here's what I came up with (no warranties as it was all trial-and- error): $ cat readline_callback.py import ctypes import ctypes.util from ctypes import c_int, c_char_p import readline import sys rlname = ctypes.util.find_library("readline") # int rl_add_defun (const char *name, rl_command_func_t *function, int key) # typedef int rl_command_func_t (int, int); # int rl_done # char * rl_line_buffer rl = ctypes.CDLL(rlname) RL_COMMAND_FUNC = ctypes.CFUNCTYPE(c_int, c_int, c_int) intercepted_line = None def lovely_spam(a, b): global intercepted_line print intercepted_line = c_char_p.in_dll(rl, "rl_line_buffer").value rl.rl_insert_text("*" + intercepted_line) c_int.in_dll(rl, "rl_done").value = 1 return 0 def control(c): return ord(c.upper())-64 rl.rl_add_defun("lovely-spam", RL_COMMAND_FUNC(lovely_spam), control("P")) #rl.rl_add_defun("lovely-spam", RL_COMMAND_FUNC(lovely_spam), -1) #readline.parse_and_bind("Control-P: lovely-spam") $ python -i readline_callback.py >>> alpha = 42 >>> alpha 1764 The relevant documentation: http://cnswww.cns.cwru.edu/php/chet/readline/readline.html http://docs.python.org/library/ctypes.html