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