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