comparison lisp/progmodes/python.el @ 76570:6e293ce14a97

(python-default-template): Doc fix. (python-buffer): Fix typo in docstring.
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 19 Mar 2007 15:35:04 +0000
parents 05d93f5e8286
children e359709ed895 c0409ee15cee
comparison
equal deleted inserted replaced
76569:a5ca6723c3b1 76570:6e293ce14a97
1148 May be `python-python-command' or `python-jython-command', possibly 1148 May be `python-python-command' or `python-jython-command', possibly
1149 modified by the user. Additional arguments are added when the command 1149 modified by the user. Additional arguments are added when the command
1150 is used by `run-python' et al.") 1150 is used by `run-python' et al.")
1151 1151
1152 (defvar python-buffer nil 1152 (defvar python-buffer nil
1153 "*The current python process buffer. 1153 "*The current Python process buffer.
1154 1154
1155 Commands that send text from source buffers to Python processes have 1155 Commands that send text from source buffers to Python processes have
1156 to choose a process to send to. This is determined by buffer-local 1156 to choose a process to send to. This is determined by buffer-local
1157 value of `python-buffer'. If its value in the current buffer, 1157 value of `python-buffer'. If its value in the current buffer,
1158 i.e. both any local value and the default one, is nil, `run-python' 1158 i.e. both any local value and the default one, is nil, `run-python'
2086 ":" \n 2086 ":" \n
2087 "\"\"\"" @ " \"\"\"" \n 2087 "\"\"\"" @ " \"\"\"" \n
2088 > _ \n) 2088 > _ \n)
2089 2089
2090 (defvar python-default-template "if" 2090 (defvar python-default-template "if"
2091 "Default template to expand by `python-insert-template'. 2091 "Default template to expand by `python-expand-template'.
2092 Updated on each expansion.") 2092 Updated on each expansion.")
2093 2093
2094 (defun python-expand-template (name) 2094 (defun python-expand-template (name)
2095 "Expand template named NAME. 2095 "Expand template named NAME.
2096 Interactively, prompt for the name with completion." 2096 Interactively, prompt for the name with completion."