Merge from emacs-23
[emacs.git] / lisp / progmodes / python.el
blob7754dc6c87cdf0ea18277b27761b04d2bf7f7da9
1 ;;; python.el --- silly walks for Python -*- coding: iso-8859-1 -*-
3 ;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 ;; Free Software Foundation, Inc.
6 ;; Author: Dave Love <fx@gnu.org>
7 ;; Maintainer: FSF
8 ;; Created: Nov 2003
9 ;; Keywords: languages
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;; Major mode for editing Python, with support for inferior processes.
30 ;; There is another Python mode, python-mode.el:
31 ;; http://launchpad.net/python-mode
32 ;; used by XEmacs, and originally maintained with Python.
33 ;; That isn't covered by an FSF copyright assignment (?), unlike this
34 ;; code, and seems not to be well-maintained for Emacs (though I've
35 ;; submitted fixes). This mode is rather simpler and is better in
36 ;; other ways. In particular, using the syntax functions with text
37 ;; properties maintained by font-lock makes it more correct with
38 ;; arbitrary string and comment contents.
40 ;; This doesn't implement all the facilities of python-mode.el. Some
41 ;; just need doing, e.g. catching exceptions in the inferior Python
42 ;; buffer (but see M-x pdb for debugging). [Actually, the use of
43 ;; `compilation-shell-minor-mode' now is probably enough for that.]
44 ;; Others don't seem appropriate. For instance,
45 ;; `forward-into-nomenclature' should be done separately, since it's
46 ;; not specific to Python, and I've installed a minor mode to do the
47 ;; job properly in Emacs 23. [CC mode 5.31 contains an incompatible
48 ;; feature, `subword-mode' which is intended to have a similar
49 ;; effect, but actually only affects word-oriented keybindings.]
51 ;; Other things seem more natural or canonical here, e.g. the
52 ;; {beginning,end}-of-defun implementation dealing with nested
53 ;; definitions, and the inferior mode following `cmuscheme'. (The
54 ;; inferior mode can find the source of errors from
55 ;; `python-send-region' & al via `compilation-shell-minor-mode'.)
56 ;; There is (limited) symbol completion using lookup in Python and
57 ;; Eldoc support also using the inferior process. Successive TABs
58 ;; cycle between possible indentations for the line.
60 ;; Even where it has similar facilities, this mode is incompatible
61 ;; with python-mode.el in some respects. For instance, various key
62 ;; bindings are changed to obey Emacs conventions.
64 ;; TODO: See various Fixmes below.
66 ;; Fixme: This doesn't support (the nascent) Python 3 .
68 ;;; Code:
70 (require 'comint)
72 (eval-when-compile
73 (require 'compile)
74 (require 'hippie-exp))
76 (autoload 'comint-mode "comint")
78 (defgroup python nil
79 "Silly walks in the Python language."
80 :group 'languages
81 :version "22.1"
82 :link '(emacs-commentary-link "python"))
84 ;;;###autoload
85 (add-to-list 'interpreter-mode-alist (cons (purecopy "jython") 'jython-mode))
86 ;;;###autoload
87 (add-to-list 'interpreter-mode-alist (cons (purecopy "python") 'python-mode))
88 ;;;###autoload
89 (add-to-list 'auto-mode-alist (cons (purecopy "\\.py\\'") 'python-mode))
90 (add-to-list 'same-window-buffer-names (purecopy "*Python*"))
92 ;;;; Font lock
94 (defvar python-font-lock-keywords
95 `(,(rx symbol-start
96 ;; From v 2.7 reference, § keywords.
97 ;; def and class dealt with separately below
98 (or "and" "as" "assert" "break" "continue" "del" "elif" "else"
99 "except" "exec" "finally" "for" "from" "global" "if"
100 "import" "in" "is" "lambda" "not" "or" "pass" "print"
101 "raise" "return" "try" "while" "with" "yield"
102 ;; Not real keywords, but close enough to be fontified as such
103 "self" "True" "False")
104 symbol-end)
105 (,(rx symbol-start "None" symbol-end) ; see § Keywords in 2.7 manual
106 . font-lock-constant-face)
107 ;; Definitions
108 (,(rx symbol-start (group "class") (1+ space) (group (1+ (or word ?_))))
109 (1 font-lock-keyword-face) (2 font-lock-type-face))
110 (,(rx symbol-start (group "def") (1+ space) (group (1+ (or word ?_))))
111 (1 font-lock-keyword-face) (2 font-lock-function-name-face))
112 ;; Top-level assignments are worth highlighting.
113 (,(rx line-start (group (1+ (or word ?_))) (0+ space) "=")
114 (1 font-lock-variable-name-face))
115 ;; Decorators.
116 (,(rx line-start (* (any " \t")) (group "@" (1+ (or word ?_))
117 (0+ "." (1+ (or word ?_)))))
118 (1 font-lock-type-face))
119 ;; Built-ins. (The next three blocks are from
120 ;; `__builtin__.__dict__.keys()' in Python 2.7) These patterns
121 ;; are debateable, but they at least help to spot possible
122 ;; shadowing of builtins.
123 (,(rx symbol-start (or
124 ;; exceptions
125 "ArithmeticError" "AssertionError" "AttributeError"
126 "BaseException" "DeprecationWarning" "EOFError"
127 "EnvironmentError" "Exception" "FloatingPointError"
128 "FutureWarning" "GeneratorExit" "IOError" "ImportError"
129 "ImportWarning" "IndentationError" "IndexError" "KeyError"
130 "KeyboardInterrupt" "LookupError" "MemoryError" "NameError"
131 "NotImplemented" "NotImplementedError" "OSError"
132 "OverflowError" "PendingDeprecationWarning" "ReferenceError"
133 "RuntimeError" "RuntimeWarning" "StandardError"
134 "StopIteration" "SyntaxError" "SyntaxWarning" "SystemError"
135 "SystemExit" "TabError" "TypeError" "UnboundLocalError"
136 "UnicodeDecodeError" "UnicodeEncodeError" "UnicodeError"
137 "UnicodeTranslateError" "UnicodeWarning" "UserWarning"
138 "ValueError" "Warning" "ZeroDivisionError"
139 ;; Python 2.7
140 "BufferError" "BytesWarning" "WindowsError") symbol-end)
141 . font-lock-type-face)
142 (,(rx (or line-start (not (any ". \t"))) (* (any " \t")) symbol-start
143 (group (or
144 ;; callable built-ins, fontified when not appearing as
145 ;; object attributes
146 "abs" "all" "any" "apply" "basestring" "bool" "buffer" "callable"
147 "chr" "classmethod" "cmp" "coerce" "compile" "complex"
148 "copyright" "credits" "delattr" "dict" "dir" "divmod"
149 "enumerate" "eval" "execfile" "exit" "file" "filter" "float"
150 "frozenset" "getattr" "globals" "hasattr" "hash" "help"
151 "hex" "id" "input" "int" "intern" "isinstance" "issubclass"
152 "iter" "len" "license" "list" "locals" "long" "map" "max"
153 "min" "object" "oct" "open" "ord" "pow" "property" "quit"
154 "range" "raw_input" "reduce" "reload" "repr" "reversed"
155 "round" "set" "setattr" "slice" "sorted" "staticmethod"
156 "str" "sum" "super" "tuple" "type" "unichr" "unicode" "vars"
157 "xrange" "zip"
158 ;; Python 2.7.
159 "bin" "bytearray" "bytes" "format" "memoryview" "next" "print"
160 )) symbol-end)
161 (1 font-lock-builtin-face))
162 (,(rx symbol-start (or
163 ;; other built-ins
164 "True" "False" "None" "Ellipsis"
165 "_" "__debug__" "__doc__" "__import__" "__name__" "__package__")
166 symbol-end)
167 . font-lock-builtin-face)))
169 (defconst python-syntax-propertize-function
170 ;; Make outer chars of matching triple-quote sequences into generic
171 ;; string delimiters. Fixme: Is there a better way?
172 ;; First avoid a sequence preceded by an odd number of backslashes.
173 (syntax-propertize-rules
174 (;; ¡Backrefs don't work in syntax-propertize-rules!
175 (concat "\\(?:\\([RUru]\\)[Rr]?\\|^\\|[^\\]\\(?:\\\\.\\)*\\)" ;Prefix.
176 "\\(?:\\('\\)'\\('\\)\\|\\(?2:\"\\)\"\\(?3:\"\\)\\)")
177 (3 (ignore (python-quote-syntax))))
178 ;; This doesn't really help.
179 ;;((rx (and ?\\ (group ?\n))) (1 " "))
182 (defun python-quote-syntax ()
183 "Put `syntax-table' property correctly on triple quote.
184 Used for syntactic keywords. N is the match number (1, 2 or 3)."
185 ;; Given a triple quote, we have to check the context to know
186 ;; whether this is an opening or closing triple or whether it's
187 ;; quoted anyhow, and should be ignored. (For that we need to do
188 ;; the same job as `syntax-ppss' to be correct and it seems to be OK
189 ;; to use it here despite initial worries.) We also have to sort
190 ;; out a possible prefix -- well, we don't _have_ to, but I think it
191 ;; should be treated as part of the string.
193 ;; Test cases:
194 ;; ur"""ar""" x='"' # """
195 ;; x = ''' """ ' a
196 ;; '''
197 ;; x '"""' x """ \"""" x
198 (save-excursion
199 (goto-char (match-beginning 0))
200 (let ((syntax (save-match-data (syntax-ppss))))
201 (cond
202 ((eq t (nth 3 syntax)) ; after unclosed fence
203 ;; Consider property for the last char if in a fenced string.
204 (goto-char (nth 8 syntax)) ; fence position
205 (skip-chars-forward "uUrR") ; skip any prefix
206 ;; Is it a matching sequence?
207 (if (eq (char-after) (char-after (match-beginning 2)))
208 (put-text-property (match-beginning 3) (match-end 3)
209 'syntax-table (string-to-syntax "|"))))
210 ((match-end 1)
211 ;; Consider property for initial char, accounting for prefixes.
212 (put-text-property (match-beginning 1) (match-end 1)
213 'syntax-table (string-to-syntax "|")))
215 ;; Consider property for initial char, accounting for prefixes.
216 (put-text-property (match-beginning 2) (match-end 2)
217 'syntax-table (string-to-syntax "|"))))
220 ;; This isn't currently in `font-lock-defaults' as probably not worth
221 ;; it -- we basically only mess with a few normally-symbol characters.
223 ;; (defun python-font-lock-syntactic-face-function (state)
224 ;; "`font-lock-syntactic-face-function' for Python mode.
225 ;; Returns the string or comment face as usual, with side effect of putting
226 ;; a `syntax-table' property on the inside of the string or comment which is
227 ;; the standard syntax table."
228 ;; (if (nth 3 state)
229 ;; (save-excursion
230 ;; (goto-char (nth 8 state))
231 ;; (condition-case nil
232 ;; (forward-sexp)
233 ;; (error nil))
234 ;; (put-text-property (1+ (nth 8 state)) (1- (point))
235 ;; 'syntax-table (standard-syntax-table))
236 ;; 'font-lock-string-face)
237 ;; (put-text-property (1+ (nth 8 state)) (line-end-position)
238 ;; 'syntax-table (standard-syntax-table))
239 ;; 'font-lock-comment-face))
241 ;;;; Keymap and syntax
243 (defvar python-mode-map
244 (let ((map (make-sparse-keymap)))
245 ;; Mostly taken from python-mode.el.
246 (define-key map ":" 'python-electric-colon)
247 (define-key map "\177" 'python-backspace)
248 (define-key map "\C-c<" 'python-shift-left)
249 (define-key map "\C-c>" 'python-shift-right)
250 (define-key map "\C-c\C-k" 'python-mark-block)
251 (define-key map "\C-c\C-d" 'python-pdbtrack-toggle-stack-tracking)
252 (define-key map "\C-c\C-n" 'python-next-statement)
253 (define-key map "\C-c\C-p" 'python-previous-statement)
254 (define-key map "\C-c\C-u" 'python-beginning-of-block)
255 (define-key map "\C-c\C-f" 'python-describe-symbol)
256 (define-key map "\C-c\C-w" 'python-check)
257 (define-key map "\C-c\C-v" 'python-check) ; a la sgml-mode
258 (define-key map "\C-c\C-s" 'python-send-string)
259 (define-key map [?\C-\M-x] 'python-send-defun)
260 (define-key map "\C-c\C-r" 'python-send-region)
261 (define-key map "\C-c\M-r" 'python-send-region-and-go)
262 (define-key map "\C-c\C-c" 'python-send-buffer)
263 (define-key map "\C-c\C-z" 'python-switch-to-python)
264 (define-key map "\C-c\C-m" 'python-load-file)
265 (define-key map "\C-c\C-l" 'python-load-file) ; a la cmuscheme
266 (substitute-key-definition 'complete-symbol 'completion-at-point
267 map global-map)
268 (define-key map "\C-c\C-i" 'python-find-imports)
269 (define-key map "\C-c\C-t" 'python-expand-template)
270 (easy-menu-define python-menu map "Python Mode menu"
271 `("Python"
272 :help "Python-specific Features"
273 ["Shift region left" python-shift-left :active mark-active
274 :help "Shift by a single indentation step"]
275 ["Shift region right" python-shift-right :active mark-active
276 :help "Shift by a single indentation step"]
278 ["Mark block" python-mark-block
279 :help "Mark innermost block around point"]
280 ["Mark def/class" mark-defun
281 :help "Mark innermost definition around point"]
283 ["Start of block" python-beginning-of-block
284 :help "Go to start of innermost definition around point"]
285 ["End of block" python-end-of-block
286 :help "Go to end of innermost definition around point"]
287 ["Start of def/class" beginning-of-defun
288 :help "Go to start of innermost definition around point"]
289 ["End of def/class" end-of-defun
290 :help "Go to end of innermost definition around point"]
292 ("Templates..."
293 :help "Expand templates for compound statements"
294 :filter (lambda (&rest junk)
295 (abbrev-table-menu python-mode-abbrev-table)))
297 ["Start interpreter" python-shell
298 :help "Run `inferior' Python in separate buffer"]
299 ["Import/reload file" python-load-file
300 :help "Load into inferior Python session"]
301 ["Eval buffer" python-send-buffer
302 :help "Evaluate buffer en bloc in inferior Python session"]
303 ["Eval region" python-send-region :active mark-active
304 :help "Evaluate region en bloc in inferior Python session"]
305 ["Eval def/class" python-send-defun
306 :help "Evaluate current definition in inferior Python session"]
307 ["Switch to interpreter" python-switch-to-python
308 :help "Switch to inferior Python buffer"]
309 ["Set default process" python-set-proc
310 :help "Make buffer's inferior process the default"
311 :active (buffer-live-p python-buffer)]
312 ["Check file" python-check :help "Run pychecker"]
313 ["Debugger" pdb :help "Run pdb under GUD"]
315 ["Help on symbol" python-describe-symbol
316 :help "Use pydoc on symbol at point"]
317 ["Complete symbol" completion-at-point
318 :help "Complete (qualified) symbol before point"]
319 ["Find function" python-find-function
320 :help "Try to find source definition of function at point"]
321 ["Update imports" python-find-imports
322 :help "Update list of top-level imports for completion"]))
323 map))
324 ;; Fixme: add toolbar stuff for useful things like symbol help, send
325 ;; region, at least. (Shouldn't be specific to Python, obviously.)
326 ;; eric has items including: (un)indent, (un)comment, restart script,
327 ;; run script, debug script; also things for profiling, unit testing.
329 (defvar python-shell-map
330 (let ((map (copy-keymap comint-mode-map)))
331 (define-key map [tab] 'tab-to-tab-stop)
332 (define-key map "\C-c-" 'py-up-exception)
333 (define-key map "\C-c=" 'py-down-exception)
334 map)
335 "Keymap used in *Python* shell buffers.")
337 (defvar python-mode-syntax-table
338 (let ((table (make-syntax-table)))
339 ;; Give punctuation syntax to ASCII that normally has symbol
340 ;; syntax or has word syntax and isn't a letter.
341 (let ((symbol (string-to-syntax "_"))
342 (sst (standard-syntax-table)))
343 (dotimes (i 128)
344 (unless (= i ?_)
345 (if (equal symbol (aref sst i))
346 (modify-syntax-entry i "." table)))))
347 (modify-syntax-entry ?$ "." table)
348 (modify-syntax-entry ?% "." table)
349 ;; exceptions
350 (modify-syntax-entry ?# "<" table)
351 (modify-syntax-entry ?\n ">" table)
352 (modify-syntax-entry ?' "\"" table)
353 (modify-syntax-entry ?` "$" table)
354 table))
356 ;;;; Utility stuff
358 (defsubst python-in-string/comment ()
359 "Return non-nil if point is in a Python literal (a comment or string)."
360 ;; We don't need to save the match data.
361 (nth 8 (syntax-ppss)))
363 (defconst python-space-backslash-table
364 (let ((table (copy-syntax-table python-mode-syntax-table)))
365 (modify-syntax-entry ?\\ " " table)
366 table)
367 "`python-mode-syntax-table' with backslash given whitespace syntax.")
369 (defun python-skip-comments/blanks (&optional backward)
370 "Skip comments and blank lines.
371 BACKWARD non-nil means go backwards, otherwise go forwards.
372 Backslash is treated as whitespace so that continued blank lines
373 are skipped. Doesn't move out of comments -- should be outside
374 or at end of line."
375 (let ((arg (if backward
376 ;; If we're in a comment (including on the trailing
377 ;; newline), forward-comment doesn't move backwards out
378 ;; of it. Don't set the syntax table round this bit!
379 (let ((syntax (syntax-ppss)))
380 (if (nth 4 syntax)
381 (goto-char (nth 8 syntax)))
382 (- (point-max)))
383 (point-max))))
384 (with-syntax-table python-space-backslash-table
385 (forward-comment arg))))
387 (defun python-backslash-continuation-line-p ()
388 "Non-nil if preceding line ends with backslash that is not in a comment."
389 (and (eq ?\\ (char-before (line-end-position 0)))
390 (not (syntax-ppss-context (syntax-ppss)))))
392 (defun python-continuation-line-p ()
393 "Return non-nil if current line continues a previous one.
394 The criteria are that the previous line ends in a backslash outside
395 comments and strings, or that point is within brackets/parens."
396 (or (python-backslash-continuation-line-p)
397 (let ((depth (syntax-ppss-depth
398 (save-excursion ; syntax-ppss with arg changes point
399 (syntax-ppss (line-beginning-position))))))
400 (or (> depth 0)
401 (if (< depth 0) ; Unbalanced brackets -- act locally
402 (save-excursion
403 (condition-case ()
404 (progn (backward-up-list) t) ; actually within brackets
405 (error nil))))))))
407 (defun python-comment-line-p ()
408 "Return non-nil if and only if current line has only a comment."
409 (save-excursion
410 (end-of-line)
411 (when (eq 'comment (syntax-ppss-context (syntax-ppss)))
412 (back-to-indentation)
413 (looking-at (rx (or (syntax comment-start) line-end))))))
415 (defun python-blank-line-p ()
416 "Return non-nil if and only if current line is blank."
417 (save-excursion
418 (beginning-of-line)
419 (looking-at "\\s-*$")))
421 (defun python-beginning-of-string ()
422 "Go to beginning of string around point.
423 Do nothing if not in string."
424 (let ((state (syntax-ppss)))
425 (when (eq 'string (syntax-ppss-context state))
426 (goto-char (nth 8 state)))))
428 (defun python-open-block-statement-p (&optional bos)
429 "Return non-nil if statement at point opens a block.
430 BOS non-nil means point is known to be at beginning of statement."
431 (save-excursion
432 (unless bos (python-beginning-of-statement))
433 (looking-at (rx (and (or "if" "else" "elif" "while" "for" "def"
434 "class" "try" "except" "finally" "with")
435 symbol-end)))))
437 (defun python-close-block-statement-p (&optional bos)
438 "Return non-nil if current line is a statement closing a block.
439 BOS non-nil means point is at beginning of statement.
440 The criteria are that the line isn't a comment or in string and
441 starts with keyword `raise', `break', `continue' or `pass'."
442 (save-excursion
443 (unless bos (python-beginning-of-statement))
444 (back-to-indentation)
445 (looking-at (rx (or "return" "raise" "break" "continue" "pass")
446 symbol-end))))
448 (defun python-outdent-p ()
449 "Return non-nil if current line should outdent a level."
450 (save-excursion
451 (back-to-indentation)
452 (and (looking-at (rx (and (or "else" "finally" "except" "elif")
453 symbol-end)))
454 (not (python-in-string/comment))
455 ;; Ensure there's a previous statement and move to it.
456 (zerop (python-previous-statement))
457 (not (python-close-block-statement-p t))
458 ;; Fixme: check this
459 (not (python-open-block-statement-p)))))
461 ;;;; Indentation.
463 (defcustom python-indent 4
464 "Number of columns for a unit of indentation in Python mode.
465 See also `\\[python-guess-indent]'"
466 :group 'python
467 :type 'integer)
468 (put 'python-indent 'safe-local-variable 'integerp)
470 (defcustom python-guess-indent t
471 "Non-nil means Python mode guesses `python-indent' for the buffer."
472 :type 'boolean
473 :group 'python)
475 (defcustom python-indent-string-contents t
476 "Non-nil means indent contents of multi-line strings together.
477 This means indent them the same as the preceding non-blank line.
478 Otherwise preserve their indentation.
480 This only applies to `doc' strings, i.e. those that form statements;
481 the indentation is preserved in others."
482 :type '(choice (const :tag "Align with preceding" t)
483 (const :tag "Preserve indentation" nil))
484 :group 'python)
486 (defcustom python-honour-comment-indentation nil
487 "Non-nil means indent relative to preceding comment line.
488 Only do this for comments where the leading comment character is
489 followed by space. This doesn't apply to comment lines, which
490 are always indented in lines with preceding comments."
491 :type 'boolean
492 :group 'python)
494 (defcustom python-continuation-offset 4
495 "Number of columns of additional indentation for continuation lines.
496 Continuation lines follow a backslash-terminated line starting a
497 statement."
498 :group 'python
499 :type 'integer)
502 (defcustom python-default-interpreter 'cpython
503 "*Which Python interpreter is used by default.
504 The value for this variable can be either `cpython' or `jpython'.
506 When the value is `cpython', the variables `python-python-command' and
507 `python-python-command-args' are consulted to determine the interpreter
508 and arguments to use.
510 When the value is `jpython', the variables `python-jpython-command' and
511 `python-jpython-command-args' are consulted to determine the interpreter
512 and arguments to use.
514 Note that this variable is consulted only the first time that a Python
515 mode buffer is visited during an Emacs session. After that, use
516 \\[python-toggle-shells] to change the interpreter shell."
517 :type '(choice (const :tag "Python (a.k.a. CPython)" cpython)
518 (const :tag "JPython" jpython))
519 :group 'python)
521 (defcustom python-python-command-args '("-i")
522 "*List of string arguments to be used when starting a Python shell."
523 :type '(repeat string)
524 :group 'python)
526 (defcustom python-jython-command-args '("-i")
527 "*List of string arguments to be used when starting a Jython shell."
528 :type '(repeat string)
529 :group 'python
530 :tag "JPython Command Args")
532 ;; for toggling between CPython and JPython
533 (defvar python-which-shell nil)
534 (defvar python-which-args python-python-command-args)
535 (defvar python-which-bufname "Python")
536 (make-variable-buffer-local 'python-which-shell)
537 (make-variable-buffer-local 'python-which-args)
538 (make-variable-buffer-local 'python-which-bufname)
540 (defcustom python-pdbtrack-do-tracking-p t
541 "*Controls whether the pdbtrack feature is enabled or not.
543 When non-nil, pdbtrack is enabled in all comint-based buffers,
544 e.g. shell interaction buffers and the *Python* buffer.
546 When using pdb to debug a Python program, pdbtrack notices the
547 pdb prompt and presents the line in the source file where the
548 program is stopped in a pop-up buffer. It's similar to what
549 gud-mode does for debugging C programs with gdb, but without
550 having to restart the program."
551 :type 'boolean
552 :group 'python)
553 (make-variable-buffer-local 'python-pdbtrack-do-tracking-p)
555 (defcustom python-pdbtrack-minor-mode-string " PDB"
556 "*Minor-mode sign to be displayed when pdbtrack is active."
557 :type 'string
558 :group 'python)
560 ;; Add a designator to the minor mode strings
561 (or (assq 'python-pdbtrack-is-tracking-p minor-mode-alist)
562 (push '(python-pdbtrack-is-tracking-p python-pdbtrack-minor-mode-string)
563 minor-mode-alist))
565 ;; Bind python-file-queue before installing the kill-emacs-hook.
566 (defvar python-file-queue nil
567 "Queue of Python temp files awaiting execution.
568 Currently-active file is at the head of the list.")
570 (defcustom python-shell-prompt-alist
571 '(("ipython" . "^In \\[[0-9]+\\]: *")
572 (t . "^>>> "))
573 "Alist of Python input prompts.
574 Each element has the form (PROGRAM . REGEXP), where PROGRAM is
575 the value of `python-python-command' for the python process and
576 REGEXP is a regular expression matching the Python prompt.
577 PROGRAM can also be t, which specifies the default when no other
578 element matches `python-python-command'."
579 :type 'string
580 :group 'python
581 :version "24.1")
583 (defcustom python-shell-continuation-prompt-alist
584 '(("ipython" . "^ [.][.][.]+: *")
585 (t . "^[.][.][.] "))
586 "Alist of Python continued-line prompts.
587 Each element has the form (PROGRAM . REGEXP), where PROGRAM is
588 the value of `python-python-command' for the python process and
589 REGEXP is a regular expression matching the Python prompt for
590 continued lines.
591 PROGRAM can also be t, which specifies the default when no other
592 element matches `python-python-command'."
593 :type 'string
594 :group 'python
595 :version "24.1")
597 (defvar python-pdbtrack-is-tracking-p nil)
599 (defconst python-pdbtrack-stack-entry-regexp
600 "^> \\(.*\\)(\\([0-9]+\\))\\([?a-zA-Z0-9_<>]+\\)()"
601 "Regular expression pdbtrack uses to find a stack trace entry.")
603 (defconst python-pdbtrack-input-prompt "\n[(<]*[Pp]db[>)]+ "
604 "Regular expression pdbtrack uses to recognize a pdb prompt.")
606 (defconst python-pdbtrack-track-range 10000
607 "Max number of characters from end of buffer to search for stack entry.")
609 (defun python-guess-indent ()
610 "Guess step for indentation of current buffer.
611 Set `python-indent' locally to the value guessed."
612 (interactive)
613 (save-excursion
614 (save-restriction
615 (widen)
616 (goto-char (point-min))
617 (let (done indent)
618 (while (and (not done) (not (eobp)))
619 (when (and (re-search-forward (rx ?: (0+ space)
620 (or (syntax comment-start)
621 line-end))
622 nil 'move)
623 (python-open-block-statement-p))
624 (save-excursion
625 (python-beginning-of-statement)
626 (let ((initial (current-indentation)))
627 (if (zerop (python-next-statement))
628 (setq indent (- (current-indentation) initial)))
629 (if (and indent (>= indent 2) (<= indent 8)) ; sanity check
630 (setq done t))))))
631 (when done
632 (when (/= indent (default-value 'python-indent))
633 (set (make-local-variable 'python-indent) indent)
634 (unless (= tab-width python-indent)
635 (setq indent-tabs-mode nil)))
636 indent)))))
638 ;; Alist of possible indentations and start of statement they would
639 ;; close. Used in indentation cycling (below).
640 (defvar python-indent-list nil
641 "Internal use.")
642 ;; Length of the above
643 (defvar python-indent-list-length nil
644 "Internal use.")
645 ;; Current index into the alist.
646 (defvar python-indent-index nil
647 "Internal use.")
649 (defun python-calculate-indentation ()
650 "Calculate Python indentation for line at point."
651 (setq python-indent-list nil
652 python-indent-list-length 1)
653 (save-excursion
654 (beginning-of-line)
655 (let ((syntax (syntax-ppss))
656 start)
657 (cond
658 ((eq 'string (syntax-ppss-context syntax)) ; multi-line string
659 (if (not python-indent-string-contents)
660 (current-indentation)
661 ;; Only respect `python-indent-string-contents' in doc
662 ;; strings (defined as those which form statements).
663 (if (not (save-excursion
664 (python-beginning-of-statement)
665 (looking-at (rx (or (syntax string-delimiter)
666 (syntax string-quote))))))
667 (current-indentation)
668 ;; Find indentation of preceding non-blank line within string.
669 (setq start (nth 8 syntax))
670 (forward-line -1)
671 (while (and (< start (point)) (looking-at "\\s-*$"))
672 (forward-line -1))
673 (current-indentation))))
674 ((python-continuation-line-p) ; after backslash, or bracketed
675 (let ((point (point))
676 (open-start (cadr syntax))
677 (backslash (python-backslash-continuation-line-p))
678 (colon (eq ?: (char-before (1- (line-beginning-position))))))
679 (if open-start
680 ;; Inside bracketed expression.
681 (progn
682 (goto-char (1+ open-start))
683 ;; Look for first item in list (preceding point) and
684 ;; align with it, if found.
685 (if (with-syntax-table python-space-backslash-table
686 (let ((parse-sexp-ignore-comments t))
687 (condition-case ()
688 (progn (forward-sexp)
689 (backward-sexp)
690 (< (point) point))
691 (error nil))))
692 ;; Extra level if we're backslash-continued or
693 ;; following a key.
694 (if (or backslash colon)
695 (+ python-indent (current-column))
696 (current-column))
697 ;; Otherwise indent relative to statement start, one
698 ;; level per bracketing level.
699 (goto-char (1+ open-start))
700 (python-beginning-of-statement)
701 (+ (current-indentation) (* (car syntax) python-indent))))
702 ;; Otherwise backslash-continued.
703 (forward-line -1)
704 (if (python-continuation-line-p)
705 ;; We're past first continuation line. Align with
706 ;; previous line.
707 (current-indentation)
708 ;; First continuation line. Indent one step, with an
709 ;; extra one if statement opens a block.
710 (python-beginning-of-statement)
711 (+ (current-indentation) python-continuation-offset
712 (if (python-open-block-statement-p t)
713 python-indent
714 0))))))
715 ((bobp) 0)
716 ;; Fixme: Like python-mode.el; not convinced by this.
717 ((looking-at (rx (0+ space) (syntax comment-start)
718 (not (any " \t\n")))) ; non-indentable comment
719 (current-indentation))
720 ((and python-honour-comment-indentation
721 ;; Back over whitespace, newlines, non-indentable comments.
722 (catch 'done
723 (while (cond ((bobp) nil)
724 ((not (forward-comment -1))
725 nil) ; not at comment start
726 ;; Now at start of comment -- trailing one?
727 ((/= (current-column) (current-indentation))
728 nil)
729 ;; Indentable comment, like python-mode.el?
730 ((and (looking-at (rx (syntax comment-start)
731 (or space line-end)))
732 (/= 0 (current-column)))
733 (throw 'done (current-column)))
734 ;; Else skip it (loop).
735 (t))))))
737 (python-indentation-levels)
738 ;; Prefer to indent comments with an immediately-following
739 ;; statement, e.g.
740 ;; ...
741 ;; # ...
742 ;; def ...
743 (when (and (> python-indent-list-length 1)
744 (python-comment-line-p))
745 (forward-line)
746 (unless (python-comment-line-p)
747 (let ((elt (assq (current-indentation) python-indent-list)))
748 (setq python-indent-list
749 (nconc (delete elt python-indent-list)
750 (list elt))))))
751 (caar (last python-indent-list)))))))
753 ;;;; Cycling through the possible indentations with successive TABs.
755 ;; These don't need to be buffer-local since they're only relevant
756 ;; during a cycle.
758 (defun python-initial-text ()
759 "Text of line following indentation and ignoring any trailing comment."
760 (save-excursion
761 (buffer-substring (progn
762 (back-to-indentation)
763 (point))
764 (progn
765 (end-of-line)
766 (forward-comment -1)
767 (point)))))
769 (defconst python-block-pairs
770 '(("else" "if" "elif" "while" "for" "try" "except")
771 ("elif" "if" "elif")
772 ("except" "try" "except")
773 ("finally" "else" "try" "except"))
774 "Alist of keyword matches.
775 The car of an element is a keyword introducing a statement which
776 can close a block opened by a keyword in the cdr.")
778 (defun python-first-word ()
779 "Return first word (actually symbol) on the line."
780 (save-excursion
781 (back-to-indentation)
782 (current-word t)))
784 (defun python-indentation-levels ()
785 "Return a list of possible indentations for this line.
786 It is assumed not to be a continuation line or in a multi-line string.
787 Includes the default indentation and those which would close all
788 enclosing blocks. Elements of the list are actually pairs:
789 \(INDENTATION . TEXT), where TEXT is the initial text of the
790 corresponding block opening (or nil)."
791 (save-excursion
792 (let ((initial "")
793 levels indent)
794 ;; Only one possibility immediately following a block open
795 ;; statement, assuming it doesn't have a `suite' on the same line.
796 (cond
797 ((save-excursion (and (python-previous-statement)
798 (python-open-block-statement-p t)
799 (setq indent (current-indentation))
800 ;; Check we don't have something like:
801 ;; if ...: ...
802 (if (progn (python-end-of-statement)
803 (python-skip-comments/blanks t)
804 (eq ?: (char-before)))
805 (setq indent (+ python-indent indent)))))
806 (push (cons indent initial) levels))
807 ;; Only one possibility for comment line immediately following
808 ;; another.
809 ((save-excursion
810 (when (python-comment-line-p)
811 (forward-line -1)
812 (if (python-comment-line-p)
813 (push (cons (current-indentation) initial) levels)))))
814 ;; Fixme: Maybe have a case here which indents (only) first
815 ;; line after a lambda.
817 (let ((start (car (assoc (python-first-word) python-block-pairs))))
818 (python-previous-statement)
819 ;; Is this a valid indentation for the line of interest?
820 (unless (or (if start ; potentially only outdentable
821 ;; Check for things like:
822 ;; if ...: ...
823 ;; else ...:
824 ;; where the second line need not be outdented.
825 (not (member (python-first-word)
826 (cdr (assoc start
827 python-block-pairs)))))
828 ;; Not sensible to indent to the same level as
829 ;; previous `return' &c.
830 (python-close-block-statement-p))
831 (push (cons (current-indentation) (python-initial-text))
832 levels))
833 (while (python-beginning-of-block)
834 (when (or (not start)
835 (member (python-first-word)
836 (cdr (assoc start python-block-pairs))))
837 (push (cons (current-indentation) (python-initial-text))
838 levels))))))
839 (prog1 (or levels (setq levels '((0 . ""))))
840 (setq python-indent-list levels
841 python-indent-list-length (length python-indent-list))))))
843 ;; This is basically what `python-indent-line' would be if we didn't
844 ;; do the cycling.
845 (defun python-indent-line-1 (&optional leave)
846 "Subroutine of `python-indent-line'.
847 Does non-repeated indentation. LEAVE non-nil means leave
848 indentation if it is valid, i.e. one of the positions returned by
849 `python-calculate-indentation'."
850 (let ((target (python-calculate-indentation))
851 (pos (- (point-max) (point))))
852 (if (or (= target (current-indentation))
853 ;; Maybe keep a valid indentation.
854 (and leave python-indent-list
855 (assq (current-indentation) python-indent-list)))
856 (if (< (current-column) (current-indentation))
857 (back-to-indentation))
858 (beginning-of-line)
859 (delete-horizontal-space)
860 (indent-to target)
861 (if (> (- (point-max) pos) (point))
862 (goto-char (- (point-max) pos))))))
864 (defun python-indent-line ()
865 "Indent current line as Python code.
866 When invoked via `indent-for-tab-command', cycle through possible
867 indentations for current line. The cycle is broken by a command
868 different from `indent-for-tab-command', i.e. successive TABs do
869 the cycling."
870 (interactive)
871 (if (and (eq this-command 'indent-for-tab-command)
872 (eq last-command this-command))
873 (if (= 1 python-indent-list-length)
874 (message "Sole indentation")
875 (progn (setq python-indent-index
876 (% (1+ python-indent-index) python-indent-list-length))
877 (beginning-of-line)
878 (delete-horizontal-space)
879 (indent-to (car (nth python-indent-index python-indent-list)))
880 (if (python-block-end-p)
881 (let ((text (cdr (nth python-indent-index
882 python-indent-list))))
883 (if text
884 (message "Closes: %s" text))))))
885 (python-indent-line-1)
886 (setq python-indent-index (1- python-indent-list-length))))
888 (defun python-indent-region (start end)
889 "`indent-region-function' for Python.
890 Leaves validly-indented lines alone, i.e. doesn't indent to
891 another valid position."
892 (save-excursion
893 (goto-char end)
894 (setq end (point-marker))
895 (goto-char start)
896 (or (bolp) (forward-line 1))
897 (while (< (point) end)
898 (or (and (bolp) (eolp))
899 (python-indent-line-1 t))
900 (forward-line 1))
901 (move-marker end nil)))
903 (defun python-block-end-p ()
904 "Non-nil if this is a line in a statement closing a block,
905 or a blank line indented to where it would close a block."
906 (and (not (python-comment-line-p))
907 (or (python-close-block-statement-p t)
908 (< (current-indentation)
909 (save-excursion
910 (python-previous-statement)
911 (current-indentation))))))
913 ;;;; Movement.
915 ;; Fixme: Define {for,back}ward-sexp-function? Maybe skip units like
916 ;; block, statement, depending on context.
918 (defun python-beginning-of-defun ()
919 "`beginning-of-defun-function' for Python.
920 Finds beginning of innermost nested class or method definition.
921 Returns the name of the definition found at the end, or nil if
922 reached start of buffer."
923 (let ((ci (current-indentation))
924 (def-re (rx line-start (0+ space) (or "def" "class") (1+ space)
925 (group (1+ (or word (syntax symbol))))))
926 found lep) ;; def-line
927 (if (python-comment-line-p)
928 (setq ci most-positive-fixnum))
929 (while (and (not (bobp)) (not found))
930 ;; Treat bol at beginning of function as outside function so
931 ;; that successive C-M-a makes progress backwards.
932 ;;(setq def-line (looking-at def-re))
933 (unless (bolp) (end-of-line))
934 (setq lep (line-end-position))
935 (if (and (re-search-backward def-re nil 'move)
936 ;; Must be less indented or matching top level, or
937 ;; equally indented if we started on a definition line.
938 (let ((in (current-indentation)))
939 (or (and (zerop ci) (zerop in))
940 (= lep (line-end-position)) ; on initial line
941 ;; Not sure why it was like this -- fails in case of
942 ;; last internal function followed by first
943 ;; non-def statement of the main body.
944 ;; (and def-line (= in ci))
945 (= in ci)
946 (< in ci)))
947 (not (python-in-string/comment)))
948 (setq found t)))
949 found))
951 (defun python-end-of-defun ()
952 "`end-of-defun-function' for Python.
953 Finds end of innermost nested class or method definition."
954 (let ((orig (point))
955 (pattern (rx line-start (0+ space) (or "def" "class") space)))
956 ;; Go to start of current block and check whether it's at top
957 ;; level. If it is, and not a block start, look forward for
958 ;; definition statement.
959 (when (python-comment-line-p)
960 (end-of-line)
961 (forward-comment most-positive-fixnum))
962 (if (not (python-open-block-statement-p))
963 (python-beginning-of-block))
964 (if (zerop (current-indentation))
965 (unless (python-open-block-statement-p)
966 (while (and (re-search-forward pattern nil 'move)
967 (python-in-string/comment))) ; just loop
968 (unless (eobp)
969 (beginning-of-line)))
970 ;; Don't move before top-level statement that would end defun.
971 (end-of-line)
972 (python-beginning-of-defun))
973 ;; If we got to the start of buffer, look forward for
974 ;; definition statement.
975 (if (and (bobp) (not (looking-at "def\\|class")))
976 (while (and (not (eobp))
977 (re-search-forward pattern nil 'move)
978 (python-in-string/comment)))) ; just loop
979 ;; We're at a definition statement (or end-of-buffer).
980 (unless (eobp)
981 (python-end-of-block)
982 ;; Count trailing space in defun (but not trailing comments).
983 (skip-syntax-forward " >")
984 (unless (eobp) ; e.g. missing final newline
985 (beginning-of-line)))
986 ;; Catch pathological cases like this, where the beginning-of-defun
987 ;; skips to a definition we're not in:
988 ;; if ...:
989 ;; ...
990 ;; else:
991 ;; ... # point here
992 ;; ...
993 ;; def ...
994 (if (< (point) orig)
995 (goto-char (point-max)))))
997 (defun python-beginning-of-statement ()
998 "Go to start of current statement.
999 Accounts for continuation lines, multi-line strings, and
1000 multi-line bracketed expressions."
1001 (beginning-of-line)
1002 (python-beginning-of-string)
1003 (let (point)
1004 (while (and (python-continuation-line-p)
1005 (if point
1006 (< (point) point)
1008 (beginning-of-line)
1009 (if (python-backslash-continuation-line-p)
1010 (progn
1011 (forward-line -1)
1012 (while (python-backslash-continuation-line-p)
1013 (forward-line -1)))
1014 (python-beginning-of-string)
1015 (python-skip-out))
1016 (setq point (point))))
1017 (back-to-indentation))
1019 (defun python-skip-out (&optional forward syntax)
1020 "Skip out of any nested brackets.
1021 Skip forward if FORWARD is non-nil, else backward.
1022 If SYNTAX is non-nil it is the state returned by `syntax-ppss' at point.
1023 Return non-nil if and only if skipping was done."
1024 (let ((depth (syntax-ppss-depth (or syntax (syntax-ppss))))
1025 (forward (if forward -1 1)))
1026 (unless (zerop depth)
1027 (if (> depth 0)
1028 ;; Skip forward out of nested brackets.
1029 (condition-case () ; beware invalid syntax
1030 (progn (backward-up-list (* forward depth)) t)
1031 (error nil))
1032 ;; Invalid syntax (too many closed brackets).
1033 ;; Skip out of as many as possible.
1034 (let (done)
1035 (while (condition-case ()
1036 (progn (backward-up-list forward)
1037 (setq done t))
1038 (error nil)))
1039 done)))))
1041 (defun python-end-of-statement ()
1042 "Go to the end of the current statement and return point.
1043 Usually this is the start of the next line, but if this is a
1044 multi-line statement we need to skip over the continuation lines.
1045 On a comment line, go to end of line."
1046 (end-of-line)
1047 (while (let (comment)
1048 ;; Move past any enclosing strings and sexps, or stop if
1049 ;; we're in a comment.
1050 (while (let ((s (syntax-ppss)))
1051 (cond ((eq 'comment (syntax-ppss-context s))
1052 (setq comment t)
1053 nil)
1054 ((eq 'string (syntax-ppss-context s))
1055 ;; Go to start of string and skip it.
1056 (let ((pos (point)))
1057 (goto-char (nth 8 s))
1058 (condition-case () ; beware invalid syntax
1059 (progn (forward-sexp) t)
1060 ;; If there's a mismatched string, make sure
1061 ;; we still overall move *forward*.
1062 (error (goto-char pos) (end-of-line)))))
1063 ((python-skip-out t s))))
1064 (end-of-line))
1065 (unless comment
1066 (eq ?\\ (char-before)))) ; Line continued?
1067 (end-of-line 2)) ; Try next line.
1068 (point))
1070 (defun python-previous-statement (&optional count)
1071 "Go to start of previous statement.
1072 With argument COUNT, do it COUNT times. Stop at beginning of buffer.
1073 Return count of statements left to move."
1074 (interactive "p")
1075 (unless count (setq count 1))
1076 (if (< count 0)
1077 (python-next-statement (- count))
1078 (python-beginning-of-statement)
1079 (while (and (> count 0) (not (bobp)))
1080 (python-skip-comments/blanks t)
1081 (python-beginning-of-statement)
1082 (unless (bobp) (setq count (1- count))))
1083 count))
1085 (defun python-next-statement (&optional count)
1086 "Go to start of next statement.
1087 With argument COUNT, do it COUNT times. Stop at end of buffer.
1088 Return count of statements left to move."
1089 (interactive "p")
1090 (unless count (setq count 1))
1091 (if (< count 0)
1092 (python-previous-statement (- count))
1093 (beginning-of-line)
1094 (let (bogus)
1095 (while (and (> count 0) (not (eobp)) (not bogus))
1096 (python-end-of-statement)
1097 (python-skip-comments/blanks)
1098 (if (eq 'string (syntax-ppss-context (syntax-ppss)))
1099 (setq bogus t)
1100 (unless (eobp)
1101 (setq count (1- count))))))
1102 count))
1104 (defun python-beginning-of-block (&optional arg)
1105 "Go to start of current block.
1106 With numeric arg, do it that many times. If ARG is negative, call
1107 `python-end-of-block' instead.
1108 If point is on the first line of a block, use its outer block.
1109 If current statement is in column zero, don't move and return nil.
1110 Otherwise return non-nil."
1111 (interactive "p")
1112 (unless arg (setq arg 1))
1113 (cond
1114 ((zerop arg))
1115 ((< arg 0) (python-end-of-block (- arg)))
1117 (let ((point (point)))
1118 (if (or (python-comment-line-p)
1119 (python-blank-line-p))
1120 (python-skip-comments/blanks t))
1121 (python-beginning-of-statement)
1122 (let ((ci (current-indentation)))
1123 (if (zerop ci)
1124 (not (goto-char point)) ; return nil
1125 ;; Look upwards for less indented statement.
1126 (if (catch 'done
1127 ;;; This is slower than the below.
1128 ;;; (while (zerop (python-previous-statement))
1129 ;;; (when (and (< (current-indentation) ci)
1130 ;;; (python-open-block-statement-p t))
1131 ;;; (beginning-of-line)
1132 ;;; (throw 'done t)))
1133 (while (and (zerop (forward-line -1)))
1134 (when (and (< (current-indentation) ci)
1135 (not (python-comment-line-p))
1136 ;; Move to beginning to save effort in case
1137 ;; this is in string.
1138 (progn (python-beginning-of-statement) t)
1139 (python-open-block-statement-p t))
1140 (beginning-of-line)
1141 (throw 'done t)))
1142 (not (goto-char point))) ; Failed -- return nil
1143 (python-beginning-of-block (1- arg)))))))))
1145 (defun python-end-of-block (&optional arg)
1146 "Go to end of current block.
1147 With numeric arg, do it that many times. If ARG is negative,
1148 call `python-beginning-of-block' instead.
1149 If current statement is in column zero and doesn't open a block,
1150 don't move and return nil. Otherwise return t."
1151 (interactive "p")
1152 (unless arg (setq arg 1))
1153 (if (< arg 0)
1154 (python-beginning-of-block (- arg))
1155 (while (and (> arg 0)
1156 (let* ((point (point))
1157 (_ (if (python-comment-line-p)
1158 (python-skip-comments/blanks t)))
1159 (ci (current-indentation))
1160 (open (python-open-block-statement-p)))
1161 (if (and (zerop ci) (not open))
1162 (not (goto-char point))
1163 (catch 'done
1164 (while (zerop (python-next-statement))
1165 (when (or (and open (<= (current-indentation) ci))
1166 (< (current-indentation) ci))
1167 (python-skip-comments/blanks t)
1168 (beginning-of-line 2)
1169 (throw 'done t)))))))
1170 (setq arg (1- arg)))
1171 (zerop arg)))
1173 (defvar python-which-func-length-limit 40
1174 "Non-strict length limit for `python-which-func' output.")
1176 (defun python-which-func ()
1177 (let ((function-name (python-current-defun python-which-func-length-limit)))
1178 (set-text-properties 0 (length function-name) nil function-name)
1179 function-name))
1182 ;;;; Imenu.
1184 ;; For possibily speeding this up, here's the top of the ELP profile
1185 ;; for rescanning pydoc.py (2.2k lines, 90kb):
1186 ;; Function Name Call Count Elapsed Time Average Time
1187 ;; ==================================== ========== ============= ============
1188 ;; python-imenu-create-index 156 2.430906 0.0155827307
1189 ;; python-end-of-defun 155 1.2718260000 0.0082053290
1190 ;; python-end-of-block 155 1.1898689999 0.0076765741
1191 ;; python-next-statement 2970 1.024717 0.0003450225
1192 ;; python-end-of-statement 2970 0.4332190000 0.0001458649
1193 ;; python-beginning-of-defun 265 0.0918479999 0.0003465962
1194 ;; python-skip-comments/blanks 3125 0.0753319999 2.410...e-05
1196 (defvar python-recursing)
1197 (defun python-imenu-create-index ()
1198 "`imenu-create-index-function' for Python.
1200 Makes nested Imenu menus from nested `class' and `def' statements.
1201 The nested menus are headed by an item referencing the outer
1202 definition; it has a space prepended to the name so that it sorts
1203 first with `imenu--sort-by-name' (though, unfortunately, sub-menus
1204 precede it)."
1205 (unless (boundp 'python-recursing) ; dynamically bound below
1206 ;; Normal call from Imenu.
1207 (goto-char (point-min))
1208 ;; Without this, we can get an infloop if the buffer isn't all
1209 ;; fontified. I guess this is really a bug in syntax.el. OTOH,
1210 ;; _with_ this, imenu doesn't immediately work; I can't figure out
1211 ;; what's going on, but it must be something to do with timers in
1212 ;; font-lock.
1213 ;; This can't be right, especially not when jit-lock is not used. --Stef
1214 ;; (unless (get-text-property (1- (point-max)) 'fontified)
1215 ;; (font-lock-fontify-region (point-min) (point-max)))
1217 (let (index-alist) ; accumulated value to return
1218 (while (re-search-forward
1219 (rx line-start (0+ space) ; leading space
1220 (or (group "def") (group "class")) ; type
1221 (1+ space) (group (1+ (or word ?_)))) ; name
1222 nil t)
1223 (unless (python-in-string/comment)
1224 (let ((pos (match-beginning 0))
1225 (name (match-string-no-properties 3)))
1226 (if (match-beginning 2) ; def or class?
1227 (setq name (concat "class " name)))
1228 (save-restriction
1229 (narrow-to-defun)
1230 (let* ((python-recursing t)
1231 (sublist (python-imenu-create-index)))
1232 (if sublist
1233 (progn (push (cons (concat " " name) pos) sublist)
1234 (push (cons name sublist) index-alist))
1235 (push (cons name pos) index-alist)))))))
1236 (unless (boundp 'python-recursing)
1237 ;; Look for module variables.
1238 (let (vars)
1239 (goto-char (point-min))
1240 (while (re-search-forward
1241 (rx line-start (group (1+ (or word ?_))) (0+ space) "=")
1242 nil t)
1243 (unless (python-in-string/comment)
1244 (push (cons (match-string 1) (match-beginning 1))
1245 vars)))
1246 (setq index-alist (nreverse index-alist))
1247 (if vars
1248 (push (cons "Module variables"
1249 (nreverse vars))
1250 index-alist))))
1251 index-alist))
1253 ;;;; `Electric' commands.
1255 (defun python-electric-colon (arg)
1256 "Insert a colon and maybe outdent the line if it is a statement like `else'.
1257 With numeric ARG, just insert that many colons. With \\[universal-argument],
1258 just insert a single colon."
1259 (interactive "*P")
1260 (self-insert-command (if (not (integerp arg)) 1 arg))
1261 (and (not arg)
1262 (eolp)
1263 (python-outdent-p)
1264 (not (python-in-string/comment))
1265 (> (current-indentation) (python-calculate-indentation))
1266 (python-indent-line))) ; OK, do it
1267 (put 'python-electric-colon 'delete-selection t)
1269 (defun python-backspace (arg)
1270 "Maybe delete a level of indentation on the current line.
1271 Do so if point is at the end of the line's indentation outside
1272 strings and comments.
1273 Otherwise just call `backward-delete-char-untabify'.
1274 Repeat ARG times."
1275 (interactive "*p")
1276 (if (or (/= (current-indentation) (current-column))
1277 (bolp)
1278 (python-continuation-line-p)
1279 (python-in-string/comment))
1280 (backward-delete-char-untabify arg)
1281 ;; Look for the largest valid indentation which is smaller than
1282 ;; the current indentation.
1283 (let ((indent 0)
1284 (ci (current-indentation))
1285 (indents (python-indentation-levels))
1286 initial)
1287 (dolist (x indents)
1288 (if (< (car x) ci)
1289 (setq indent (max indent (car x)))))
1290 (setq initial (cdr (assq indent indents)))
1291 (if (> (length initial) 0)
1292 (message "Closes %s" initial))
1293 (delete-horizontal-space)
1294 (indent-to indent))))
1295 (put 'python-backspace 'delete-selection 'supersede)
1297 ;;;; pychecker
1299 (defcustom python-check-command "pychecker --stdlib"
1300 "Command used to check a Python file."
1301 :type 'string
1302 :group 'python)
1304 (defvar python-saved-check-command nil
1305 "Internal use.")
1307 ;; After `sgml-validate-command'.
1308 (defun python-check (command)
1309 "Check a Python file (default current buffer's file).
1310 Runs COMMAND, a shell command, as if by `compile'.
1311 See `python-check-command' for the default."
1312 (interactive
1313 (list (read-string "Checker command: "
1314 (or python-saved-check-command
1315 (concat python-check-command " "
1316 (let ((name (buffer-file-name)))
1317 (if name
1318 (file-name-nondirectory name))))))))
1319 (setq python-saved-check-command command)
1320 (require 'compile) ;To define compilation-* variables.
1321 (save-some-buffers (not compilation-ask-about-save) nil)
1322 (let ((compilation-error-regexp-alist
1323 (cons '("(\\([^,]+\\), line \\([0-9]+\\))" 1 2)
1324 compilation-error-regexp-alist)))
1325 (compilation-start command)))
1327 ;;;; Inferior mode stuff (following cmuscheme).
1329 (defcustom python-python-command "python"
1330 "Shell command to run Python interpreter.
1331 Any arguments can't contain whitespace."
1332 :group 'python
1333 :type 'string)
1335 (defcustom python-jython-command "jython"
1336 "Shell command to run Jython interpreter.
1337 Any arguments can't contain whitespace."
1338 :group 'python
1339 :type 'string)
1341 (defvar python-command python-python-command
1342 "Actual command used to run Python.
1343 May be `python-python-command' or `python-jython-command', possibly
1344 modified by the user. Additional arguments are added when the command
1345 is used by `run-python' et al.")
1347 (defvar python-buffer nil
1348 "*The current Python process buffer.
1350 Commands that send text from source buffers to Python processes have
1351 to choose a process to send to. This is determined by buffer-local
1352 value of `python-buffer'. If its value in the current buffer,
1353 i.e. both any local value and the default one, is nil, `run-python'
1354 and commands that send to the Python process will start a new process.
1356 Whenever \\[run-python] starts a new process, it resets the default
1357 value of `python-buffer' to be the new process's buffer and sets the
1358 buffer-local value similarly if the current buffer is in Python mode
1359 or Inferior Python mode, so that source buffer stays associated with a
1360 specific sub-process.
1362 Use \\[python-set-proc] to set the default value from a buffer with a
1363 local value.")
1364 (make-variable-buffer-local 'python-buffer)
1366 (defconst python-compilation-regexp-alist
1367 ;; FIXME: maybe these should move to compilation-error-regexp-alist-alist.
1368 ;; The first already is (for CAML), but the second isn't. Anyhow,
1369 ;; these are specific to the inferior buffer. -- fx
1370 `((,(rx line-start (1+ (any " \t")) "File \""
1371 (group (1+ (not (any "\"<")))) ; avoid `<stdin>' &c
1372 "\", line " (group (1+ digit)))
1373 1 2)
1374 (,(rx " in file " (group (1+ not-newline)) " on line "
1375 (group (1+ digit)))
1376 1 2)
1377 ;; pdb stack trace
1378 (,(rx line-start "> " (group (1+ (not (any "(\"<"))))
1379 "(" (group (1+ digit)) ")" (1+ (not (any "("))) "()")
1380 1 2))
1381 "`compilation-error-regexp-alist' for inferior Python.")
1383 (defvar inferior-python-mode-map
1384 (let ((map (make-sparse-keymap)))
1385 ;; This will inherit from comint-mode-map.
1386 (define-key map "\C-c\C-l" 'python-load-file)
1387 (define-key map "\C-c\C-v" 'python-check)
1388 ;; Note that we _can_ still use these commands which send to the
1389 ;; Python process even at the prompt iff we have a normal prompt,
1390 ;; i.e. '>>> ' and not '... '. See the comment before
1391 ;; python-send-region. Fixme: uncomment these if we address that.
1393 ;; (define-key map [(meta ?\t)] 'python-complete-symbol)
1394 ;; (define-key map "\C-c\C-f" 'python-describe-symbol)
1395 map))
1397 (defvar inferior-python-mode-syntax-table
1398 (let ((st (make-syntax-table python-mode-syntax-table)))
1399 ;; Don't get confused by apostrophes in the process's output (e.g. if
1400 ;; you execute "help(os)").
1401 (modify-syntax-entry ?\' "." st)
1402 ;; Maybe we should do the same for double quotes?
1403 ;; (modify-syntax-entry ?\" "." st)
1404 st))
1406 ;; Autoloaded.
1407 (declare-function compilation-shell-minor-mode "compile" (&optional arg))
1409 (defvar python--prompt-regexp nil)
1411 (defun python--set-prompt-regexp ()
1412 (let ((prompt (cdr-safe (or (assoc python-python-command
1413 python-shell-prompt-alist)
1414 (assq t python-shell-prompt-alist))))
1415 (cprompt (cdr-safe (or (assoc python-python-command
1416 python-shell-continuation-prompt-alist)
1417 (assq t python-shell-continuation-prompt-alist)))))
1418 (set (make-local-variable 'comint-prompt-regexp)
1419 (concat "\\("
1420 (mapconcat 'identity
1421 (delq nil (list prompt cprompt "^([Pp]db) "))
1422 "\\|")
1423 "\\)"))
1424 (set (make-local-variable 'python--prompt-regexp) prompt)))
1426 ;; Fixme: This should inherit some stuff from `python-mode', but I'm
1427 ;; not sure how much: at least some keybindings, like C-c C-f;
1428 ;; syntax?; font-locking, e.g. for triple-quoted strings?
1429 (define-derived-mode inferior-python-mode comint-mode "Inferior Python"
1430 "Major mode for interacting with an inferior Python process.
1431 A Python process can be started with \\[run-python].
1433 Hooks `comint-mode-hook' and `inferior-python-mode-hook' are run in
1434 that order.
1436 You can send text to the inferior Python process from other buffers
1437 containing Python source.
1438 * \\[python-switch-to-python] switches the current buffer to the Python
1439 process buffer.
1440 * \\[python-send-region] sends the current region to the Python process.
1441 * \\[python-send-region-and-go] switches to the Python process buffer
1442 after sending the text.
1443 For running multiple processes in multiple buffers, see `run-python' and
1444 `python-buffer'.
1446 \\{inferior-python-mode-map}"
1447 :group 'python
1448 (require 'ansi-color) ; for ipython
1449 (setq mode-line-process '(":%s"))
1450 (set (make-local-variable 'comint-input-filter) 'python-input-filter)
1451 (add-hook 'comint-preoutput-filter-functions #'python-preoutput-filter
1452 nil t)
1453 (python--set-prompt-regexp)
1454 (set (make-local-variable 'compilation-error-regexp-alist)
1455 python-compilation-regexp-alist)
1456 (compilation-shell-minor-mode 1))
1458 (defcustom inferior-python-filter-regexp "\\`\\s-*\\S-?\\S-?\\s-*\\'"
1459 "Input matching this regexp is not saved on the history list.
1460 Default ignores all inputs of 0, 1, or 2 non-blank characters."
1461 :type 'regexp
1462 :group 'python)
1464 (defun python-input-filter (str)
1465 "`comint-input-filter' function for inferior Python.
1466 Don't save anything for STR matching `inferior-python-filter-regexp'."
1467 (not (string-match inferior-python-filter-regexp str)))
1469 ;; Fixme: Loses with quoted whitespace.
1470 (defun python-args-to-list (string)
1471 (let ((where (string-match "[ \t]" string)))
1472 (cond ((null where) (list string))
1473 ((not (= where 0))
1474 (cons (substring string 0 where)
1475 (python-args-to-list (substring string (+ 1 where)))))
1476 (t (let ((pos (string-match "[^ \t]" string)))
1477 (if pos (python-args-to-list (substring string pos))))))))
1479 (defvar python-preoutput-result nil
1480 "Data from last `_emacs_out' line seen by the preoutput filter.")
1482 (defvar python-preoutput-continuation nil
1483 "If non-nil, funcall this when `python-preoutput-filter' sees `_emacs_ok'.")
1485 (defvar python-preoutput-leftover nil)
1486 (defvar python-preoutput-skip-next-prompt nil)
1488 ;; Using this stops us getting lines in the buffer like
1489 ;; >>> ... ... >>>
1490 ;; Also look for (and delete) an `_emacs_ok' string and call
1491 ;; `python-preoutput-continuation' if we get it.
1492 (defun python-preoutput-filter (s)
1493 "`comint-preoutput-filter-functions' function: ignore prompts not at bol."
1494 (when python-preoutput-leftover
1495 (setq s (concat python-preoutput-leftover s))
1496 (setq python-preoutput-leftover nil))
1497 (let ((start 0)
1498 (res ""))
1499 ;; First process whole lines.
1500 (while (string-match "\n" s start)
1501 (let ((line (substring s start (setq start (match-end 0)))))
1502 ;; Skip prompt if needed.
1503 (when (and python-preoutput-skip-next-prompt
1504 (string-match comint-prompt-regexp line))
1505 (setq python-preoutput-skip-next-prompt nil)
1506 (setq line (substring line (match-end 0))))
1507 ;; Recognize special _emacs_out lines.
1508 (if (and (string-match "\\`_emacs_out \\(.*\\)\n\\'" line)
1509 (local-variable-p 'python-preoutput-result))
1510 (progn
1511 (setq python-preoutput-result (match-string 1 line))
1512 (set (make-local-variable 'python-preoutput-skip-next-prompt) t))
1513 (setq res (concat res line)))))
1514 ;; Then process the remaining partial line.
1515 (unless (zerop start) (setq s (substring s start)))
1516 (cond ((and (string-match comint-prompt-regexp s)
1517 ;; Drop this prompt if it follows an _emacs_out...
1518 (or python-preoutput-skip-next-prompt
1519 ;; ... or if it's not gonna be inserted at BOL.
1520 ;; Maybe we could be more selective here.
1521 (if (zerop (length res))
1522 (not (bolp))
1523 (string-match ".\\'" res))))
1524 ;; The need for this seems to be system-dependent:
1525 ;; What is this all about, exactly? --Stef
1526 ;; (if (and (eq ?. (aref s 0)))
1527 ;; (accept-process-output (get-buffer-process (current-buffer)) 1))
1528 (setq python-preoutput-skip-next-prompt nil)
1529 res)
1530 ((let ((end (min (length "_emacs_out ") (length s))))
1531 (eq t (compare-strings s nil end "_emacs_out " nil end)))
1532 ;; The leftover string is a prefix of _emacs_out so we don't know
1533 ;; yet whether it's an _emacs_out or something else: wait until we
1534 ;; get more output so we can resolve this ambiguity.
1535 (set (make-local-variable 'python-preoutput-leftover) s)
1536 res)
1537 (t (concat res s)))))
1539 (autoload 'comint-check-proc "comint")
1541 (defvar python-version-checked nil)
1542 (defun python-check-version (cmd)
1543 "Check that CMD runs a suitable version of Python."
1544 ;; Fixme: Check on Jython.
1545 (unless (or python-version-checked
1546 (equal 0 (string-match (regexp-quote python-python-command)
1547 cmd)))
1548 (unless (shell-command-to-string cmd)
1549 (error "Can't run Python command `%s'" cmd))
1550 (let* ((res (shell-command-to-string
1551 (concat cmd
1552 " -c \"from sys import version_info;\
1553 print version_info >= (2, 2) and version_info < (3, 0)\""))))
1554 (unless (string-match "True" res)
1555 (error "Only Python versions >= 2.2 and < 3.0 are supported")))
1556 (setq python-version-checked t)))
1558 ;;;###autoload
1559 (defun run-python (&optional cmd noshow new)
1560 "Run an inferior Python process, input and output via buffer *Python*.
1561 CMD is the Python command to run. NOSHOW non-nil means don't show the
1562 buffer automatically.
1564 Normally, if there is a process already running in `python-buffer',
1565 switch to that buffer. Interactively, a prefix arg allows you to edit
1566 the initial command line (default is `python-command'); `-i' etc. args
1567 will be added to this as appropriate. A new process is started if:
1568 one isn't running attached to `python-buffer', or interactively the
1569 default `python-command', or argument NEW is non-nil. See also the
1570 documentation for `python-buffer'.
1572 Runs the hook `inferior-python-mode-hook' \(after the
1573 `comint-mode-hook' is run). \(Type \\[describe-mode] in the process
1574 buffer for a list of commands.)"
1575 (interactive (if current-prefix-arg
1576 (list (read-string "Run Python: " python-command) nil t)
1577 (list python-command)))
1578 (require 'ansi-color) ; for ipython
1579 (unless cmd (setq cmd python-command))
1580 (python-check-version cmd)
1581 (setq python-command cmd)
1582 ;; Fixme: Consider making `python-buffer' buffer-local as a buffer
1583 ;; (not a name) in Python buffers from which `run-python' &c is
1584 ;; invoked. Would support multiple processes better.
1585 (when (or new (not (comint-check-proc python-buffer)))
1586 (with-current-buffer
1587 (let* ((cmdlist
1588 (append (python-args-to-list cmd)
1589 ;; It's easy for the user to cause the process to be
1590 ;; started without realizing it (e.g. to perform
1591 ;; completion); for this reason loading files from the
1592 ;; current directory is a security risk. See
1593 ;; http://article.gmane.org/gmane.emacs.devel/103569
1594 '("-i" "-c" "import sys; sys.path.remove('')")))
1595 (path (getenv "PYTHONPATH"))
1596 (process-environment ; to import emacs.py
1597 (cons (concat "PYTHONPATH="
1598 (if path (concat path path-separator))
1599 data-directory)
1600 process-environment))
1601 ;; If we use a pipe, unicode characters are not printed
1602 ;; correctly (Bug#5794) and IPython does not work at
1603 ;; all (Bug#5390).
1604 (process-connection-type t))
1605 (apply 'make-comint-in-buffer "Python"
1606 (generate-new-buffer "*Python*")
1607 (car cmdlist) nil (cdr cmdlist)))
1608 (setq-default python-buffer (current-buffer))
1609 (setq python-buffer (current-buffer))
1610 (accept-process-output (get-buffer-process python-buffer) 5)
1611 (inferior-python-mode)
1612 ;; Load function definitions we need.
1613 ;; Before the preoutput function was used, this was done via -c in
1614 ;; cmdlist, but that loses the banner and doesn't run the startup
1615 ;; file. The code might be inline here, but there's enough that it
1616 ;; seems worth putting in a separate file, and it's probably cleaner
1617 ;; to put it in a module.
1618 ;; Ensure we're at a prompt before doing anything else.
1619 (python-send-string "import emacs")
1620 ;; The following line was meant to ensure that we're at a prompt
1621 ;; before doing anything else. However, this can cause Emacs to
1622 ;; hang waiting for a response, if that Python function fails
1623 ;; (i.e. raises an exception).
1624 ;; (python-send-receive "print '_emacs_out ()'")
1626 (if (derived-mode-p 'python-mode)
1627 (setq python-buffer (default-value 'python-buffer))) ; buffer-local
1628 ;; Without this, help output goes into the inferior python buffer if
1629 ;; the process isn't already running.
1630 (sit-for 1 t) ;Should we use accept-process-output instead? --Stef
1631 (unless noshow (pop-to-buffer python-buffer t)))
1633 (defun python-send-command (command)
1634 "Like `python-send-string' but resets `compilation-shell-minor-mode'."
1635 (when (python-check-comint-prompt)
1636 (with-current-buffer (process-buffer (python-proc))
1637 (goto-char (point-max))
1638 (compilation-forget-errors)
1639 (python-send-string command)
1640 (setq compilation-last-buffer (current-buffer)))))
1642 (defun python-send-region (start end)
1643 "Send the region to the inferior Python process."
1644 ;; The region is evaluated from a temporary file. This avoids
1645 ;; problems with blank lines, which have different semantics
1646 ;; interactively and in files. It also saves the inferior process
1647 ;; buffer filling up with interpreter prompts. We need a Python
1648 ;; function to remove the temporary file when it has been evaluated
1649 ;; (though we could probably do it in Lisp with a Comint output
1650 ;; filter). This function also catches exceptions and truncates
1651 ;; tracebacks not to mention the frame of the function itself.
1653 ;; The `compilation-shell-minor-mode' parsing takes care of relating
1654 ;; the reference to the temporary file to the source.
1656 ;; Fixme: Write a `coding' header to the temp file if the region is
1657 ;; non-ASCII.
1658 (interactive "r")
1659 (let* ((f (make-temp-file "py"))
1660 (command
1661 ;; IPython puts the FakeModule module into __main__ so
1662 ;; emacs.eexecfile becomes useless.
1663 (if (string-match "^ipython" python-command)
1664 (format "execfile %S" f)
1665 (format "emacs.eexecfile(%S)" f)))
1666 (orig-start (copy-marker start)))
1667 (when (save-excursion
1668 (goto-char start)
1669 (/= 0 (current-indentation))) ; need dummy block
1670 (save-excursion
1671 (goto-char orig-start)
1672 ;; Wrong if we had indented code at buffer start.
1673 (set-marker orig-start (line-beginning-position 0)))
1674 (write-region "if True:\n" nil f nil 'nomsg))
1675 (write-region start end f t 'nomsg)
1676 (python-send-command command)
1677 (with-current-buffer (process-buffer (python-proc))
1678 ;; Tell compile.el to redirect error locations in file `f' to
1679 ;; positions past marker `orig-start'. It has to be done *after*
1680 ;; `python-send-command''s call to `compilation-forget-errors'.
1681 (compilation-fake-loc orig-start f))))
1683 (defun python-send-string (string)
1684 "Evaluate STRING in inferior Python process."
1685 (interactive "sPython command: ")
1686 (comint-send-string (python-proc) string)
1687 (unless (string-match "\n\\'" string)
1688 ;; Make sure the text is properly LF-terminated.
1689 (comint-send-string (python-proc) "\n"))
1690 (when (string-match "\n[ \t].*\n?\\'" string)
1691 ;; If the string contains a final indented line, add a second newline so
1692 ;; as to make sure we terminate the multiline instruction.
1693 (comint-send-string (python-proc) "\n")))
1695 (defun python-send-buffer ()
1696 "Send the current buffer to the inferior Python process."
1697 (interactive)
1698 (python-send-region (point-min) (point-max)))
1700 ;; Fixme: Try to define the function or class within the relevant
1701 ;; module, not just at top level.
1702 (defun python-send-defun ()
1703 "Send the current defun (class or method) to the inferior Python process."
1704 (interactive)
1705 (save-excursion (python-send-region (progn (beginning-of-defun) (point))
1706 (progn (end-of-defun) (point)))))
1708 (defun python-switch-to-python (eob-p)
1709 "Switch to the Python process buffer, maybe starting new process.
1710 With prefix arg, position cursor at end of buffer."
1711 (interactive "P")
1712 (pop-to-buffer (process-buffer (python-proc)) t) ;Runs python if needed.
1713 (when eob-p
1714 (push-mark)
1715 (goto-char (point-max))))
1717 (defun python-send-region-and-go (start end)
1718 "Send the region to the inferior Python process.
1719 Then switch to the process buffer."
1720 (interactive "r")
1721 (python-send-region start end)
1722 (python-switch-to-python t))
1724 (defcustom python-source-modes '(python-mode jython-mode)
1725 "Used to determine if a buffer contains Python source code.
1726 If a file is loaded into a buffer that is in one of these major modes,
1727 it is considered Python source by `python-load-file', which uses the
1728 value to determine defaults."
1729 :type '(repeat function)
1730 :group 'python)
1732 (defvar python-prev-dir/file nil
1733 "Caches (directory . file) pair used in the last `python-load-file' command.
1734 Used for determining the default in the next one.")
1736 (autoload 'comint-get-source "comint")
1738 (defun python-load-file (file-name)
1739 "Load a Python file FILE-NAME into the inferior Python process.
1740 If the file has extension `.py' import or reload it as a module.
1741 Treating it as a module keeps the global namespace clean, provides
1742 function location information for debugging, and supports users of
1743 module-qualified names."
1744 (interactive (comint-get-source "Load Python file: " python-prev-dir/file
1745 python-source-modes
1746 t)) ; because execfile needs exact name
1747 (comint-check-source file-name) ; Check to see if buffer needs saving.
1748 (setq python-prev-dir/file (cons (file-name-directory file-name)
1749 (file-name-nondirectory file-name)))
1750 (with-current-buffer (process-buffer (python-proc)) ;Runs python if needed.
1751 ;; Fixme: I'm not convinced by this logic from python-mode.el.
1752 (python-send-command
1753 (if (string-match "\\.py\\'" file-name)
1754 (let ((module (file-name-sans-extension
1755 (file-name-nondirectory file-name))))
1756 (format "emacs.eimport(%S,%S)"
1757 module (file-name-directory file-name)))
1758 (format "execfile(%S)" file-name)))
1759 (message "%s loaded" file-name)))
1761 (defun python-proc ()
1762 "Return the current Python process.
1763 See variable `python-buffer'. Starts a new process if necessary."
1764 ;; Fixme: Maybe should look for another active process if there
1765 ;; isn't one for `python-buffer'.
1766 (unless (comint-check-proc python-buffer)
1767 (run-python nil t))
1768 (get-buffer-process (if (derived-mode-p 'inferior-python-mode)
1769 (current-buffer)
1770 python-buffer)))
1772 (defun python-set-proc ()
1773 "Set the default value of `python-buffer' to correspond to this buffer.
1774 If the current buffer has a local value of `python-buffer', set the
1775 default (global) value to that. The associated Python process is
1776 the one that gets input from \\[python-send-region] et al when used
1777 in a buffer that doesn't have a local value of `python-buffer'."
1778 (interactive)
1779 (if (local-variable-p 'python-buffer)
1780 (setq-default python-buffer python-buffer)
1781 (error "No local value of `python-buffer'")))
1783 ;;;; Context-sensitive help.
1785 (defconst python-dotty-syntax-table
1786 (let ((table (make-syntax-table)))
1787 (set-char-table-parent table python-mode-syntax-table)
1788 (modify-syntax-entry ?. "_" table)
1789 table)
1790 "Syntax table giving `.' symbol syntax.
1791 Otherwise inherits from `python-mode-syntax-table'.")
1793 (defvar view-return-to-alist)
1794 (eval-when-compile (autoload 'help-buffer "help-fns"))
1796 (defvar python-imports) ; forward declaration
1798 ;; Fixme: Should this actually be used instead of info-look, i.e. be
1799 ;; bound to C-h S? [Probably not, since info-look may work in cases
1800 ;; where this doesn't.]
1801 (defun python-describe-symbol (symbol)
1802 "Get help on SYMBOL using `help'.
1803 Interactively, prompt for symbol.
1805 Symbol may be anything recognized by the interpreter's `help'
1806 command -- e.g. `CALLS' -- not just variables in scope in the
1807 interpreter. This only works for Python version 2.2 or newer
1808 since earlier interpreters don't support `help'.
1810 In some cases where this doesn't find documentation, \\[info-lookup-symbol]
1811 will."
1812 ;; Note that we do this in the inferior process, not a separate one, to
1813 ;; ensure the environment is appropriate.
1814 (interactive
1815 (let ((symbol (with-syntax-table python-dotty-syntax-table
1816 (current-word)))
1817 (enable-recursive-minibuffers t))
1818 (list (read-string (if symbol
1819 (format "Describe symbol (default %s): " symbol)
1820 "Describe symbol: ")
1821 nil nil symbol))))
1822 (if (equal symbol "") (error "No symbol"))
1823 ;; Ensure we have a suitable help buffer.
1824 ;; Fixme: Maybe process `Related help topics' a la help xrefs and
1825 ;; allow C-c C-f in help buffer.
1826 (let ((temp-buffer-show-hook ; avoid xref stuff
1827 (lambda ()
1828 (toggle-read-only 1)
1829 (setq view-return-to-alist
1830 (list (cons (selected-window) help-return-method))))))
1831 (with-output-to-temp-buffer (help-buffer)
1832 (with-current-buffer standard-output
1833 ;; Fixme: Is this actually useful?
1834 (help-setup-xref (list 'python-describe-symbol symbol)
1835 (called-interactively-p 'interactive))
1836 (set (make-local-variable 'comint-redirect-subvert-readonly) t)
1837 (help-print-return-message))))
1838 (comint-redirect-send-command-to-process (format "emacs.ehelp(%S, %s)"
1839 symbol python-imports)
1840 "*Help*" (python-proc) nil nil))
1842 (add-to-list 'debug-ignored-errors "^No symbol")
1844 (defun python-send-receive (string)
1845 "Send STRING to inferior Python (if any) and return result.
1846 The result is what follows `_emacs_out' in the output.
1847 This is a no-op if `python-check-comint-prompt' returns nil."
1848 (python-send-string string)
1849 (let ((proc (python-proc)))
1850 (with-current-buffer (process-buffer proc)
1851 (when (python-check-comint-prompt proc)
1852 (set (make-local-variable 'python-preoutput-result) nil)
1853 (while (progn
1854 (accept-process-output proc 5)
1855 (null python-preoutput-result)))
1856 (prog1 python-preoutput-result
1857 (kill-local-variable 'python-preoutput-result))))))
1859 (defun python-check-comint-prompt (&optional proc)
1860 "Return non-nil if and only if there's a normal prompt in the inferior buffer.
1861 If there isn't, it's probably not appropriate to send input to return Eldoc
1862 information etc. If PROC is non-nil, check the buffer for that process."
1863 (with-current-buffer (process-buffer (or proc (python-proc)))
1864 (save-excursion
1865 (save-match-data
1866 (re-search-backward (concat python--prompt-regexp " *\\=")
1867 nil t)))))
1869 ;; Fixme: Is there anything reasonable we can do with random methods?
1870 ;; (Currently only works with functions.)
1871 (defun python-eldoc-function ()
1872 "`eldoc-documentation-function' for Python.
1873 Only works when point is in a function name, not its arg list, for
1874 instance. Assumes an inferior Python is running."
1875 (let ((symbol (with-syntax-table python-dotty-syntax-table
1876 (current-word))))
1877 ;; This is run from timers, so inhibit-quit tends to be set.
1878 (with-local-quit
1879 ;; First try the symbol we're on.
1880 (or (and symbol
1881 (python-send-receive (format "emacs.eargs(%S, %s)"
1882 symbol python-imports)))
1883 ;; Try moving to symbol before enclosing parens.
1884 (let ((s (syntax-ppss)))
1885 (unless (zerop (car s))
1886 (when (eq ?\( (char-after (nth 1 s)))
1887 (save-excursion
1888 (goto-char (nth 1 s))
1889 (skip-syntax-backward "-")
1890 (let ((point (point)))
1891 (skip-chars-backward "a-zA-Z._")
1892 (if (< (point) point)
1893 (python-send-receive
1894 (format "emacs.eargs(%S, %s)"
1895 (buffer-substring-no-properties (point) point)
1896 python-imports))))))))))))
1898 ;;;; Info-look functionality.
1900 (declare-function info-lookup-maybe-add-help "info-look" (&rest arg))
1902 (defun python-after-info-look ()
1903 "Set up info-look for Python.
1904 Used with `eval-after-load'."
1905 (let* ((version (let ((s (shell-command-to-string (concat python-command
1906 " -V"))))
1907 (string-match "^Python \\([0-9]+\\.[0-9]+\\>\\)" s)
1908 (match-string 1 s)))
1909 ;; Whether info files have a Python version suffix, e.g. in Debian.
1910 (versioned
1911 (with-temp-buffer
1912 (with-no-warnings (Info-mode))
1913 (condition-case ()
1914 ;; Don't use `info' because it would pop-up a *info* buffer.
1915 (with-no-warnings
1916 (Info-goto-node (format "(python%s-lib)Miscellaneous Index"
1917 version))
1919 (error nil)))))
1920 (info-lookup-maybe-add-help
1921 :mode 'python-mode
1922 :regexp "[[:alnum:]_]+"
1923 :doc-spec
1924 ;; Fixme: Can this reasonably be made specific to indices with
1925 ;; different rules? Is the order of indices optimal?
1926 ;; (Miscellaneous in -ref first prefers lookup of keywords, for
1927 ;; instance.)
1928 (if versioned
1929 ;; The empty prefix just gets us highlighted terms.
1930 `((,(concat "(python" version "-ref)Miscellaneous Index") nil "")
1931 (,(concat "(python" version "-ref)Module Index" nil ""))
1932 (,(concat "(python" version "-ref)Function-Method-Variable Index"
1933 nil ""))
1934 (,(concat "(python" version "-ref)Class-Exception-Object Index"
1935 nil ""))
1936 (,(concat "(python" version "-lib)Module Index" nil ""))
1937 (,(concat "(python" version "-lib)Class-Exception-Object Index"
1938 nil ""))
1939 (,(concat "(python" version "-lib)Function-Method-Variable Index"
1940 nil ""))
1941 (,(concat "(python" version "-lib)Miscellaneous Index" nil "")))
1942 '(("(python-ref)Miscellaneous Index" nil "")
1943 ("(python-ref)Module Index" nil "")
1944 ("(python-ref)Function-Method-Variable Index" nil "")
1945 ("(python-ref)Class-Exception-Object Index" nil "")
1946 ("(python-lib)Module Index" nil "")
1947 ("(python-lib)Class-Exception-Object Index" nil "")
1948 ("(python-lib)Function-Method-Variable Index" nil "")
1949 ("(python-lib)Miscellaneous Index" nil ""))))))
1950 (eval-after-load "info-look" '(python-after-info-look))
1952 ;;;; Miscellany.
1954 (defcustom python-jython-packages '("java" "javax" "org" "com")
1955 "Packages implying `jython-mode'.
1956 If these are imported near the beginning of the buffer, `python-mode'
1957 actually punts to `jython-mode'."
1958 :type '(repeat string)
1959 :group 'python)
1961 ;; Called from `python-mode', this causes a recursive call of the
1962 ;; mode. See logic there to break out of the recursion.
1963 (defun python-maybe-jython ()
1964 "Invoke `jython-mode' if the buffer appears to contain Jython code.
1965 The criterion is either a match for `jython-mode' via
1966 `interpreter-mode-alist' or an import of a module from the list
1967 `python-jython-packages'."
1968 ;; The logic is taken from python-mode.el.
1969 (save-excursion
1970 (save-restriction
1971 (widen)
1972 (goto-char (point-min))
1973 (let ((interpreter (if (looking-at auto-mode-interpreter-regexp)
1974 (match-string 2))))
1975 (if (and interpreter (eq 'jython-mode
1976 (cdr (assoc (file-name-nondirectory
1977 interpreter)
1978 interpreter-mode-alist))))
1979 (jython-mode)
1980 (if (catch 'done
1981 (while (re-search-forward
1982 (rx line-start (or "import" "from") (1+ space)
1983 (group (1+ (not (any " \t\n.")))))
1984 (+ (point-min) 10000) ; Probably not worth customizing.
1986 (if (member (match-string 1) python-jython-packages)
1987 (throw 'done t))))
1988 (jython-mode)))))))
1990 (defun python-fill-paragraph (&optional justify)
1991 "`fill-paragraph-function' handling multi-line strings and possibly comments.
1992 If any of the current line is in or at the end of a multi-line string,
1993 fill the string or the paragraph of it that point is in, preserving
1994 the string's indentation."
1995 (interactive "P")
1996 (or (fill-comment-paragraph justify)
1997 (save-excursion
1998 (end-of-line)
1999 (let* ((syntax (syntax-ppss))
2000 (orig (point))
2001 start end)
2002 (cond ((nth 4 syntax) ; comment. fixme: loses with trailing one
2003 (let (fill-paragraph-function)
2004 (fill-paragraph justify)))
2005 ;; The `paragraph-start' and `paragraph-separate'
2006 ;; variables don't allow us to delimit the last
2007 ;; paragraph in a multi-line string properly, so narrow
2008 ;; to the string and then fill around (the end of) the
2009 ;; current line.
2010 ((eq t (nth 3 syntax)) ; in fenced string
2011 (goto-char (nth 8 syntax)) ; string start
2012 (setq start (line-beginning-position))
2013 (setq end (condition-case () ; for unbalanced quotes
2014 (progn (forward-sexp)
2015 (- (point) 3))
2016 (error (point-max)))))
2017 ((re-search-backward "\\s|\\s-*\\=" nil t) ; end of fenced string
2018 (forward-char)
2019 (setq end (point))
2020 (condition-case ()
2021 (progn (backward-sexp)
2022 (setq start (line-beginning-position)))
2023 (error nil))))
2024 (when end
2025 (save-restriction
2026 (narrow-to-region start end)
2027 (goto-char orig)
2028 ;; Avoid losing leading and trailing newlines in doc
2029 ;; strings written like:
2030 ;; """
2031 ;; ...
2032 ;; """
2033 (let ((paragraph-separate
2034 ;; Note that the string could be part of an
2035 ;; expression, so it can have preceding and
2036 ;; trailing non-whitespace.
2037 (concat
2038 (rx (or
2039 ;; Opening triple quote without following text.
2040 (and (* nonl)
2041 (group (syntax string-delimiter))
2042 (repeat 2 (backref 1))
2043 ;; Fixme: Not sure about including
2044 ;; trailing whitespace.
2045 (* (any " \t"))
2046 eol)
2047 ;; Closing trailing quote without preceding text.
2048 (and (group (any ?\" ?')) (backref 2)
2049 (syntax string-delimiter))))
2050 "\\(?:" paragraph-separate "\\)"))
2051 fill-paragraph-function)
2052 (fill-paragraph justify))))))) t)
2054 (defun python-shift-left (start end &optional count)
2055 "Shift lines in region COUNT (the prefix arg) columns to the left.
2056 COUNT defaults to `python-indent'. If region isn't active, just shift
2057 current line. The region shifted includes the lines in which START and
2058 END lie. It is an error if any lines in the region are indented less than
2059 COUNT columns."
2060 (interactive
2061 (if mark-active
2062 (list (region-beginning) (region-end) current-prefix-arg)
2063 (list (line-beginning-position) (line-end-position) current-prefix-arg)))
2064 (if count
2065 (setq count (prefix-numeric-value count))
2066 (setq count python-indent))
2067 (when (> count 0)
2068 (save-excursion
2069 (goto-char start)
2070 (while (< (point) end)
2071 (if (and (< (current-indentation) count)
2072 (not (looking-at "[ \t]*$")))
2073 (error "Can't shift all lines enough"))
2074 (forward-line))
2075 (indent-rigidly start end (- count)))))
2077 (add-to-list 'debug-ignored-errors "^Can't shift all lines enough")
2079 (defun python-shift-right (start end &optional count)
2080 "Shift lines in region COUNT (the prefix arg) columns to the right.
2081 COUNT defaults to `python-indent'. If region isn't active, just shift
2082 current line. The region shifted includes the lines in which START and
2083 END lie."
2084 (interactive
2085 (if mark-active
2086 (list (region-beginning) (region-end) current-prefix-arg)
2087 (list (line-beginning-position) (line-end-position) current-prefix-arg)))
2088 (if count
2089 (setq count (prefix-numeric-value count))
2090 (setq count python-indent))
2091 (indent-rigidly start end count))
2093 (defun python-outline-level ()
2094 "`outline-level' function for Python mode.
2095 The level is the number of `python-indent' steps of indentation
2096 of current line."
2097 (1+ (/ (current-indentation) python-indent)))
2099 ;; Fixme: Consider top-level assignments, imports, &c.
2100 (defun python-current-defun (&optional length-limit)
2101 "`add-log-current-defun-function' for Python."
2102 (save-excursion
2103 ;; Move up the tree of nested `class' and `def' blocks until we
2104 ;; get to zero indentation, accumulating the defined names.
2105 (let ((accum)
2106 (length -1))
2107 (catch 'done
2108 (while (or (null length-limit)
2109 (null (cdr accum))
2110 (< length length-limit))
2111 (let ((started-from (point)))
2112 (python-beginning-of-block)
2113 (end-of-line)
2114 (beginning-of-defun)
2115 (when (= (point) started-from)
2116 (throw 'done nil)))
2117 (when (looking-at (rx (0+ space) (or "def" "class") (1+ space)
2118 (group (1+ (or word (syntax symbol))))))
2119 (push (match-string 1) accum)
2120 (setq length (+ length 1 (length (car accum)))))
2121 (when (= (current-indentation) 0)
2122 (throw 'done nil))))
2123 (when accum
2124 (when (and length-limit (> length length-limit))
2125 (setcar accum ".."))
2126 (mapconcat 'identity accum ".")))))
2128 (defun python-mark-block ()
2129 "Mark the block around point.
2130 Uses `python-beginning-of-block', `python-end-of-block'."
2131 (interactive)
2132 (push-mark)
2133 (python-beginning-of-block)
2134 (push-mark (point) nil t)
2135 (python-end-of-block)
2136 (exchange-point-and-mark))
2138 ;; Fixme: Provide a find-function-like command to find source of a
2139 ;; definition (separate from BicycleRepairMan). Complicated by
2140 ;; finding the right qualified name.
2142 ;;;; Completion.
2144 ;; http://lists.gnu.org/archive/html/bug-gnu-emacs/2008-01/msg00076.html
2145 (defvar python-imports "None"
2146 "String of top-level import statements updated by `python-find-imports'.")
2147 (make-variable-buffer-local 'python-imports)
2149 ;; Fixme: Should font-lock try to run this when it deals with an import?
2150 ;; Maybe not a good idea if it gets run multiple times when the
2151 ;; statement is being edited, and is more likely to end up with
2152 ;; something syntactically incorrect.
2153 ;; However, what we should do is to trundle up the block tree from point
2154 ;; to extract imports that appear to be in scope, and add those.
2155 (defun python-find-imports ()
2156 "Find top-level imports, updating `python-imports'."
2157 (interactive)
2158 (save-excursion
2159 (let (lines)
2160 (goto-char (point-min))
2161 (while (re-search-forward "^import\\>\\|^from\\>" nil t)
2162 (unless (syntax-ppss-context (syntax-ppss))
2163 (let ((start (line-beginning-position)))
2164 ;; Skip over continued lines.
2165 (while (and (eq ?\\ (char-before (line-end-position)))
2166 (= 0 (forward-line 1)))
2168 (push (buffer-substring start (line-beginning-position 2))
2169 lines))))
2170 (setq python-imports
2171 (if lines
2172 (apply #'concat
2173 ;; This is probably best left out since you're unlikely to need the
2174 ;; doc for a function in the buffer and the import will lose if the
2175 ;; Python sub-process' working directory isn't the same as the
2176 ;; buffer's.
2177 ;; (if buffer-file-name
2178 ;; (concat
2179 ;; "import "
2180 ;; (file-name-sans-extension
2181 ;; (file-name-nondirectory buffer-file-name))))
2182 (nreverse lines))
2183 "None"))
2184 (when lines
2185 (set-text-properties 0 (length python-imports) nil python-imports)
2186 ;; The output ends up in the wrong place if the string we
2187 ;; send contains newlines (from the imports).
2188 (setq python-imports
2189 (replace-regexp-in-string "\n" "\\n"
2190 (format "%S" python-imports) t t))))))
2192 ;; Fixme: This fails the first time if the sub-process isn't already
2193 ;; running. Presumably a timing issue with i/o to the process.
2194 (defun python-symbol-completions (symbol)
2195 "Return a list of completions of the string SYMBOL from Python process.
2196 The list is sorted.
2197 Uses `python-imports' to load modules against which to complete."
2198 (when (stringp symbol)
2199 (let ((completions
2200 (condition-case ()
2201 (car (read-from-string
2202 (python-send-receive
2203 (format "emacs.complete(%S,%s)"
2204 (substring-no-properties symbol)
2205 python-imports))))
2206 (error nil))))
2207 (sort
2208 ;; We can get duplicates from the above -- don't know why.
2209 (delete-dups completions)
2210 #'string<))))
2212 (defun python-completion-at-point ()
2213 (let ((end (point))
2214 (start (save-excursion
2215 (and (re-search-backward
2216 (rx (or buffer-start (regexp "[^[:alnum:]._]"))
2217 (group (1+ (regexp "[[:alnum:]._]"))) point)
2218 nil t)
2219 (match-beginning 1)))))
2220 (when start
2221 (list start end
2222 (completion-table-dynamic 'python-symbol-completions)))))
2224 ;;;; FFAP support
2226 (defun python-module-path (module)
2227 "Function for `ffap-alist' to return path to MODULE."
2228 (python-send-receive (format "emacs.modpath (%S)" module)))
2230 (eval-after-load "ffap"
2231 '(push '(python-mode . python-module-path) ffap-alist))
2233 ;;;; Find-function support
2235 ;; Fixme: key binding?
2237 (defun python-find-function (name)
2238 "Find source of definition of function NAME.
2239 Interactively, prompt for name."
2240 (interactive
2241 (let ((symbol (with-syntax-table python-dotty-syntax-table
2242 (current-word)))
2243 (enable-recursive-minibuffers t))
2244 (list (read-string (if symbol
2245 (format "Find location of (default %s): " symbol)
2246 "Find location of: ")
2247 nil nil symbol))))
2248 (unless python-imports
2249 (error "Not called from buffer visiting Python file"))
2250 (let* ((loc (python-send-receive (format "emacs.location_of (%S, %s)"
2251 name python-imports)))
2252 (loc (car (read-from-string loc)))
2253 (file (car loc))
2254 (line (cdr loc)))
2255 (unless file (error "Don't know where `%s' is defined" name))
2256 (pop-to-buffer (find-file-noselect file))
2257 (when (integerp line)
2258 (goto-char (point-min))
2259 (forward-line (1- line)))))
2261 ;;;; Skeletons
2263 (defcustom python-use-skeletons nil
2264 "Non-nil means template skeletons will be automagically inserted.
2265 This happens when pressing \"if<SPACE>\", for example, to prompt for
2266 the if condition."
2267 :type 'boolean
2268 :group 'python)
2270 (define-abbrev-table 'python-mode-abbrev-table ()
2271 "Abbrev table for Python mode."
2272 :case-fixed t
2273 ;; Allow / inside abbrevs.
2274 :regexp "\\(?:^\\|[^/]\\)\\<\\([[:word:]/]+\\)\\W*"
2275 ;; Only expand in code.
2276 :enable-function (lambda () (not (python-in-string/comment))))
2278 (eval-when-compile
2279 ;; Define a user-level skeleton and add it to the abbrev table.
2280 (defmacro def-python-skeleton (name &rest elements)
2281 (declare (indent 2))
2282 (let* ((name (symbol-name name))
2283 (function (intern (concat "python-insert-" name))))
2284 `(progn
2285 ;; Usual technique for inserting a skeleton, but expand
2286 ;; to the original abbrev instead if in a comment or string.
2287 (when python-use-skeletons
2288 (define-abbrev python-mode-abbrev-table ,name ""
2289 ',function
2290 nil t)) ; system abbrev
2291 (define-skeleton ,function
2292 ,(format "Insert Python \"%s\" template." name)
2293 ,@elements)))))
2295 ;; From `skeleton-further-elements' set below:
2296 ;; `<': outdent a level;
2297 ;; `^': delete indentation on current line and also previous newline.
2298 ;; Not quite like `delete-indentation'. Assumes point is at
2299 ;; beginning of indentation.
2301 (def-python-skeleton if
2302 "Condition: "
2303 "if " str ":" \n
2304 > -1 ; Fixme: I don't understand the spurious space this removes.
2305 _ \n
2306 ("other condition, %s: "
2307 < ; Avoid wrong indentation after block opening.
2308 "elif " str ":" \n
2309 > _ \n nil)
2310 '(python-else) | ^)
2312 (define-skeleton python-else
2313 "Auxiliary skeleton."
2315 (unless (eq ?y (read-char "Add `else' clause? (y for yes or RET for no) "))
2316 (signal 'quit t))
2317 < "else:" \n
2318 > _ \n)
2320 (def-python-skeleton while
2321 "Condition: "
2322 "while " str ":" \n
2323 > -1 _ \n
2324 '(python-else) | ^)
2326 (def-python-skeleton for
2327 "Target, %s: "
2328 "for " str " in " (skeleton-read "Expression, %s: ") ":" \n
2329 > -1 _ \n
2330 '(python-else) | ^)
2332 (def-python-skeleton try/except
2334 "try:" \n
2335 > -1 _ \n
2336 ("Exception, %s: "
2337 < "except " str '(python-target) ":" \n
2338 > _ \n nil)
2339 < "except:" \n
2340 > _ \n
2341 '(python-else) | ^)
2343 (define-skeleton python-target
2344 "Auxiliary skeleton."
2345 "Target, %s: " ", " str | -2)
2347 (def-python-skeleton try/finally
2349 "try:" \n
2350 > -1 _ \n
2351 < "finally:" \n
2352 > _ \n)
2354 (def-python-skeleton def
2355 "Name: "
2356 "def " str " (" ("Parameter, %s: " (unless (equal ?\( (char-before)) ", ")
2357 str) "):" \n
2358 "\"\"\"" - "\"\"\"" \n ; Fixme: extra space inserted -- why?).
2359 > _ \n)
2361 (def-python-skeleton class
2362 "Name: "
2363 "class " str " (" ("Inheritance, %s: "
2364 (unless (equal ?\( (char-before)) ", ")
2365 str)
2366 & ")" | -2 ; close list or remove opening
2367 ":" \n
2368 "\"\"\"" - "\"\"\"" \n
2369 > _ \n)
2371 (defvar python-default-template "if"
2372 "Default template to expand by `python-expand-template'.
2373 Updated on each expansion.")
2375 (defun python-expand-template (name)
2376 "Expand template named NAME.
2377 Interactively, prompt for the name with completion."
2378 (interactive
2379 (list (completing-read (format "Template to expand (default %s): "
2380 python-default-template)
2381 python-mode-abbrev-table nil t nil nil
2382 python-default-template)))
2383 (if (equal "" name)
2384 (setq name python-default-template)
2385 (setq python-default-template name))
2386 (let ((sym (abbrev-symbol name python-mode-abbrev-table)))
2387 (if sym
2388 (abbrev-insert sym)
2389 (error "Undefined template: %s" name))))
2391 ;;;; Bicycle Repair Man support
2393 (autoload 'pymacs-load "pymacs" nil t)
2394 (autoload 'brm-init "bikemacs")
2396 ;; I'm not sure how useful BRM really is, and it's certainly dangerous
2397 ;; the way it modifies files outside Emacs... Also note that the
2398 ;; current BRM loses with tabs used for indentation -- I submitted a
2399 ;; fix <URL:http://www.loveshack.ukfsn.org/emacs/bikeemacs.py.diff>.
2400 (defun python-setup-brm ()
2401 "Set up Bicycle Repair Man refactoring tool (if available).
2403 Note that the `refactoring' features change files independently of
2404 Emacs and may modify and save the contents of the current buffer
2405 without confirmation."
2406 (interactive)
2407 (condition-case data
2408 (unless (fboundp 'brm-rename)
2409 (pymacs-load "bikeemacs" "brm-") ; first line of normal recipe
2410 (let ((py-mode-map (make-sparse-keymap)) ; it assumes this
2411 (features (cons 'python-mode features))) ; and requires this
2412 (brm-init) ; second line of normal recipe
2413 (remove-hook 'python-mode-hook ; undo this from `brm-init'
2414 '(lambda () (easy-menu-add brm-menu)))
2415 (easy-menu-define
2416 python-brm-menu python-mode-map
2417 "Bicycle Repair Man"
2418 '("BicycleRepairMan"
2419 :help "Interface to navigation and refactoring tool"
2420 "Queries"
2421 ["Find References" brm-find-references
2422 :help "Find references to name at point in compilation buffer"]
2423 ["Find Definition" brm-find-definition
2424 :help "Find definition of name at point"]
2426 "Refactoring"
2427 ["Rename" brm-rename
2428 :help "Replace name at point with a new name everywhere"]
2429 ["Extract Method" brm-extract-method
2430 :active (and mark-active (not buffer-read-only))
2431 :help "Replace statements in region with a method"]
2432 ["Extract Local Variable" brm-extract-local-variable
2433 :active (and mark-active (not buffer-read-only))
2434 :help "Replace expression in region with an assignment"]
2435 ["Inline Local Variable" brm-inline-local-variable
2436 :help
2437 "Substitute uses of variable at point with its definition"]
2438 ;; Fixme: Should check for anything to revert.
2439 ["Undo Last Refactoring" brm-undo :help ""]))))
2440 (error (error "BicycleRepairMan setup failed: %s" data))))
2442 ;;;; Modes.
2444 ;; pdb tracking is alert once this file is loaded, but takes no action if
2445 ;; `python-pdbtrack-do-tracking-p' is nil.
2446 (add-hook 'comint-output-filter-functions 'python-pdbtrack-track-stack-file)
2448 (defvar outline-heading-end-regexp)
2449 (defvar eldoc-documentation-function)
2450 (defvar python-mode-running) ;Dynamically scoped var.
2452 ;;;###autoload
2453 (define-derived-mode python-mode fundamental-mode "Python"
2454 "Major mode for editing Python files.
2455 Turns on Font Lock mode unconditionally since it is currently required
2456 for correct parsing of the source.
2457 See also `jython-mode', which is actually invoked if the buffer appears to
2458 contain Jython code. See also `run-python' and associated Python mode
2459 commands for running Python under Emacs.
2461 The Emacs commands which work with `defun's, e.g. \\[beginning-of-defun], deal
2462 with nested `def' and `class' blocks. They take the innermost one as
2463 current without distinguishing method and class definitions. Used multiple
2464 times, they move over others at the same indentation level until they reach
2465 the end of definitions at that level, when they move up a level.
2466 \\<python-mode-map>
2467 Colon is electric: it outdents the line if appropriate, e.g. for
2468 an else statement. \\[python-backspace] at the beginning of an indented statement
2469 deletes a level of indentation to close the current block; otherwise it
2470 deletes a character backward. TAB indents the current line relative to
2471 the preceding code. Successive TABs, with no intervening command, cycle
2472 through the possibilities for indentation on the basis of enclosing blocks.
2474 \\[fill-paragraph] fills comments and multi-line strings appropriately, but has no
2475 effect outside them.
2477 Supports Eldoc mode (only for functions, using a Python process),
2478 Info-Look and Imenu. In Outline minor mode, `class' and `def'
2479 lines count as headers. Symbol completion is available in the
2480 same way as in the Python shell using the `rlcompleter' module
2481 and this is added to the Hippie Expand functions locally if
2482 Hippie Expand mode is turned on. Completion of symbols of the
2483 form x.y only works if the components are literal
2484 module/attribute names, not variables. An abbrev table is set up
2485 with skeleton expansions for compound statement templates.
2487 \\{python-mode-map}"
2488 :group 'python
2489 (set (make-local-variable 'font-lock-defaults)
2490 '(python-font-lock-keywords nil nil nil nil
2491 ;; This probably isn't worth it.
2492 ;; (font-lock-syntactic-face-function
2493 ;; . python-font-lock-syntactic-face-function)
2495 (set (make-local-variable 'syntax-propertize-function)
2496 python-syntax-propertize-function)
2497 (set (make-local-variable 'parse-sexp-lookup-properties) t)
2498 (set (make-local-variable 'parse-sexp-ignore-comments) t)
2499 (set (make-local-variable 'comment-start) "# ")
2500 (set (make-local-variable 'indent-line-function) #'python-indent-line)
2501 (set (make-local-variable 'indent-region-function) #'python-indent-region)
2502 (set (make-local-variable 'paragraph-start) "\\s-*$")
2503 (set (make-local-variable 'fill-paragraph-function) 'python-fill-paragraph)
2504 (set (make-local-variable 'require-final-newline) mode-require-final-newline)
2505 (set (make-local-variable 'add-log-current-defun-function)
2506 #'python-current-defun)
2507 (set (make-local-variable 'outline-regexp)
2508 (rx (* space) (or "class" "def" "elif" "else" "except" "finally"
2509 "for" "if" "try" "while" "with")
2510 symbol-end))
2511 (set (make-local-variable 'outline-heading-end-regexp) ":\\s-*\n")
2512 (set (make-local-variable 'outline-level) #'python-outline-level)
2513 (set (make-local-variable 'open-paren-in-column-0-is-defun-start) nil)
2514 (make-local-variable 'python-saved-check-command)
2515 (set (make-local-variable 'beginning-of-defun-function)
2516 'python-beginning-of-defun)
2517 (set (make-local-variable 'end-of-defun-function) 'python-end-of-defun)
2518 (add-hook 'which-func-functions 'python-which-func nil t)
2519 (setq imenu-create-index-function #'python-imenu-create-index)
2520 (set (make-local-variable 'eldoc-documentation-function)
2521 #'python-eldoc-function)
2522 (add-hook 'eldoc-mode-hook
2523 (lambda () (run-python nil t)) ; need it running
2524 nil t)
2525 (add-hook 'completion-at-point-functions
2526 'python-completion-at-point nil 'local)
2527 ;; Fixme: should be in hideshow. This seems to be of limited use
2528 ;; since it isn't (can't be) indentation-based. Also hide-level
2529 ;; doesn't seem to work properly.
2530 (add-to-list 'hs-special-modes-alist
2531 `(python-mode "^\\s-*\\(?:def\\|class\\)\\>" nil "#"
2532 ,(lambda (arg)
2533 (python-end-of-defun)
2534 (skip-chars-backward " \t\n"))
2535 nil))
2536 (set (make-local-variable 'skeleton-further-elements)
2537 '((< '(backward-delete-char-untabify (min python-indent
2538 (current-column))))
2539 (^ '(- (1+ (current-indentation))))))
2540 ;; Python defines TABs as being 8-char wide.
2541 (set (make-local-variable 'tab-width) 8)
2542 (unless font-lock-mode (font-lock-mode 1))
2543 (when python-guess-indent (python-guess-indent))
2544 ;; Let's make it harder for the user to shoot himself in the foot.
2545 (unless (= tab-width python-indent)
2546 (setq indent-tabs-mode nil))
2547 (set (make-local-variable 'python-command) python-python-command)
2548 (python-find-imports)
2549 (unless (boundp 'python-mode-running) ; kill the recursion from jython-mode
2550 (let ((python-mode-running t))
2551 (python-maybe-jython))))
2553 ;; Not done automatically in Emacs 21 or 22.
2554 (defcustom python-mode-hook nil
2555 "Hook run when entering Python mode."
2556 :group 'python
2557 :type 'hook)
2558 (custom-add-option 'python-mode-hook 'imenu-add-menubar-index)
2559 (custom-add-option 'python-mode-hook
2560 (lambda ()
2561 "Turn off Indent Tabs mode."
2562 (setq indent-tabs-mode nil)))
2563 (custom-add-option 'python-mode-hook 'turn-on-eldoc-mode)
2564 (custom-add-option 'python-mode-hook 'abbrev-mode)
2565 (custom-add-option 'python-mode-hook 'python-setup-brm)
2567 ;;;###autoload
2568 (define-derived-mode jython-mode python-mode "Jython"
2569 "Major mode for editing Jython files.
2570 Like `python-mode', but sets up parameters for Jython subprocesses.
2571 Runs `jython-mode-hook' after `python-mode-hook'."
2572 :group 'python
2573 (set (make-local-variable 'python-command) python-jython-command))
2577 ;; pdbtrack features
2579 (defun python-comint-output-filter-function (string)
2580 "Watch output for Python prompt and exec next file waiting in queue.
2581 This function is appropriate for `comint-output-filter-functions'."
2582 ;; TBD: this should probably use split-string
2583 (when (and (string-match python--prompt-regexp string)
2584 python-file-queue)
2585 (condition-case nil
2586 (delete-file (car python-file-queue))
2587 (error nil))
2588 (setq python-file-queue (cdr python-file-queue))
2589 (if python-file-queue
2590 (let ((pyproc (get-buffer-process (current-buffer))))
2591 (python-execute-file pyproc (car python-file-queue))))))
2593 (defun python-pdbtrack-overlay-arrow (activation)
2594 "Activate or deactivate arrow at beginning-of-line in current buffer."
2595 (if activation
2596 (progn
2597 (setq overlay-arrow-position (make-marker)
2598 overlay-arrow-string "=>"
2599 python-pdbtrack-is-tracking-p t)
2600 (set-marker overlay-arrow-position
2601 (line-beginning-position)
2602 (current-buffer)))
2603 (setq overlay-arrow-position nil
2604 python-pdbtrack-is-tracking-p nil)))
2606 (defun python-pdbtrack-track-stack-file (text)
2607 "Show the file indicated by the pdb stack entry line, in a separate window.
2609 Activity is disabled if the buffer-local variable
2610 `python-pdbtrack-do-tracking-p' is nil.
2612 We depend on the pdb input prompt being a match for
2613 `python-pdbtrack-input-prompt'.
2615 If the traceback target file path is invalid, we look for the
2616 most recently visited python-mode buffer which either has the
2617 name of the current function or class, or which defines the
2618 function or class. This is to provide for scripts not in the
2619 local filesytem (e.g., Zope's 'Script \(Python)', but it's not
2620 Zope specific). If you put a copy of the script in a buffer
2621 named for the script and activate python-mode, then pdbtrack will
2622 find it."
2623 ;; Instead of trying to piece things together from partial text
2624 ;; (which can be almost useless depending on Emacs version), we
2625 ;; monitor to the point where we have the next pdb prompt, and then
2626 ;; check all text from comint-last-input-end to process-mark.
2628 ;; Also, we're very conservative about clearing the overlay arrow,
2629 ;; to minimize residue. This means, for instance, that executing
2630 ;; other pdb commands wipe out the highlight. You can always do a
2631 ;; 'where' (aka 'w') PDB command to reveal the overlay arrow.
2633 (let* ((origbuf (current-buffer))
2634 (currproc (get-buffer-process origbuf)))
2636 (if (not (and currproc python-pdbtrack-do-tracking-p))
2637 (python-pdbtrack-overlay-arrow nil)
2639 (let* ((procmark (process-mark currproc))
2640 (block (buffer-substring (max comint-last-input-end
2641 (- procmark
2642 python-pdbtrack-track-range))
2643 procmark))
2644 target target_fname target_lineno target_buffer)
2646 (if (not (string-match (concat python-pdbtrack-input-prompt "$") block))
2647 (python-pdbtrack-overlay-arrow nil)
2649 (setq target (python-pdbtrack-get-source-buffer block))
2651 (if (stringp target)
2652 (progn
2653 (python-pdbtrack-overlay-arrow nil)
2654 (message "pdbtrack: %s" target))
2656 (setq target_lineno (car target)
2657 target_buffer (cadr target)
2658 target_fname (buffer-file-name target_buffer))
2659 (switch-to-buffer-other-window target_buffer)
2660 (goto-char (point-min))
2661 (forward-line (1- target_lineno))
2662 (message "pdbtrack: line %s, file %s" target_lineno target_fname)
2663 (python-pdbtrack-overlay-arrow t)
2664 (pop-to-buffer origbuf t)
2665 ;; in large shell buffers, above stuff may cause point to lag output
2666 (goto-char procmark)
2667 )))))
2670 (defun python-pdbtrack-get-source-buffer (block)
2671 "Return line number and buffer of code indicated by block's traceback text.
2673 We look first to visit the file indicated in the trace.
2675 Failing that, we look for the most recently visited python-mode buffer
2676 with the same name or having the named function.
2678 If we're unable find the source code we return a string describing the
2679 problem."
2681 (if (not (string-match python-pdbtrack-stack-entry-regexp block))
2683 "Traceback cue not found"
2685 (let* ((filename (match-string 1 block))
2686 (lineno (string-to-number (match-string 2 block)))
2687 (funcname (match-string 3 block))
2688 funcbuffer)
2690 (cond ((file-exists-p filename)
2691 (list lineno (find-file-noselect filename)))
2693 ((setq funcbuffer (python-pdbtrack-grub-for-buffer funcname lineno))
2694 (if (string-match "/Script (Python)$" filename)
2695 ;; Add in number of lines for leading '##' comments:
2696 (setq lineno
2697 (+ lineno
2698 (with-current-buffer funcbuffer
2699 (if (equal (point-min)(point-max))
2701 (count-lines
2702 (point-min)
2703 (max (point-min)
2704 (string-match "^\\([^#]\\|#[^#]\\|#$\\)"
2705 (buffer-substring
2706 (point-min) (point-max)))
2707 )))))))
2708 (list lineno funcbuffer))
2710 ((= (elt filename 0) ?\<)
2711 (format "(Non-file source: '%s')" filename))
2713 (t (format "Not found: %s(), %s" funcname filename)))
2718 (defun python-pdbtrack-grub-for-buffer (funcname lineno)
2719 "Find recent python-mode buffer named, or having function named funcname."
2720 (let ((buffers (buffer-list))
2722 got)
2723 (while (and buffers (not got))
2724 (setq buf (car buffers)
2725 buffers (cdr buffers))
2726 (if (and (with-current-buffer buf
2727 (string= major-mode "python-mode"))
2728 (or (string-match funcname (buffer-name buf))
2729 (string-match (concat "^\\s-*\\(def\\|class\\)\\s-+"
2730 funcname "\\s-*(")
2731 (with-current-buffer buf
2732 (buffer-substring (point-min)
2733 (point-max))))))
2734 (setq got buf)))
2735 got))
2737 (defun python-toggle-shells (arg)
2738 "Toggles between the CPython and JPython shells.
2740 With positive argument ARG (interactively \\[universal-argument]),
2741 uses the CPython shell, with negative ARG uses the JPython shell, and
2742 with a zero argument, toggles the shell.
2744 Programmatically, ARG can also be one of the symbols `cpython' or
2745 `jpython', equivalent to positive arg and negative arg respectively."
2746 (interactive "P")
2747 ;; default is to toggle
2748 (if (null arg)
2749 (setq arg 0))
2750 ;; preprocess arg
2751 (cond
2752 ((equal arg 0)
2753 ;; toggle
2754 (if (string-equal python-which-bufname "Python")
2755 (setq arg -1)
2756 (setq arg 1)))
2757 ((equal arg 'cpython) (setq arg 1))
2758 ((equal arg 'jpython) (setq arg -1)))
2759 (let (msg)
2760 (cond
2761 ((< 0 arg)
2762 ;; set to CPython
2763 (setq python-which-shell python-python-command
2764 python-which-args python-python-command-args
2765 python-which-bufname "Python"
2766 msg "CPython"
2767 mode-name "Python"))
2768 ((> 0 arg)
2769 (setq python-which-shell python-jython-command
2770 python-which-args python-jython-command-args
2771 python-which-bufname "JPython"
2772 msg "JPython"
2773 mode-name "JPython")))
2774 (message "Using the %s shell" msg)))
2776 ;; Python subprocess utilities and filters
2777 (defun python-execute-file (proc filename)
2778 "Send to Python interpreter process PROC \"execfile('FILENAME')\".
2779 Make that process's buffer visible and force display. Also make
2780 comint believe the user typed this string so that
2781 `kill-output-from-shell' does The Right Thing."
2782 (let ((curbuf (current-buffer))
2783 (procbuf (process-buffer proc))
2784 ; (comint-scroll-to-bottom-on-output t)
2785 (msg (format "## working on region in file %s...\n" filename))
2786 ;; add some comment, so that we can filter it out of history
2787 (cmd (format "execfile(r'%s') # PYTHON-MODE\n" filename)))
2788 (unwind-protect
2789 (with-current-buffer procbuf
2790 (goto-char (point-max))
2791 (move-marker (process-mark proc) (point))
2792 (funcall (process-filter proc) proc msg))
2793 (set-buffer curbuf))
2794 (process-send-string proc cmd)))
2796 ;;;###autoload
2797 (defun python-shell (&optional argprompt)
2798 "Start an interactive Python interpreter in another window.
2799 This is like Shell mode, except that Python is running in the window
2800 instead of a shell. See the `Interactive Shell' and `Shell Mode'
2801 sections of the Emacs manual for details, especially for the key
2802 bindings active in the `*Python*' buffer.
2804 With optional \\[universal-argument], the user is prompted for the
2805 flags to pass to the Python interpreter. This has no effect when this
2806 command is used to switch to an existing process, only when a new
2807 process is started. If you use this, you will probably want to ensure
2808 that the current arguments are retained (they will be included in the
2809 prompt). This argument is ignored when this function is called
2810 programmatically.
2812 Note: You can toggle between using the CPython interpreter and the
2813 JPython interpreter by hitting \\[python-toggle-shells]. This toggles
2814 buffer local variables which control whether all your subshell
2815 interactions happen to the `*JPython*' or `*Python*' buffers (the
2816 latter is the name used for the CPython buffer).
2818 Warning: Don't use an interactive Python if you change sys.ps1 or
2819 sys.ps2 from their default values, or if you're running code that
2820 prints `>>> ' or `... ' at the start of a line. `python-mode' can't
2821 distinguish your output from Python's output, and assumes that `>>> '
2822 at the start of a line is a prompt from Python. Similarly, the Emacs
2823 Shell mode code assumes that both `>>> ' and `... ' at the start of a
2824 line are Python prompts. Bad things can happen if you fool either
2825 mode.
2827 Warning: If you do any editing *in* the process buffer *while* the
2828 buffer is accepting output from Python, do NOT attempt to `undo' the
2829 changes. Some of the output (nowhere near the parts you changed!) may
2830 be lost if you do. This appears to be an Emacs bug, an unfortunate
2831 interaction between undo and process filters; the same problem exists in
2832 non-Python process buffers using the default (Emacs-supplied) process
2833 filter."
2834 (interactive "P")
2835 (require 'ansi-color) ; For ipython
2836 ;; Set the default shell if not already set
2837 (when (null python-which-shell)
2838 (python-toggle-shells python-default-interpreter))
2839 (let ((args python-which-args))
2840 (when (and argprompt
2841 (called-interactively-p 'interactive)
2842 (fboundp 'split-string))
2843 ;; TBD: Perhaps force "-i" in the final list?
2844 (setq args (split-string
2845 (read-string (concat python-which-bufname
2846 " arguments: ")
2847 (concat
2848 (mapconcat 'identity python-which-args " ") " ")
2849 ))))
2850 (switch-to-buffer-other-window
2851 (apply 'make-comint python-which-bufname python-which-shell nil args))
2852 (set-process-sentinel (get-buffer-process (current-buffer))
2853 'python-sentinel)
2854 (python--set-prompt-regexp)
2855 (add-hook 'comint-output-filter-functions
2856 'python-comint-output-filter-function nil t)
2857 ;; pdbtrack
2858 (set-syntax-table python-mode-syntax-table)
2859 (use-local-map python-shell-map)))
2861 (defun python-pdbtrack-toggle-stack-tracking (arg)
2862 (interactive "P")
2863 (if (not (get-buffer-process (current-buffer)))
2864 (error "No process associated with buffer '%s'" (current-buffer)))
2865 ;; missing or 0 is toggle, >0 turn on, <0 turn off
2866 (if (or (not arg)
2867 (zerop (setq arg (prefix-numeric-value arg))))
2868 (setq python-pdbtrack-do-tracking-p (not python-pdbtrack-do-tracking-p))
2869 (setq python-pdbtrack-do-tracking-p (> arg 0)))
2870 (message "%sabled Python's pdbtrack"
2871 (if python-pdbtrack-do-tracking-p "En" "Dis")))
2873 (defun turn-on-pdbtrack ()
2874 (interactive)
2875 (python-pdbtrack-toggle-stack-tracking 1))
2877 (defun turn-off-pdbtrack ()
2878 (interactive)
2879 (python-pdbtrack-toggle-stack-tracking 0))
2881 (defun python-sentinel (proc msg)
2882 (setq overlay-arrow-position nil))
2884 (provide 'python)
2885 (provide 'python-21)
2887 ;;; python.el ends here