]> code.delx.au - gnu-emacs/blob - lisp/progmodes/python.el
python.el: fallback completion, ffap and eldoc setup enhancements
[gnu-emacs] / lisp / progmodes / python.el
1 ;;; python.el --- Python's flying circus support for Emacs -*- lexical-binding: t -*-
2
3 ;; Copyright (C) 2003-2015 Free Software Foundation, Inc.
4
5 ;; Author: Fabián E. Gallina <fgallina@gnu.org>
6 ;; URL: https://github.com/fgallina/python.el
7 ;; Version: 0.25.1
8 ;; Package-Requires: ((emacs "24.1") (cl-lib "1.0"))
9 ;; Maintainer: emacs-devel@gnu.org
10 ;; Created: Jul 2010
11 ;; Keywords: languages
12
13 ;; This file is part of GNU Emacs.
14
15 ;; GNU Emacs is free software: you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published
17 ;; by the Free Software Foundation, either version 3 of the License,
18 ;; or (at your option) any later version.
19
20 ;; GNU Emacs is distributed in the hope that it will be useful, but
21 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 ;; General Public License for more details.
24
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27
28 ;;; Commentary:
29
30 ;; Major mode for editing Python files with some fontification and
31 ;; indentation bits extracted from original Dave Love's python.el
32 ;; found in GNU/Emacs.
33
34 ;; Implements Syntax highlighting, Indentation, Movement, Shell
35 ;; interaction, Shell completion, Shell virtualenv support, Shell
36 ;; package support, Shell syntax highlighting, Pdb tracking, Symbol
37 ;; completion, Skeletons, FFAP, Code Check, Eldoc, Imenu.
38
39 ;; Syntax highlighting: Fontification of code is provided and supports
40 ;; python's triple quoted strings properly.
41
42 ;; Indentation: Automatic indentation with indentation cycling is
43 ;; provided, it allows you to navigate different available levels of
44 ;; indentation by hitting <tab> several times. Also electric-indent-mode
45 ;; is supported such that when inserting a colon the current line is
46 ;; dedented automatically if needed.
47
48 ;; Movement: `beginning-of-defun' and `end-of-defun' functions are
49 ;; properly implemented. There are also specialized
50 ;; `forward-sentence' and `backward-sentence' replacements called
51 ;; `python-nav-forward-block', `python-nav-backward-block'
52 ;; respectively which navigate between beginning of blocks of code.
53 ;; Extra functions `python-nav-forward-statement',
54 ;; `python-nav-backward-statement',
55 ;; `python-nav-beginning-of-statement', `python-nav-end-of-statement',
56 ;; `python-nav-beginning-of-block', `python-nav-end-of-block' and
57 ;; `python-nav-if-name-main' are included but no bound to any key. At
58 ;; last but not least the specialized `python-nav-forward-sexp' allows
59 ;; easy navigation between code blocks. If you prefer `cc-mode'-like
60 ;; `forward-sexp' movement, setting `forward-sexp-function' to nil is
61 ;; enough, You can do that using the `python-mode-hook':
62
63 ;; (add-hook 'python-mode-hook
64 ;; (lambda () (setq forward-sexp-function nil)))
65
66 ;; Shell interaction: is provided and allows opening Python shells
67 ;; inside Emacs and executing any block of code of your current buffer
68 ;; in that inferior Python process.
69
70 ;; Besides that only the standard CPython (2.x and 3.x) shell and
71 ;; IPython are officially supported out of the box, the interaction
72 ;; should support any other readline based Python shells as well
73 ;; (e.g. Jython and PyPy have been reported to work). You can change
74 ;; your default interpreter and commandline arguments by setting the
75 ;; `python-shell-interpreter' and `python-shell-interpreter-args'
76 ;; variables. This example enables IPython globally:
77
78 ;; (setq python-shell-interpreter "ipython"
79 ;; python-shell-interpreter-args "-i")
80
81 ;; Using the "console" subcommand to start IPython in server-client
82 ;; mode is known to fail intermittently due a bug on IPython itself
83 ;; (see URL `http://debbugs.gnu.org/cgi/bugreport.cgi?bug=18052#27').
84 ;; There seems to be a race condition in the IPython server (A.K.A
85 ;; kernel) when code is sent while it is still initializing, sometimes
86 ;; causing the shell to get stalled. With that said, if an IPython
87 ;; kernel is already running, "console --existing" seems to work fine.
88
89 ;; Running IPython on Windows needs more tweaking. The way you should
90 ;; set `python-shell-interpreter' and `python-shell-interpreter-args'
91 ;; is as follows (of course you need to modify the paths according to
92 ;; your system):
93
94 ;; (setq python-shell-interpreter "C:\\Python27\\python.exe"
95 ;; python-shell-interpreter-args
96 ;; "-i C:\\Python27\\Scripts\\ipython-script.py")
97
98 ;; Missing or delayed output used to happen due to differences between
99 ;; Operating Systems' pipe buffering (e.g. CPython 3.3.4 in Windows 7.
100 ;; See URL `http://debbugs.gnu.org/cgi/bugreport.cgi?bug=17304'). To
101 ;; avoid this, the `python-shell-unbuffered' defaults to non-nil and
102 ;; controls whether `python-shell-calculate-process-environment'
103 ;; should set the "PYTHONUNBUFFERED" environment variable on startup:
104 ;; See URL `https://docs.python.org/3/using/cmdline.html#cmdoption-u'.
105
106 ;; The interaction relies upon having prompts for input (e.g. ">>> "
107 ;; and "... " in standard Python shell) and output (e.g. "Out[1]: " in
108 ;; IPython) detected properly. Failing that Emacs may hang but, in
109 ;; the case that happens, you can recover with \\[keyboard-quit]. To
110 ;; avoid this issue, a two-step prompt autodetection mechanism is
111 ;; provided: the first step is manual and consists of a collection of
112 ;; regular expressions matching common prompts for Python shells
113 ;; stored in `python-shell-prompt-input-regexps' and
114 ;; `python-shell-prompt-output-regexps', and dir-local friendly vars
115 ;; `python-shell-prompt-regexp', `python-shell-prompt-block-regexp',
116 ;; `python-shell-prompt-output-regexp' which are appended to the
117 ;; former automatically when a shell spawns; the second step is
118 ;; automatic and depends on the `python-shell-prompt-detect' helper
119 ;; function. See its docstring for details on global variables that
120 ;; modify its behavior.
121
122 ;; Shell completion: hitting tab will try to complete the current
123 ;; word. The two built-in mechanisms depend on Python's readline
124 ;; module: the "native" completion is tried first and is activated
125 ;; when `python-shell-completion-native-enable' is non-nil, the
126 ;; current `python-shell-interpreter' is not a member of the
127 ;; `python-shell-completion-native-disabled-interpreters' variable and
128 ;; `python-shell-completion-native-setup' succeeds; the "fallback" or
129 ;; "legacy" mechanism works by executing Python code in the background
130 ;; and enables auto-completion for shells that do not support
131 ;; receiving escape sequences (with some limitations, i.e. completion
132 ;; in blocks does not work). The code executed for the "fallback"
133 ;; completion can be found in `python-shell-completion-setup-code' and
134 ;; `python-shell-completion-string-code' variables. Their default
135 ;; values enable completion for both CPython and IPython, and probably
136 ;; any readline based shell (it's known to work with PyPy). If your
137 ;; Python installation lacks readline (like CPython for Windows),
138 ;; installing pyreadline (URL `http://ipython.org/pyreadline.html')
139 ;; should suffice. To troubleshoot why you are not getting any
140 ;; completions, you can try the following in your Python shell:
141
142 ;; >>> import readline, rlcompleter
143
144 ;; If you see an error, then you need to either install pyreadline or
145 ;; setup custom code that avoids that dependency.
146
147 ;; Shell virtualenv support: The shell also contains support for
148 ;; virtualenvs and other special environment modifications thanks to
149 ;; `python-shell-process-environment' and `python-shell-exec-path'.
150 ;; These two variables allows you to modify execution paths and
151 ;; environment variables to make easy for you to setup virtualenv rules
152 ;; or behavior modifications when running shells. Here is an example
153 ;; of how to make shell processes to be run using the /path/to/env/
154 ;; virtualenv:
155
156 ;; (setq python-shell-process-environment
157 ;; (list
158 ;; (format "PATH=%s" (mapconcat
159 ;; 'identity
160 ;; (reverse
161 ;; (cons (getenv "PATH")
162 ;; '("/path/to/env/bin/")))
163 ;; ":"))
164 ;; "VIRTUAL_ENV=/path/to/env/"))
165 ;; (python-shell-exec-path . ("/path/to/env/bin/"))
166
167 ;; Since the above is cumbersome and can be programmatically
168 ;; calculated, the variable `python-shell-virtualenv-root' is
169 ;; provided. When this variable is set with the path of the
170 ;; virtualenv to use, `process-environment' and `exec-path' get proper
171 ;; values in order to run shells inside the specified virtualenv. So
172 ;; the following will achieve the same as the previous example:
173
174 ;; (setq python-shell-virtualenv-root "/path/to/env/")
175
176 ;; Also the `python-shell-extra-pythonpaths' variable have been
177 ;; introduced as simple way of adding paths to the PYTHONPATH without
178 ;; affecting existing values.
179
180 ;; Shell package support: you can enable a package in the current
181 ;; shell so that relative imports work properly using the
182 ;; `python-shell-package-enable' command.
183
184 ;; Shell remote support: remote Python shells are started with the
185 ;; correct environment for files opened remotely through tramp, also
186 ;; respecting dir-local variables provided `enable-remote-dir-locals'
187 ;; is non-nil. The logic for this is transparently handled by the
188 ;; `python-shell-with-environment' macro.
189
190 ;; Shell syntax highlighting: when enabled current input in shell is
191 ;; highlighted. The variable `python-shell-font-lock-enable' controls
192 ;; activation of this feature globally when shells are started.
193 ;; Activation/deactivation can be also controlled on the fly via the
194 ;; `python-shell-font-lock-toggle' command.
195
196 ;; Pdb tracking: when you execute a block of code that contains some
197 ;; call to pdb (or ipdb) it will prompt the block of code and will
198 ;; follow the execution of pdb marking the current line with an arrow.
199
200 ;; Symbol completion: you can complete the symbol at point. It uses
201 ;; the shell completion in background so you should run
202 ;; `python-shell-send-buffer' from time to time to get better results.
203
204 ;; Skeletons: skeletons are provided for simple inserting of things like class,
205 ;; def, for, import, if, try, and while. These skeletons are
206 ;; integrated with abbrev. If you have `abbrev-mode' activated and
207 ;; `python-skeleton-autoinsert' is set to t, then whenever you type
208 ;; the name of any of those defined and hit SPC, they will be
209 ;; automatically expanded. As an alternative you can use the defined
210 ;; skeleton commands: `python-skeleton-<foo>'.
211
212 ;; FFAP: You can find the filename for a given module when using ffap
213 ;; out of the box. This feature needs an inferior python shell
214 ;; running.
215
216 ;; Code check: Check the current file for errors with `python-check'
217 ;; using the program defined in `python-check-command'.
218
219 ;; Eldoc: returns documentation for object at point by using the
220 ;; inferior python subprocess to inspect its documentation. As you
221 ;; might guessed you should run `python-shell-send-buffer' from time
222 ;; to time to get better results too.
223
224 ;; Imenu: There are two index building functions to be used as
225 ;; `imenu-create-index-function': `python-imenu-create-index' (the
226 ;; default one, builds the alist in form of a tree) and
227 ;; `python-imenu-create-flat-index'. See also
228 ;; `python-imenu-format-item-label-function',
229 ;; `python-imenu-format-parent-item-label-function',
230 ;; `python-imenu-format-parent-item-jump-label-function' variables for
231 ;; changing the way labels are formatted in the tree version.
232
233 ;; If you used python-mode.el you may miss auto-indentation when
234 ;; inserting newlines. To achieve the same behavior you have two
235 ;; options:
236
237 ;; 1) Enable the minor-mode `electric-indent-mode' (enabled by
238 ;; default) and use RET. If this mode is disabled use
239 ;; `newline-and-indent', bound to C-j.
240
241 ;; 2) Add the following hook in your .emacs:
242
243 ;; (add-hook 'python-mode-hook
244 ;; #'(lambda ()
245 ;; (define-key python-mode-map "\C-m" 'newline-and-indent)))
246
247 ;; I'd recommend the first one since you'll get the same behavior for
248 ;; all modes out-of-the-box.
249
250 ;;; Installation:
251
252 ;; Add this to your .emacs:
253
254 ;; (add-to-list 'load-path "/folder/containing/file")
255 ;; (require 'python)
256
257 ;;; TODO:
258
259 ;;; Code:
260
261 (require 'ansi-color)
262 (require 'cl-lib)
263 (require 'comint)
264 (require 'json)
265 (require 'tramp-sh)
266
267 ;; Avoid compiler warnings
268 (defvar view-return-to-alist)
269 (defvar compilation-error-regexp-alist)
270 (defvar outline-heading-end-regexp)
271
272 (autoload 'comint-mode "comint")
273 (autoload 'help-function-arglist "help-fns")
274
275 ;;;###autoload
276 (add-to-list 'auto-mode-alist (cons (purecopy "\\.py\\'") 'python-mode))
277 ;;;###autoload
278 (add-to-list 'interpreter-mode-alist (cons (purecopy "python[0-9.]*") 'python-mode))
279
280 (defgroup python nil
281 "Python Language's flying circus support for Emacs."
282 :group 'languages
283 :version "24.3"
284 :link '(emacs-commentary-link "python"))
285
286
287 ;;; 24.x Compat
288 \f
289
290 (unless (fboundp 'prog-widen)
291 (defun prog-widen ()
292 (widen)))
293
294 (unless (fboundp 'prog-first-column)
295 (defun prog-first-column ()
296 0))
297
298 \f
299 ;;; Bindings
300
301 (defvar python-mode-map
302 (let ((map (make-sparse-keymap)))
303 ;; Movement
304 (define-key map [remap backward-sentence] 'python-nav-backward-block)
305 (define-key map [remap forward-sentence] 'python-nav-forward-block)
306 (define-key map [remap backward-up-list] 'python-nav-backward-up-list)
307 (define-key map [remap mark-defun] 'python-mark-defun)
308 (define-key map "\C-c\C-j" 'imenu)
309 ;; Indent specific
310 (define-key map "\177" 'python-indent-dedent-line-backspace)
311 (define-key map (kbd "<backtab>") 'python-indent-dedent-line)
312 (define-key map "\C-c<" 'python-indent-shift-left)
313 (define-key map "\C-c>" 'python-indent-shift-right)
314 ;; Skeletons
315 (define-key map "\C-c\C-tc" 'python-skeleton-class)
316 (define-key map "\C-c\C-td" 'python-skeleton-def)
317 (define-key map "\C-c\C-tf" 'python-skeleton-for)
318 (define-key map "\C-c\C-ti" 'python-skeleton-if)
319 (define-key map "\C-c\C-tm" 'python-skeleton-import)
320 (define-key map "\C-c\C-tt" 'python-skeleton-try)
321 (define-key map "\C-c\C-tw" 'python-skeleton-while)
322 ;; Shell interaction
323 (define-key map "\C-c\C-p" 'run-python)
324 (define-key map "\C-c\C-s" 'python-shell-send-string)
325 (define-key map "\C-c\C-r" 'python-shell-send-region)
326 (define-key map "\C-\M-x" 'python-shell-send-defun)
327 (define-key map "\C-c\C-c" 'python-shell-send-buffer)
328 (define-key map "\C-c\C-l" 'python-shell-send-file)
329 (define-key map "\C-c\C-z" 'python-shell-switch-to-shell)
330 ;; Some util commands
331 (define-key map "\C-c\C-v" 'python-check)
332 (define-key map "\C-c\C-f" 'python-eldoc-at-point)
333 ;; Utilities
334 (substitute-key-definition 'complete-symbol 'completion-at-point
335 map global-map)
336 (easy-menu-define python-menu map "Python Mode menu"
337 `("Python"
338 :help "Python-specific Features"
339 ["Shift region left" python-indent-shift-left :active mark-active
340 :help "Shift region left by a single indentation step"]
341 ["Shift region right" python-indent-shift-right :active mark-active
342 :help "Shift region right by a single indentation step"]
343 "-"
344 ["Start of def/class" beginning-of-defun
345 :help "Go to start of outermost definition around point"]
346 ["End of def/class" end-of-defun
347 :help "Go to end of definition around point"]
348 ["Mark def/class" mark-defun
349 :help "Mark outermost definition around point"]
350 ["Jump to def/class" imenu
351 :help "Jump to a class or function definition"]
352 "--"
353 ("Skeletons")
354 "---"
355 ["Start interpreter" run-python
356 :help "Run inferior Python process in a separate buffer"]
357 ["Switch to shell" python-shell-switch-to-shell
358 :help "Switch to running inferior Python process"]
359 ["Eval string" python-shell-send-string
360 :help "Eval string in inferior Python session"]
361 ["Eval buffer" python-shell-send-buffer
362 :help "Eval buffer in inferior Python session"]
363 ["Eval region" python-shell-send-region
364 :help "Eval region in inferior Python session"]
365 ["Eval defun" python-shell-send-defun
366 :help "Eval defun in inferior Python session"]
367 ["Eval file" python-shell-send-file
368 :help "Eval file in inferior Python session"]
369 ["Debugger" pdb :help "Run pdb under GUD"]
370 "----"
371 ["Check file" python-check
372 :help "Check file for errors"]
373 ["Help on symbol" python-eldoc-at-point
374 :help "Get help on symbol at point"]
375 ["Complete symbol" completion-at-point
376 :help "Complete symbol before point"]))
377 map)
378 "Keymap for `python-mode'.")
379
380 \f
381 ;;; Python specialized rx
382
383 (eval-and-compile
384 (defconst python-rx-constituents
385 `((block-start . ,(rx symbol-start
386 (or "def" "class" "if" "elif" "else" "try"
387 "except" "finally" "for" "while" "with")
388 symbol-end))
389 (dedenter . ,(rx symbol-start
390 (or "elif" "else" "except" "finally")
391 symbol-end))
392 (block-ender . ,(rx symbol-start
393 (or
394 "break" "continue" "pass" "raise" "return")
395 symbol-end))
396 (decorator . ,(rx line-start (* space) ?@ (any letter ?_)
397 (* (any word ?_))))
398 (defun . ,(rx symbol-start (or "def" "class") symbol-end))
399 (if-name-main . ,(rx line-start "if" (+ space) "__name__"
400 (+ space) "==" (+ space)
401 (any ?' ?\") "__main__" (any ?' ?\")
402 (* space) ?:))
403 (symbol-name . ,(rx (any letter ?_) (* (any word ?_))))
404 (open-paren . ,(rx (or "{" "[" "(")))
405 (close-paren . ,(rx (or "}" "]" ")")))
406 (simple-operator . ,(rx (any ?+ ?- ?/ ?& ?^ ?~ ?| ?* ?< ?> ?= ?%)))
407 ;; FIXME: rx should support (not simple-operator).
408 (not-simple-operator . ,(rx
409 (not
410 (any ?+ ?- ?/ ?& ?^ ?~ ?| ?* ?< ?> ?= ?%))))
411 ;; FIXME: Use regexp-opt.
412 (operator . ,(rx (or "+" "-" "/" "&" "^" "~" "|" "*" "<" ">"
413 "=" "%" "**" "//" "<<" ">>" "<=" "!="
414 "==" ">=" "is" "not")))
415 ;; FIXME: Use regexp-opt.
416 (assignment-operator . ,(rx (or "=" "+=" "-=" "*=" "/=" "//=" "%=" "**="
417 ">>=" "<<=" "&=" "^=" "|=")))
418 (string-delimiter . ,(rx (and
419 ;; Match even number of backslashes.
420 (or (not (any ?\\ ?\' ?\")) point
421 ;; Quotes might be preceded by a escaped quote.
422 (and (or (not (any ?\\)) point) ?\\
423 (* ?\\ ?\\) (any ?\' ?\")))
424 (* ?\\ ?\\)
425 ;; Match single or triple quotes of any kind.
426 (group (or "\"" "\"\"\"" "'" "'''")))))
427 (coding-cookie . ,(rx line-start ?# (* space)
428 (or
429 ;; # coding=<encoding name>
430 (: "coding" (or ?: ?=) (* space) (group-n 1 (+ (or word ?-))))
431 ;; # -*- coding: <encoding name> -*-
432 (: "-*-" (* space) "coding:" (* space)
433 (group-n 1 (+ (or word ?-))) (* space) "-*-")
434 ;; # vim: set fileencoding=<encoding name> :
435 (: "vim:" (* space) "set" (+ space)
436 "fileencoding" (* space) ?= (* space)
437 (group-n 1 (+ (or word ?-))) (* space) ":")))))
438 "Additional Python specific sexps for `python-rx'")
439
440 (defmacro python-rx (&rest regexps)
441 "Python mode specialized rx macro.
442 This variant of `rx' supports common Python named REGEXPS."
443 (let ((rx-constituents (append python-rx-constituents rx-constituents)))
444 (cond ((null regexps)
445 (error "No regexp"))
446 ((cdr regexps)
447 (rx-to-string `(and ,@regexps) t))
448 (t
449 (rx-to-string (car regexps) t))))))
450
451 \f
452 ;;; Font-lock and syntax
453
454 (eval-and-compile
455 (defun python-syntax--context-compiler-macro (form type &optional syntax-ppss)
456 (pcase type
457 (`'comment
458 `(let ((ppss (or ,syntax-ppss (syntax-ppss))))
459 (and (nth 4 ppss) (nth 8 ppss))))
460 (`'string
461 `(let ((ppss (or ,syntax-ppss (syntax-ppss))))
462 (and (nth 3 ppss) (nth 8 ppss))))
463 (`'paren
464 `(nth 1 (or ,syntax-ppss (syntax-ppss))))
465 (_ form))))
466
467 (defun python-syntax-context (type &optional syntax-ppss)
468 "Return non-nil if point is on TYPE using SYNTAX-PPSS.
469 TYPE can be `comment', `string' or `paren'. It returns the start
470 character address of the specified TYPE."
471 (declare (compiler-macro python-syntax--context-compiler-macro))
472 (let ((ppss (or syntax-ppss (syntax-ppss))))
473 (pcase type
474 (`comment (and (nth 4 ppss) (nth 8 ppss)))
475 (`string (and (nth 3 ppss) (nth 8 ppss)))
476 (`paren (nth 1 ppss))
477 (_ nil))))
478
479 (defun python-syntax-context-type (&optional syntax-ppss)
480 "Return the context type using SYNTAX-PPSS.
481 The type returned can be `comment', `string' or `paren'."
482 (let ((ppss (or syntax-ppss (syntax-ppss))))
483 (cond
484 ((nth 8 ppss) (if (nth 4 ppss) 'comment 'string))
485 ((nth 1 ppss) 'paren))))
486
487 (defsubst python-syntax-comment-or-string-p (&optional ppss)
488 "Return non-nil if PPSS is inside 'comment or 'string."
489 (nth 8 (or ppss (syntax-ppss))))
490
491 (defsubst python-syntax-closing-paren-p ()
492 "Return non-nil if char after point is a closing paren."
493 (= (syntax-class (syntax-after (point)))
494 (syntax-class (string-to-syntax ")"))))
495
496 (define-obsolete-function-alias
497 'python-info-ppss-context #'python-syntax-context "24.3")
498
499 (define-obsolete-function-alias
500 'python-info-ppss-context-type #'python-syntax-context-type "24.3")
501
502 (define-obsolete-function-alias
503 'python-info-ppss-comment-or-string-p
504 #'python-syntax-comment-or-string-p "24.3")
505
506 (defun python-font-lock-syntactic-face-function (state)
507 "Return syntactic face given STATE."
508 (if (nth 3 state)
509 (if (python-info-docstring-p state)
510 font-lock-doc-face
511 font-lock-string-face)
512 font-lock-comment-face))
513
514 (defvar python-font-lock-keywords
515 ;; Keywords
516 `(,(rx symbol-start
517 (or
518 "and" "del" "from" "not" "while" "as" "elif" "global" "or" "with"
519 "assert" "else" "if" "pass" "yield" "break" "except" "import" "class"
520 "in" "raise" "continue" "finally" "is" "return" "def" "for" "lambda"
521 "try"
522 ;; Python 2:
523 "print" "exec"
524 ;; Python 3:
525 ;; False, None, and True are listed as keywords on the Python 3
526 ;; documentation, but since they also qualify as constants they are
527 ;; fontified like that in order to keep font-lock consistent between
528 ;; Python versions.
529 "nonlocal"
530 ;; Extra:
531 "self")
532 symbol-end)
533 ;; functions
534 (,(rx symbol-start "def" (1+ space) (group (1+ (or word ?_))))
535 (1 font-lock-function-name-face))
536 ;; classes
537 (,(rx symbol-start "class" (1+ space) (group (1+ (or word ?_))))
538 (1 font-lock-type-face))
539 ;; Constants
540 (,(rx symbol-start
541 (or
542 "Ellipsis" "False" "None" "NotImplemented" "True" "__debug__"
543 ;; copyright, license, credits, quit and exit are added by the site
544 ;; module and they are not intended to be used in programs
545 "copyright" "credits" "exit" "license" "quit")
546 symbol-end) . font-lock-constant-face)
547 ;; Decorators.
548 (,(rx line-start (* (any " \t")) (group "@" (1+ (or word ?_))
549 (0+ "." (1+ (or word ?_)))))
550 (1 font-lock-type-face))
551 ;; Builtin Exceptions
552 (,(rx symbol-start
553 (or
554 "ArithmeticError" "AssertionError" "AttributeError" "BaseException"
555 "DeprecationWarning" "EOFError" "EnvironmentError" "Exception"
556 "FloatingPointError" "FutureWarning" "GeneratorExit" "IOError"
557 "ImportError" "ImportWarning" "IndexError" "KeyError"
558 "KeyboardInterrupt" "LookupError" "MemoryError" "NameError"
559 "NotImplementedError" "OSError" "OverflowError"
560 "PendingDeprecationWarning" "ReferenceError" "RuntimeError"
561 "RuntimeWarning" "StopIteration" "SyntaxError" "SyntaxWarning"
562 "SystemError" "SystemExit" "TypeError" "UnboundLocalError"
563 "UnicodeDecodeError" "UnicodeEncodeError" "UnicodeError"
564 "UnicodeTranslateError" "UnicodeWarning" "UserWarning" "VMSError"
565 "ValueError" "Warning" "WindowsError" "ZeroDivisionError"
566 ;; Python 2:
567 "StandardError"
568 ;; Python 3:
569 "BufferError" "BytesWarning" "IndentationError" "ResourceWarning"
570 "TabError")
571 symbol-end) . font-lock-type-face)
572 ;; Builtins
573 (,(rx symbol-start
574 (or
575 "abs" "all" "any" "bin" "bool" "callable" "chr" "classmethod"
576 "compile" "complex" "delattr" "dict" "dir" "divmod" "enumerate"
577 "eval" "filter" "float" "format" "frozenset" "getattr" "globals"
578 "hasattr" "hash" "help" "hex" "id" "input" "int" "isinstance"
579 "issubclass" "iter" "len" "list" "locals" "map" "max" "memoryview"
580 "min" "next" "object" "oct" "open" "ord" "pow" "print" "property"
581 "range" "repr" "reversed" "round" "set" "setattr" "slice" "sorted"
582 "staticmethod" "str" "sum" "super" "tuple" "type" "vars" "zip"
583 "__import__"
584 ;; Python 2:
585 "basestring" "cmp" "execfile" "file" "long" "raw_input" "reduce"
586 "reload" "unichr" "unicode" "xrange" "apply" "buffer" "coerce"
587 "intern"
588 ;; Python 3:
589 "ascii" "bytearray" "bytes" "exec"
590 ;; Extra:
591 "__all__" "__doc__" "__name__" "__package__")
592 symbol-end) . font-lock-builtin-face)
593 ;; assignments
594 ;; support for a = b = c = 5
595 (,(lambda (limit)
596 (let ((re (python-rx (group (+ (any word ?. ?_)))
597 (? ?\[ (+ (not (any ?\]))) ?\]) (* space)
598 assignment-operator))
599 (res nil))
600 (while (and (setq res (re-search-forward re limit t))
601 (or (python-syntax-context 'paren)
602 (equal (char-after (point)) ?=))))
603 res))
604 (1 font-lock-variable-name-face nil nil))
605 ;; support for a, b, c = (1, 2, 3)
606 (,(lambda (limit)
607 (let ((re (python-rx (group (+ (any word ?. ?_))) (* space)
608 (* ?, (* space) (+ (any word ?. ?_)) (* space))
609 ?, (* space) (+ (any word ?. ?_)) (* space)
610 assignment-operator))
611 (res nil))
612 (while (and (setq res (re-search-forward re limit t))
613 (goto-char (match-end 1))
614 (python-syntax-context 'paren)))
615 res))
616 (1 font-lock-variable-name-face nil nil))))
617
618 (defconst python-syntax-propertize-function
619 (syntax-propertize-rules
620 ((python-rx string-delimiter)
621 (0 (ignore (python-syntax-stringify))))))
622
623 (defsubst python-syntax-count-quotes (quote-char &optional point limit)
624 "Count number of quotes around point (max is 3).
625 QUOTE-CHAR is the quote char to count. Optional argument POINT is
626 the point where scan starts (defaults to current point), and LIMIT
627 is used to limit the scan."
628 (let ((i 0))
629 (while (and (< i 3)
630 (or (not limit) (< (+ point i) limit))
631 (eq (char-after (+ point i)) quote-char))
632 (setq i (1+ i)))
633 i))
634
635 (defun python-syntax-stringify ()
636 "Put `syntax-table' property correctly on single/triple quotes."
637 (let* ((num-quotes (length (match-string-no-properties 1)))
638 (ppss (prog2
639 (backward-char num-quotes)
640 (syntax-ppss)
641 (forward-char num-quotes)))
642 (string-start (and (not (nth 4 ppss)) (nth 8 ppss)))
643 (quote-starting-pos (- (point) num-quotes))
644 (quote-ending-pos (point))
645 (num-closing-quotes
646 (and string-start
647 (python-syntax-count-quotes
648 (char-before) string-start quote-starting-pos))))
649 (cond ((and string-start (= num-closing-quotes 0))
650 ;; This set of quotes doesn't match the string starting
651 ;; kind. Do nothing.
652 nil)
653 ((not string-start)
654 ;; This set of quotes delimit the start of a string.
655 (put-text-property quote-starting-pos (1+ quote-starting-pos)
656 'syntax-table (string-to-syntax "|")))
657 ((= num-quotes num-closing-quotes)
658 ;; This set of quotes delimit the end of a string.
659 (put-text-property (1- quote-ending-pos) quote-ending-pos
660 'syntax-table (string-to-syntax "|")))
661 ((> num-quotes num-closing-quotes)
662 ;; This may only happen whenever a triple quote is closing
663 ;; a single quoted string. Add string delimiter syntax to
664 ;; all three quotes.
665 (put-text-property quote-starting-pos quote-ending-pos
666 'syntax-table (string-to-syntax "|"))))))
667
668 (defvar python-mode-syntax-table
669 (let ((table (make-syntax-table)))
670 ;; Give punctuation syntax to ASCII that normally has symbol
671 ;; syntax or has word syntax and isn't a letter.
672 (let ((symbol (string-to-syntax "_"))
673 (sst (standard-syntax-table)))
674 (dotimes (i 128)
675 (unless (= i ?_)
676 (if (equal symbol (aref sst i))
677 (modify-syntax-entry i "." table)))))
678 (modify-syntax-entry ?$ "." table)
679 (modify-syntax-entry ?% "." table)
680 ;; exceptions
681 (modify-syntax-entry ?# "<" table)
682 (modify-syntax-entry ?\n ">" table)
683 (modify-syntax-entry ?' "\"" table)
684 (modify-syntax-entry ?` "$" table)
685 table)
686 "Syntax table for Python files.")
687
688 (defvar python-dotty-syntax-table
689 (let ((table (make-syntax-table python-mode-syntax-table)))
690 (modify-syntax-entry ?. "w" table)
691 (modify-syntax-entry ?_ "w" table)
692 table)
693 "Dotty syntax table for Python files.
694 It makes underscores and dots word constituent chars.")
695
696 \f
697 ;;; Indentation
698
699 (defcustom python-indent-offset 4
700 "Default indentation offset for Python."
701 :group 'python
702 :type 'integer
703 :safe 'integerp)
704
705 (defcustom python-indent-guess-indent-offset t
706 "Non-nil tells Python mode to guess `python-indent-offset' value."
707 :type 'boolean
708 :group 'python
709 :safe 'booleanp)
710
711 (defcustom python-indent-guess-indent-offset-verbose t
712 "Non-nil means to emit a warning when indentation guessing fails."
713 :type 'boolean
714 :group 'python
715 :safe' booleanp)
716
717 (defcustom python-indent-trigger-commands
718 '(indent-for-tab-command yas-expand yas/expand)
719 "Commands that might trigger a `python-indent-line' call."
720 :type '(repeat symbol)
721 :group 'python)
722
723 (define-obsolete-variable-alias
724 'python-indent 'python-indent-offset "24.3")
725
726 (define-obsolete-variable-alias
727 'python-guess-indent 'python-indent-guess-indent-offset "24.3")
728
729 (defvar python-indent-current-level 0
730 "Deprecated var available for compatibility.")
731
732 (defvar python-indent-levels '(0)
733 "Deprecated var available for compatibility.")
734
735 (make-obsolete-variable
736 'python-indent-current-level
737 "The indentation API changed to avoid global state.
738 The function `python-indent-calculate-levels' does not use it
739 anymore. If you were defadvising it and or depended on this
740 variable for indentation customizations, refactor your code to
741 work on `python-indent-calculate-indentation' instead."
742 "24.5")
743
744 (make-obsolete-variable
745 'python-indent-levels
746 "The indentation API changed to avoid global state.
747 The function `python-indent-calculate-levels' does not use it
748 anymore. If you were defadvising it and or depended on this
749 variable for indentation customizations, refactor your code to
750 work on `python-indent-calculate-indentation' instead."
751 "24.5")
752
753 (defun python-indent-guess-indent-offset ()
754 "Guess and set `python-indent-offset' for the current buffer."
755 (interactive)
756 (save-excursion
757 (save-restriction
758 (prog-widen)
759 (goto-char (point-min))
760 (let ((block-end))
761 (while (and (not block-end)
762 (re-search-forward
763 (python-rx line-start block-start) nil t))
764 (when (and
765 (not (python-syntax-context-type))
766 (progn
767 (goto-char (line-end-position))
768 (python-util-forward-comment -1)
769 (if (equal (char-before) ?:)
770 t
771 (forward-line 1)
772 (when (python-info-block-continuation-line-p)
773 (while (and (python-info-continuation-line-p)
774 (not (eobp)))
775 (forward-line 1))
776 (python-util-forward-comment -1)
777 (when (equal (char-before) ?:)
778 t)))))
779 (setq block-end (point-marker))))
780 (let ((indentation
781 (when block-end
782 (goto-char block-end)
783 (python-util-forward-comment)
784 (current-indentation))))
785 (if (and indentation (not (zerop indentation)))
786 (set (make-local-variable 'python-indent-offset) indentation)
787 (when python-indent-guess-indent-offset-verbose
788 (message "Can't guess python-indent-offset, using defaults: %s"
789 python-indent-offset))))))))
790
791 (defun python-indent-context ()
792 "Get information about the current indentation context.
793 Context is returned in a cons with the form (STATUS . START).
794
795 STATUS can be one of the following:
796
797 keyword
798 -------
799
800 :after-comment
801 - Point is after a comment line.
802 - START is the position of the \"#\" character.
803 :inside-string
804 - Point is inside string.
805 - START is the position of the first quote that starts it.
806 :no-indent
807 - No possible indentation case matches.
808 - START is always zero.
809
810 :inside-paren
811 - Fallback case when point is inside paren.
812 - START is the first non space char position *after* the open paren.
813 :inside-paren-at-closing-nested-paren
814 - Point is on a line that contains a nested paren closer.
815 - START is the position of the open paren it closes.
816 :inside-paren-at-closing-paren
817 - Point is on a line that contains a paren closer.
818 - START is the position of the open paren.
819 :inside-paren-newline-start
820 - Point is inside a paren with items starting in their own line.
821 - START is the position of the open paren.
822 :inside-paren-newline-start-from-block
823 - Point is inside a paren with items starting in their own line
824 from a block start.
825 - START is the position of the open paren.
826
827 :after-backslash
828 - Fallback case when point is after backslash.
829 - START is the char after the position of the backslash.
830 :after-backslash-assignment-continuation
831 - Point is after a backslashed assignment.
832 - START is the char after the position of the backslash.
833 :after-backslash-block-continuation
834 - Point is after a backslashed block continuation.
835 - START is the char after the position of the backslash.
836 :after-backslash-dotted-continuation
837 - Point is after a backslashed dotted continuation. Previous
838 line must contain a dot to align with.
839 - START is the char after the position of the backslash.
840 :after-backslash-first-line
841 - First line following a backslashed continuation.
842 - START is the char after the position of the backslash.
843
844 :after-block-end
845 - Point is after a line containing a block ender.
846 - START is the position where the ender starts.
847 :after-block-start
848 - Point is after a line starting a block.
849 - START is the position where the block starts.
850 :after-line
851 - Point is after a simple line.
852 - START is the position where the previous line starts.
853 :at-dedenter-block-start
854 - Point is on a line starting a dedenter block.
855 - START is the position where the dedenter block starts."
856 (save-restriction
857 (prog-widen)
858 (let ((ppss (save-excursion
859 (beginning-of-line)
860 (syntax-ppss))))
861 (cond
862 ;; Beginning of buffer.
863 ((= (line-number-at-pos) 1)
864 (cons :no-indent 0))
865 ;; Inside a string.
866 ((let ((start (python-syntax-context 'string ppss)))
867 (when start
868 (cons (if (python-info-docstring-p)
869 :inside-docstring
870 :inside-string) start))))
871 ;; Inside a paren.
872 ((let* ((start (python-syntax-context 'paren ppss))
873 (starts-in-newline
874 (when start
875 (save-excursion
876 (goto-char start)
877 (forward-char)
878 (not
879 (= (line-number-at-pos)
880 (progn
881 (python-util-forward-comment)
882 (line-number-at-pos))))))))
883 (when start
884 (cond
885 ;; Current line only holds the closing paren.
886 ((save-excursion
887 (skip-syntax-forward " ")
888 (when (and (python-syntax-closing-paren-p)
889 (progn
890 (forward-char 1)
891 (not (python-syntax-context 'paren))))
892 (cons :inside-paren-at-closing-paren start))))
893 ;; Current line only holds a closing paren for nested.
894 ((save-excursion
895 (back-to-indentation)
896 (python-syntax-closing-paren-p))
897 (cons :inside-paren-at-closing-nested-paren start))
898 ;; This line starts from a opening block in its own line.
899 ((save-excursion
900 (goto-char start)
901 (when (and
902 starts-in-newline
903 (save-excursion
904 (back-to-indentation)
905 (looking-at (python-rx block-start))))
906 (cons
907 :inside-paren-newline-start-from-block start))))
908 (starts-in-newline
909 (cons :inside-paren-newline-start start))
910 ;; General case.
911 (t (cons :inside-paren
912 (save-excursion
913 (goto-char (1+ start))
914 (skip-syntax-forward "(" 1)
915 (skip-syntax-forward " ")
916 (point))))))))
917 ;; After backslash.
918 ((let ((start (when (not (python-syntax-comment-or-string-p ppss))
919 (python-info-line-ends-backslash-p
920 (1- (line-number-at-pos))))))
921 (when start
922 (cond
923 ;; Continuation of dotted expression.
924 ((save-excursion
925 (back-to-indentation)
926 (when (eq (char-after) ?\.)
927 ;; Move point back until it's not inside a paren.
928 (while (prog2
929 (forward-line -1)
930 (and (not (bobp))
931 (python-syntax-context 'paren))))
932 (goto-char (line-end-position))
933 (while (and (search-backward
934 "." (line-beginning-position) t)
935 (python-syntax-context-type)))
936 ;; Ensure previous statement has dot to align with.
937 (when (and (eq (char-after) ?\.)
938 (not (python-syntax-context-type)))
939 (cons :after-backslash-dotted-continuation (point))))))
940 ;; Continuation of block definition.
941 ((let ((block-continuation-start
942 (python-info-block-continuation-line-p)))
943 (when block-continuation-start
944 (save-excursion
945 (goto-char block-continuation-start)
946 (re-search-forward
947 (python-rx block-start (* space))
948 (line-end-position) t)
949 (cons :after-backslash-block-continuation (point))))))
950 ;; Continuation of assignment.
951 ((let ((assignment-continuation-start
952 (python-info-assignment-continuation-line-p)))
953 (when assignment-continuation-start
954 (save-excursion
955 (goto-char assignment-continuation-start)
956 (cons :after-backslash-assignment-continuation (point))))))
957 ;; First line after backslash continuation start.
958 ((save-excursion
959 (goto-char start)
960 (when (or (= (line-number-at-pos) 1)
961 (not (python-info-beginning-of-backslash
962 (1- (line-number-at-pos)))))
963 (cons :after-backslash-first-line start))))
964 ;; General case.
965 (t (cons :after-backslash start))))))
966 ;; After beginning of block.
967 ((let ((start (save-excursion
968 (back-to-indentation)
969 (python-util-forward-comment -1)
970 (when (equal (char-before) ?:)
971 (python-nav-beginning-of-block)))))
972 (when start
973 (cons :after-block-start start))))
974 ;; At dedenter statement.
975 ((let ((start (python-info-dedenter-statement-p)))
976 (when start
977 (cons :at-dedenter-block-start start))))
978 ;; After normal line, comment or ender (default case).
979 ((save-excursion
980 (back-to-indentation)
981 (skip-chars-backward " \t\n")
982 (if (bobp)
983 (cons :no-indent 0)
984 (python-nav-beginning-of-statement)
985 (cons
986 (cond ((python-info-current-line-comment-p)
987 :after-comment)
988 ((save-excursion
989 (goto-char (line-end-position))
990 (python-util-forward-comment -1)
991 (python-nav-beginning-of-statement)
992 (looking-at (python-rx block-ender)))
993 :after-block-end)
994 (t :after-line))
995 (point)))))))))
996
997 (defun python-indent--calculate-indentation ()
998 "Internal implementation of `python-indent-calculate-indentation'.
999 May return an integer for the maximum possible indentation at
1000 current context or a list of integers. The latter case is only
1001 happening for :at-dedenter-block-start context since the
1002 possibilities can be narrowed to specific indentation points."
1003 (save-restriction
1004 (prog-widen)
1005 (save-excursion
1006 (pcase (python-indent-context)
1007 (`(:no-indent . ,_) (prog-first-column)) ; usually 0
1008 (`(,(or :after-line
1009 :after-comment
1010 :inside-string
1011 :after-backslash
1012 :inside-paren-at-closing-paren
1013 :inside-paren-at-closing-nested-paren) . ,start)
1014 ;; Copy previous indentation.
1015 (goto-char start)
1016 (current-indentation))
1017 (`(:inside-docstring . ,start)
1018 (let* ((line-indentation (current-indentation))
1019 (base-indent (progn
1020 (goto-char start)
1021 (current-indentation))))
1022 (max line-indentation base-indent)))
1023 (`(,(or :after-block-start
1024 :after-backslash-first-line
1025 :inside-paren-newline-start) . ,start)
1026 ;; Add one indentation level.
1027 (goto-char start)
1028 (+ (current-indentation) python-indent-offset))
1029 (`(,(or :inside-paren
1030 :after-backslash-block-continuation
1031 :after-backslash-assignment-continuation
1032 :after-backslash-dotted-continuation) . ,start)
1033 ;; Use the column given by the context.
1034 (goto-char start)
1035 (current-column))
1036 (`(:after-block-end . ,start)
1037 ;; Subtract one indentation level.
1038 (goto-char start)
1039 (- (current-indentation) python-indent-offset))
1040 (`(:at-dedenter-block-start . ,_)
1041 ;; List all possible indentation levels from opening blocks.
1042 (let ((opening-block-start-points
1043 (python-info-dedenter-opening-block-positions)))
1044 (if (not opening-block-start-points)
1045 (prog-first-column) ; if not found default to first column
1046 (mapcar (lambda (pos)
1047 (save-excursion
1048 (goto-char pos)
1049 (current-indentation)))
1050 opening-block-start-points))))
1051 (`(,(or :inside-paren-newline-start-from-block) . ,start)
1052 ;; Add two indentation levels to make the suite stand out.
1053 (goto-char start)
1054 (+ (current-indentation) (* python-indent-offset 2)))))))
1055
1056 (defun python-indent--calculate-levels (indentation)
1057 "Calculate levels list given INDENTATION.
1058 Argument INDENTATION can either be an integer or a list of
1059 integers. Levels are returned in ascending order, and in the
1060 case INDENTATION is a list, this order is enforced."
1061 (if (listp indentation)
1062 (sort (copy-sequence indentation) #'<)
1063 (nconc (number-sequence (prog-first-column) (1- indentation)
1064 python-indent-offset)
1065 (list indentation))))
1066
1067 (defun python-indent--previous-level (levels indentation)
1068 "Return previous level from LEVELS relative to INDENTATION."
1069 (let* ((levels (sort (copy-sequence levels) #'>))
1070 (default (car levels)))
1071 (catch 'return
1072 (dolist (level levels)
1073 (when (funcall #'< level indentation)
1074 (throw 'return level)))
1075 default)))
1076
1077 (defun python-indent-calculate-indentation (&optional previous)
1078 "Calculate indentation.
1079 Get indentation of PREVIOUS level when argument is non-nil.
1080 Return the max level of the cycle when indentation reaches the
1081 minimum."
1082 (let* ((indentation (python-indent--calculate-indentation))
1083 (levels (python-indent--calculate-levels indentation)))
1084 (if previous
1085 (python-indent--previous-level levels (current-indentation))
1086 (if levels
1087 (apply #'max levels)
1088 (prog-first-column)))))
1089
1090 (defun python-indent-line (&optional previous)
1091 "Internal implementation of `python-indent-line-function'.
1092 Use the PREVIOUS level when argument is non-nil, otherwise indent
1093 to the maximum available level. When indentation is the minimum
1094 possible and PREVIOUS is non-nil, cycle back to the maximum
1095 level."
1096 (let ((follow-indentation-p
1097 ;; Check if point is within indentation.
1098 (and (<= (line-beginning-position) (point))
1099 (>= (+ (line-beginning-position)
1100 (current-indentation))
1101 (point)))))
1102 (save-excursion
1103 (indent-line-to
1104 (python-indent-calculate-indentation previous))
1105 (python-info-dedenter-opening-block-message))
1106 (when follow-indentation-p
1107 (back-to-indentation))))
1108
1109 (defun python-indent-calculate-levels ()
1110 "Return possible indentation levels."
1111 (python-indent--calculate-levels
1112 (python-indent--calculate-indentation)))
1113
1114 (defun python-indent-line-function ()
1115 "`indent-line-function' for Python mode.
1116 When the variable `last-command' is equal to one of the symbols
1117 inside `python-indent-trigger-commands' it cycles possible
1118 indentation levels from right to left."
1119 (python-indent-line
1120 (and (memq this-command python-indent-trigger-commands)
1121 (eq last-command this-command))))
1122
1123 (defun python-indent-dedent-line ()
1124 "De-indent current line."
1125 (interactive "*")
1126 (when (and (not (bolp))
1127 (not (python-syntax-comment-or-string-p))
1128 (= (current-indentation) (current-column)))
1129 (python-indent-line t)
1130 t))
1131
1132 (defun python-indent-dedent-line-backspace (arg)
1133 "De-indent current line.
1134 Argument ARG is passed to `backward-delete-char-untabify' when
1135 point is not in between the indentation."
1136 (interactive "*p")
1137 (unless (python-indent-dedent-line)
1138 (backward-delete-char-untabify arg)))
1139
1140 (put 'python-indent-dedent-line-backspace 'delete-selection 'supersede)
1141
1142 (defun python-indent-region (start end)
1143 "Indent a Python region automagically.
1144
1145 Called from a program, START and END specify the region to indent."
1146 (let ((deactivate-mark nil))
1147 (save-excursion
1148 (goto-char end)
1149 (setq end (point-marker))
1150 (goto-char start)
1151 (or (bolp) (forward-line 1))
1152 (while (< (point) end)
1153 (or (and (bolp) (eolp))
1154 (when (and
1155 ;; Skip if previous line is empty or a comment.
1156 (save-excursion
1157 (let ((line-is-comment-p
1158 (python-info-current-line-comment-p)))
1159 (forward-line -1)
1160 (not
1161 (or (and (python-info-current-line-comment-p)
1162 ;; Unless this line is a comment too.
1163 (not line-is-comment-p))
1164 (python-info-current-line-empty-p)))))
1165 ;; Don't mess with strings, unless it's the
1166 ;; enclosing set of quotes or a docstring.
1167 (or (not (python-syntax-context 'string))
1168 (eq
1169 (syntax-after
1170 (+ (1- (point))
1171 (current-indentation)
1172 (python-syntax-count-quotes (char-after) (point))))
1173 (string-to-syntax "|"))
1174 (python-info-docstring-p))
1175 ;; Skip if current line is a block start, a
1176 ;; dedenter or block ender.
1177 (save-excursion
1178 (back-to-indentation)
1179 (not (looking-at
1180 (python-rx
1181 (or block-start dedenter block-ender))))))
1182 (python-indent-line)))
1183 (forward-line 1))
1184 (move-marker end nil))))
1185
1186 (defun python-indent-shift-left (start end &optional count)
1187 "Shift lines contained in region START END by COUNT columns to the left.
1188 COUNT defaults to `python-indent-offset'. If region isn't
1189 active, the current line is shifted. The shifted region includes
1190 the lines in which START and END lie. An error is signaled if
1191 any lines in the region are indented less than COUNT columns."
1192 (interactive
1193 (if mark-active
1194 (list (region-beginning) (region-end) current-prefix-arg)
1195 (list (line-beginning-position) (line-end-position) current-prefix-arg)))
1196 (if count
1197 (setq count (prefix-numeric-value count))
1198 (setq count python-indent-offset))
1199 (when (> count 0)
1200 (let ((deactivate-mark nil))
1201 (save-excursion
1202 (goto-char start)
1203 (while (< (point) end)
1204 (if (and (< (current-indentation) count)
1205 (not (looking-at "[ \t]*$")))
1206 (user-error "Can't shift all lines enough"))
1207 (forward-line))
1208 (indent-rigidly start end (- count))))))
1209
1210 (defun python-indent-shift-right (start end &optional count)
1211 "Shift lines contained in region START END by COUNT columns to the right.
1212 COUNT defaults to `python-indent-offset'. If region isn't
1213 active, the current line is shifted. The shifted region includes
1214 the lines in which START and END lie."
1215 (interactive
1216 (if mark-active
1217 (list (region-beginning) (region-end) current-prefix-arg)
1218 (list (line-beginning-position) (line-end-position) current-prefix-arg)))
1219 (let ((deactivate-mark nil))
1220 (setq count (if count (prefix-numeric-value count)
1221 python-indent-offset))
1222 (indent-rigidly start end count)))
1223
1224 (defun python-indent-post-self-insert-function ()
1225 "Adjust indentation after insertion of some characters.
1226 This function is intended to be added to `post-self-insert-hook.'
1227 If a line renders a paren alone, after adding a char before it,
1228 the line will be re-indented automatically if needed."
1229 (when (and electric-indent-mode
1230 (eq (char-before) last-command-event))
1231 (cond
1232 ;; Electric indent inside parens
1233 ((and
1234 (not (bolp))
1235 (let ((paren-start (python-syntax-context 'paren)))
1236 ;; Check that point is inside parens.
1237 (when paren-start
1238 (not
1239 ;; Filter the case where input is happening in the same
1240 ;; line where the open paren is.
1241 (= (line-number-at-pos)
1242 (line-number-at-pos paren-start)))))
1243 ;; When content has been added before the closing paren or a
1244 ;; comma has been inserted, it's ok to do the trick.
1245 (or
1246 (memq (char-after) '(?\) ?\] ?\}))
1247 (eq (char-before) ?,)))
1248 (save-excursion
1249 (goto-char (line-beginning-position))
1250 (let ((indentation (python-indent-calculate-indentation)))
1251 (when (and (numberp indentation) (< (current-indentation) indentation))
1252 (indent-line-to indentation)))))
1253 ;; Electric colon
1254 ((and (eq ?: last-command-event)
1255 (memq ?: electric-indent-chars)
1256 (not current-prefix-arg)
1257 ;; Trigger electric colon only at end of line
1258 (eolp)
1259 ;; Avoid re-indenting on extra colon
1260 (not (equal ?: (char-before (1- (point)))))
1261 (not (python-syntax-comment-or-string-p)))
1262 ;; Just re-indent dedenters
1263 (let ((dedenter-pos (python-info-dedenter-statement-p))
1264 (current-pos (point)))
1265 (when dedenter-pos
1266 (save-excursion
1267 (goto-char dedenter-pos)
1268 (python-indent-line)
1269 (unless (= (line-number-at-pos dedenter-pos)
1270 (line-number-at-pos current-pos))
1271 ;; Reindent region if this is a multiline statement
1272 (python-indent-region dedenter-pos current-pos)))))))))
1273
1274 \f
1275 ;;; Mark
1276
1277 (defun python-mark-defun (&optional allow-extend)
1278 "Put mark at end of this defun, point at beginning.
1279 The defun marked is the one that contains point or follows point.
1280
1281 Interactively (or with ALLOW-EXTEND non-nil), if this command is
1282 repeated or (in Transient Mark mode) if the mark is active, it
1283 marks the next defun after the ones already marked."
1284 (interactive "p")
1285 (when (python-info-looking-at-beginning-of-defun)
1286 (end-of-line 1))
1287 (mark-defun allow-extend))
1288
1289 \f
1290 ;;; Navigation
1291
1292 (defvar python-nav-beginning-of-defun-regexp
1293 (python-rx line-start (* space) defun (+ space) (group symbol-name))
1294 "Regexp matching class or function definition.
1295 The name of the defun should be grouped so it can be retrieved
1296 via `match-string'.")
1297
1298 (defun python-nav--beginning-of-defun (&optional arg)
1299 "Internal implementation of `python-nav-beginning-of-defun'.
1300 With positive ARG search backwards, else search forwards."
1301 (when (or (null arg) (= arg 0)) (setq arg 1))
1302 (let* ((re-search-fn (if (> arg 0)
1303 #'re-search-backward
1304 #'re-search-forward))
1305 (line-beg-pos (line-beginning-position))
1306 (line-content-start (+ line-beg-pos (current-indentation)))
1307 (pos (point-marker))
1308 (beg-indentation
1309 (and (> arg 0)
1310 (save-excursion
1311 (while (and
1312 (not (python-info-looking-at-beginning-of-defun))
1313 (python-nav-backward-block)))
1314 (or (and (python-info-looking-at-beginning-of-defun)
1315 (+ (current-indentation) python-indent-offset))
1316 0))))
1317 (found
1318 (progn
1319 (when (and (< arg 0)
1320 (python-info-looking-at-beginning-of-defun))
1321 (end-of-line 1))
1322 (while (and (funcall re-search-fn
1323 python-nav-beginning-of-defun-regexp nil t)
1324 (or (python-syntax-context-type)
1325 ;; Handle nested defuns when moving
1326 ;; backwards by checking indentation.
1327 (and (> arg 0)
1328 (not (= (current-indentation) 0))
1329 (>= (current-indentation) beg-indentation)))))
1330 (and (python-info-looking-at-beginning-of-defun)
1331 (or (not (= (line-number-at-pos pos)
1332 (line-number-at-pos)))
1333 (and (>= (point) line-beg-pos)
1334 (<= (point) line-content-start)
1335 (> pos line-content-start)))))))
1336 (if found
1337 (or (beginning-of-line 1) t)
1338 (and (goto-char pos) nil))))
1339
1340 (defun python-nav-beginning-of-defun (&optional arg)
1341 "Move point to `beginning-of-defun'.
1342 With positive ARG search backwards else search forward.
1343 ARG nil or 0 defaults to 1. When searching backwards,
1344 nested defuns are handled with care depending on current
1345 point position. Return non-nil if point is moved to
1346 `beginning-of-defun'."
1347 (when (or (null arg) (= arg 0)) (setq arg 1))
1348 (let ((found))
1349 (while (and (not (= arg 0))
1350 (let ((keep-searching-p
1351 (python-nav--beginning-of-defun arg)))
1352 (when (and keep-searching-p (null found))
1353 (setq found t))
1354 keep-searching-p))
1355 (setq arg (if (> arg 0) (1- arg) (1+ arg))))
1356 found))
1357
1358 (defun python-nav-end-of-defun ()
1359 "Move point to the end of def or class.
1360 Returns nil if point is not in a def or class."
1361 (interactive)
1362 (let ((beg-defun-indent)
1363 (beg-pos (point)))
1364 (when (or (python-info-looking-at-beginning-of-defun)
1365 (python-nav-beginning-of-defun 1)
1366 (python-nav-beginning-of-defun -1))
1367 (setq beg-defun-indent (current-indentation))
1368 (while (progn
1369 (python-nav-end-of-statement)
1370 (python-util-forward-comment 1)
1371 (and (> (current-indentation) beg-defun-indent)
1372 (not (eobp)))))
1373 (python-util-forward-comment -1)
1374 (forward-line 1)
1375 ;; Ensure point moves forward.
1376 (and (> beg-pos (point)) (goto-char beg-pos)))))
1377
1378 (defun python-nav--syntactically (fn poscompfn &optional contextfn)
1379 "Move point using FN avoiding places with specific context.
1380 FN must take no arguments. POSCOMPFN is a two arguments function
1381 used to compare current and previous point after it is moved
1382 using FN, this is normally a less-than or greater-than
1383 comparison. Optional argument CONTEXTFN defaults to
1384 `python-syntax-context-type' and is used for checking current
1385 point context, it must return a non-nil value if this point must
1386 be skipped."
1387 (let ((contextfn (or contextfn 'python-syntax-context-type))
1388 (start-pos (point-marker))
1389 (prev-pos))
1390 (catch 'found
1391 (while t
1392 (let* ((newpos
1393 (and (funcall fn) (point-marker)))
1394 (context (funcall contextfn)))
1395 (cond ((and (not context) newpos
1396 (or (and (not prev-pos) newpos)
1397 (and prev-pos newpos
1398 (funcall poscompfn newpos prev-pos))))
1399 (throw 'found (point-marker)))
1400 ((and newpos context)
1401 (setq prev-pos (point)))
1402 (t (when (not newpos) (goto-char start-pos))
1403 (throw 'found nil))))))))
1404
1405 (defun python-nav--forward-defun (arg)
1406 "Internal implementation of python-nav-{backward,forward}-defun.
1407 Uses ARG to define which function to call, and how many times
1408 repeat it."
1409 (let ((found))
1410 (while (and (> arg 0)
1411 (setq found
1412 (python-nav--syntactically
1413 (lambda ()
1414 (re-search-forward
1415 python-nav-beginning-of-defun-regexp nil t))
1416 '>)))
1417 (setq arg (1- arg)))
1418 (while (and (< arg 0)
1419 (setq found
1420 (python-nav--syntactically
1421 (lambda ()
1422 (re-search-backward
1423 python-nav-beginning-of-defun-regexp nil t))
1424 '<)))
1425 (setq arg (1+ arg)))
1426 found))
1427
1428 (defun python-nav-backward-defun (&optional arg)
1429 "Navigate to closer defun backward ARG times.
1430 Unlikely `python-nav-beginning-of-defun' this doesn't care about
1431 nested definitions."
1432 (interactive "^p")
1433 (python-nav--forward-defun (- (or arg 1))))
1434
1435 (defun python-nav-forward-defun (&optional arg)
1436 "Navigate to closer defun forward ARG times.
1437 Unlikely `python-nav-beginning-of-defun' this doesn't care about
1438 nested definitions."
1439 (interactive "^p")
1440 (python-nav--forward-defun (or arg 1)))
1441
1442 (defun python-nav-beginning-of-statement ()
1443 "Move to start of current statement."
1444 (interactive "^")
1445 (back-to-indentation)
1446 (let* ((ppss (syntax-ppss))
1447 (context-point
1448 (or
1449 (python-syntax-context 'paren ppss)
1450 (python-syntax-context 'string ppss))))
1451 (cond ((bobp))
1452 (context-point
1453 (goto-char context-point)
1454 (python-nav-beginning-of-statement))
1455 ((save-excursion
1456 (forward-line -1)
1457 (python-info-line-ends-backslash-p))
1458 (forward-line -1)
1459 (python-nav-beginning-of-statement))))
1460 (point-marker))
1461
1462 (defun python-nav-end-of-statement (&optional noend)
1463 "Move to end of current statement.
1464 Optional argument NOEND is internal and makes the logic to not
1465 jump to the end of line when moving forward searching for the end
1466 of the statement."
1467 (interactive "^")
1468 (let (string-start bs-pos)
1469 (while (and (or noend (goto-char (line-end-position)))
1470 (not (eobp))
1471 (cond ((setq string-start (python-syntax-context 'string))
1472 (goto-char string-start)
1473 (if (python-syntax-context 'paren)
1474 ;; Ended up inside a paren, roll again.
1475 (python-nav-end-of-statement t)
1476 ;; This is not inside a paren, move to the
1477 ;; end of this string.
1478 (goto-char (+ (point)
1479 (python-syntax-count-quotes
1480 (char-after (point)) (point))))
1481 (or (re-search-forward (rx (syntax string-delimiter)) nil t)
1482 (goto-char (point-max)))))
1483 ((python-syntax-context 'paren)
1484 ;; The statement won't end before we've escaped
1485 ;; at least one level of parenthesis.
1486 (condition-case err
1487 (goto-char (scan-lists (point) 1 -1))
1488 (scan-error (goto-char (nth 3 err)))))
1489 ((setq bs-pos (python-info-line-ends-backslash-p))
1490 (goto-char bs-pos)
1491 (forward-line 1))))))
1492 (point-marker))
1493
1494 (defun python-nav-backward-statement (&optional arg)
1495 "Move backward to previous statement.
1496 With ARG, repeat. See `python-nav-forward-statement'."
1497 (interactive "^p")
1498 (or arg (setq arg 1))
1499 (python-nav-forward-statement (- arg)))
1500
1501 (defun python-nav-forward-statement (&optional arg)
1502 "Move forward to next statement.
1503 With ARG, repeat. With negative argument, move ARG times
1504 backward to previous statement."
1505 (interactive "^p")
1506 (or arg (setq arg 1))
1507 (while (> arg 0)
1508 (python-nav-end-of-statement)
1509 (python-util-forward-comment)
1510 (python-nav-beginning-of-statement)
1511 (setq arg (1- arg)))
1512 (while (< arg 0)
1513 (python-nav-beginning-of-statement)
1514 (python-util-forward-comment -1)
1515 (python-nav-beginning-of-statement)
1516 (setq arg (1+ arg))))
1517
1518 (defun python-nav-beginning-of-block ()
1519 "Move to start of current block."
1520 (interactive "^")
1521 (let ((starting-pos (point)))
1522 (if (progn
1523 (python-nav-beginning-of-statement)
1524 (looking-at (python-rx block-start)))
1525 (point-marker)
1526 ;; Go to first line beginning a statement
1527 (while (and (not (bobp))
1528 (or (and (python-nav-beginning-of-statement) nil)
1529 (python-info-current-line-comment-p)
1530 (python-info-current-line-empty-p)))
1531 (forward-line -1))
1532 (let ((block-matching-indent
1533 (- (current-indentation) python-indent-offset)))
1534 (while
1535 (and (python-nav-backward-block)
1536 (> (current-indentation) block-matching-indent)))
1537 (if (and (looking-at (python-rx block-start))
1538 (= (current-indentation) block-matching-indent))
1539 (point-marker)
1540 (and (goto-char starting-pos) nil))))))
1541
1542 (defun python-nav-end-of-block ()
1543 "Move to end of current block."
1544 (interactive "^")
1545 (when (python-nav-beginning-of-block)
1546 (let ((block-indentation (current-indentation)))
1547 (python-nav-end-of-statement)
1548 (while (and (forward-line 1)
1549 (not (eobp))
1550 (or (and (> (current-indentation) block-indentation)
1551 (or (python-nav-end-of-statement) t))
1552 (python-info-current-line-comment-p)
1553 (python-info-current-line-empty-p))))
1554 (python-util-forward-comment -1)
1555 (point-marker))))
1556
1557 (defun python-nav-backward-block (&optional arg)
1558 "Move backward to previous block of code.
1559 With ARG, repeat. See `python-nav-forward-block'."
1560 (interactive "^p")
1561 (or arg (setq arg 1))
1562 (python-nav-forward-block (- arg)))
1563
1564 (defun python-nav-forward-block (&optional arg)
1565 "Move forward to next block of code.
1566 With ARG, repeat. With negative argument, move ARG times
1567 backward to previous block."
1568 (interactive "^p")
1569 (or arg (setq arg 1))
1570 (let ((block-start-regexp
1571 (python-rx line-start (* whitespace) block-start))
1572 (starting-pos (point)))
1573 (while (> arg 0)
1574 (python-nav-end-of-statement)
1575 (while (and
1576 (re-search-forward block-start-regexp nil t)
1577 (python-syntax-context-type)))
1578 (setq arg (1- arg)))
1579 (while (< arg 0)
1580 (python-nav-beginning-of-statement)
1581 (while (and
1582 (re-search-backward block-start-regexp nil t)
1583 (python-syntax-context-type)))
1584 (setq arg (1+ arg)))
1585 (python-nav-beginning-of-statement)
1586 (if (not (looking-at (python-rx block-start)))
1587 (and (goto-char starting-pos) nil)
1588 (and (not (= (point) starting-pos)) (point-marker)))))
1589
1590 (defun python-nav--lisp-forward-sexp (&optional arg)
1591 "Standard version `forward-sexp'.
1592 It ignores completely the value of `forward-sexp-function' by
1593 setting it to nil before calling `forward-sexp'. With positive
1594 ARG move forward only one sexp, else move backwards."
1595 (let ((forward-sexp-function)
1596 (arg (if (or (not arg) (> arg 0)) 1 -1)))
1597 (forward-sexp arg)))
1598
1599 (defun python-nav--lisp-forward-sexp-safe (&optional arg)
1600 "Safe version of standard `forward-sexp'.
1601 When at end of sexp (i.e. looking at a opening/closing paren)
1602 skips it instead of throwing an error. With positive ARG move
1603 forward only one sexp, else move backwards."
1604 (let* ((arg (if (or (not arg) (> arg 0)) 1 -1))
1605 (paren-regexp
1606 (if (> arg 0) (python-rx close-paren) (python-rx open-paren)))
1607 (search-fn
1608 (if (> arg 0) #'re-search-forward #'re-search-backward)))
1609 (condition-case nil
1610 (python-nav--lisp-forward-sexp arg)
1611 (error
1612 (while (and (funcall search-fn paren-regexp nil t)
1613 (python-syntax-context 'paren)))))))
1614
1615 (defun python-nav--forward-sexp (&optional dir safe skip-parens-p)
1616 "Move to forward sexp.
1617 With positive optional argument DIR direction move forward, else
1618 backwards. When optional argument SAFE is non-nil do not throw
1619 errors when at end of sexp, skip it instead. With optional
1620 argument SKIP-PARENS-P force sexp motion to ignore parenthesized
1621 expressions when looking at them in either direction."
1622 (setq dir (or dir 1))
1623 (unless (= dir 0)
1624 (let* ((forward-p (if (> dir 0)
1625 (and (setq dir 1) t)
1626 (and (setq dir -1) nil)))
1627 (context-type (python-syntax-context-type)))
1628 (cond
1629 ((memq context-type '(string comment))
1630 ;; Inside of a string, get out of it.
1631 (let ((forward-sexp-function))
1632 (forward-sexp dir)))
1633 ((and (not skip-parens-p)
1634 (or (eq context-type 'paren)
1635 (if forward-p
1636 (eq (syntax-class (syntax-after (point)))
1637 (car (string-to-syntax "(")))
1638 (eq (syntax-class (syntax-after (1- (point))))
1639 (car (string-to-syntax ")"))))))
1640 ;; Inside a paren or looking at it, lisp knows what to do.
1641 (if safe
1642 (python-nav--lisp-forward-sexp-safe dir)
1643 (python-nav--lisp-forward-sexp dir)))
1644 (t
1645 ;; This part handles the lispy feel of
1646 ;; `python-nav-forward-sexp'. Knowing everything about the
1647 ;; current context and the context of the next sexp tries to
1648 ;; follow the lisp sexp motion commands in a symmetric manner.
1649 (let* ((context
1650 (cond
1651 ((python-info-beginning-of-block-p) 'block-start)
1652 ((python-info-end-of-block-p) 'block-end)
1653 ((python-info-beginning-of-statement-p) 'statement-start)
1654 ((python-info-end-of-statement-p) 'statement-end)))
1655 (next-sexp-pos
1656 (save-excursion
1657 (if safe
1658 (python-nav--lisp-forward-sexp-safe dir)
1659 (python-nav--lisp-forward-sexp dir))
1660 (point)))
1661 (next-sexp-context
1662 (save-excursion
1663 (goto-char next-sexp-pos)
1664 (cond
1665 ((python-info-beginning-of-block-p) 'block-start)
1666 ((python-info-end-of-block-p) 'block-end)
1667 ((python-info-beginning-of-statement-p) 'statement-start)
1668 ((python-info-end-of-statement-p) 'statement-end)
1669 ((python-info-statement-starts-block-p) 'starts-block)
1670 ((python-info-statement-ends-block-p) 'ends-block)))))
1671 (if forward-p
1672 (cond ((and (not (eobp))
1673 (python-info-current-line-empty-p))
1674 (python-util-forward-comment dir)
1675 (python-nav--forward-sexp dir safe skip-parens-p))
1676 ((eq context 'block-start)
1677 (python-nav-end-of-block))
1678 ((eq context 'statement-start)
1679 (python-nav-end-of-statement))
1680 ((and (memq context '(statement-end block-end))
1681 (eq next-sexp-context 'ends-block))
1682 (goto-char next-sexp-pos)
1683 (python-nav-end-of-block))
1684 ((and (memq context '(statement-end block-end))
1685 (eq next-sexp-context 'starts-block))
1686 (goto-char next-sexp-pos)
1687 (python-nav-end-of-block))
1688 ((memq context '(statement-end block-end))
1689 (goto-char next-sexp-pos)
1690 (python-nav-end-of-statement))
1691 (t (goto-char next-sexp-pos)))
1692 (cond ((and (not (bobp))
1693 (python-info-current-line-empty-p))
1694 (python-util-forward-comment dir)
1695 (python-nav--forward-sexp dir safe skip-parens-p))
1696 ((eq context 'block-end)
1697 (python-nav-beginning-of-block))
1698 ((eq context 'statement-end)
1699 (python-nav-beginning-of-statement))
1700 ((and (memq context '(statement-start block-start))
1701 (eq next-sexp-context 'starts-block))
1702 (goto-char next-sexp-pos)
1703 (python-nav-beginning-of-block))
1704 ((and (memq context '(statement-start block-start))
1705 (eq next-sexp-context 'ends-block))
1706 (goto-char next-sexp-pos)
1707 (python-nav-beginning-of-block))
1708 ((memq context '(statement-start block-start))
1709 (goto-char next-sexp-pos)
1710 (python-nav-beginning-of-statement))
1711 (t (goto-char next-sexp-pos))))))))))
1712
1713 (defun python-nav-forward-sexp (&optional arg safe skip-parens-p)
1714 "Move forward across expressions.
1715 With ARG, do it that many times. Negative arg -N means move
1716 backward N times. When optional argument SAFE is non-nil do not
1717 throw errors when at end of sexp, skip it instead. With optional
1718 argument SKIP-PARENS-P force sexp motion to ignore parenthesized
1719 expressions when looking at them in either direction (forced to t
1720 in interactive calls)."
1721 (interactive "^p")
1722 (or arg (setq arg 1))
1723 ;; Do not follow parens on interactive calls. This hack to detect
1724 ;; if the function was called interactively copes with the way
1725 ;; `forward-sexp' works by calling `forward-sexp-function', losing
1726 ;; interactive detection by checking `current-prefix-arg'. The
1727 ;; reason to make this distinction is that lisp functions like
1728 ;; `blink-matching-open' get confused causing issues like the one in
1729 ;; Bug#16191. With this approach the user gets a symmetric behavior
1730 ;; when working interactively while called functions expecting
1731 ;; paren-based sexp motion work just fine.
1732 (or
1733 skip-parens-p
1734 (setq skip-parens-p
1735 (memq real-this-command
1736 (list
1737 #'forward-sexp #'backward-sexp
1738 #'python-nav-forward-sexp #'python-nav-backward-sexp
1739 #'python-nav-forward-sexp-safe #'python-nav-backward-sexp))))
1740 (while (> arg 0)
1741 (python-nav--forward-sexp 1 safe skip-parens-p)
1742 (setq arg (1- arg)))
1743 (while (< arg 0)
1744 (python-nav--forward-sexp -1 safe skip-parens-p)
1745 (setq arg (1+ arg))))
1746
1747 (defun python-nav-backward-sexp (&optional arg safe skip-parens-p)
1748 "Move backward across expressions.
1749 With ARG, do it that many times. Negative arg -N means move
1750 forward N times. When optional argument SAFE is non-nil do not
1751 throw errors when at end of sexp, skip it instead. With optional
1752 argument SKIP-PARENS-P force sexp motion to ignore parenthesized
1753 expressions when looking at them in either direction (forced to t
1754 in interactive calls)."
1755 (interactive "^p")
1756 (or arg (setq arg 1))
1757 (python-nav-forward-sexp (- arg) safe skip-parens-p))
1758
1759 (defun python-nav-forward-sexp-safe (&optional arg skip-parens-p)
1760 "Move forward safely across expressions.
1761 With ARG, do it that many times. Negative arg -N means move
1762 backward N times. With optional argument SKIP-PARENS-P force
1763 sexp motion to ignore parenthesized expressions when looking at
1764 them in either direction (forced to t in interactive calls)."
1765 (interactive "^p")
1766 (python-nav-forward-sexp arg t skip-parens-p))
1767
1768 (defun python-nav-backward-sexp-safe (&optional arg skip-parens-p)
1769 "Move backward safely across expressions.
1770 With ARG, do it that many times. Negative arg -N means move
1771 forward N times. With optional argument SKIP-PARENS-P force sexp
1772 motion to ignore parenthesized expressions when looking at them in
1773 either direction (forced to t in interactive calls)."
1774 (interactive "^p")
1775 (python-nav-backward-sexp arg t skip-parens-p))
1776
1777 (defun python-nav--up-list (&optional dir)
1778 "Internal implementation of `python-nav-up-list'.
1779 DIR is always 1 or -1 and comes sanitized from
1780 `python-nav-up-list' calls."
1781 (let ((context (python-syntax-context-type))
1782 (forward-p (> dir 0)))
1783 (cond
1784 ((memq context '(string comment)))
1785 ((eq context 'paren)
1786 (let ((forward-sexp-function))
1787 (up-list dir)))
1788 ((and forward-p (python-info-end-of-block-p))
1789 (let ((parent-end-pos
1790 (save-excursion
1791 (let ((indentation (and
1792 (python-nav-beginning-of-block)
1793 (current-indentation))))
1794 (while (and indentation
1795 (> indentation 0)
1796 (>= (current-indentation) indentation)
1797 (python-nav-backward-block)))
1798 (python-nav-end-of-block)))))
1799 (and (> (or parent-end-pos (point)) (point))
1800 (goto-char parent-end-pos))))
1801 (forward-p (python-nav-end-of-block))
1802 ((and (not forward-p)
1803 (> (current-indentation) 0)
1804 (python-info-beginning-of-block-p))
1805 (let ((prev-block-pos
1806 (save-excursion
1807 (let ((indentation (current-indentation)))
1808 (while (and (python-nav-backward-block)
1809 (>= (current-indentation) indentation))))
1810 (point))))
1811 (and (> (point) prev-block-pos)
1812 (goto-char prev-block-pos))))
1813 ((not forward-p) (python-nav-beginning-of-block)))))
1814
1815 (defun python-nav-up-list (&optional arg)
1816 "Move forward out of one level of parentheses (or blocks).
1817 With ARG, do this that many times.
1818 A negative argument means move backward but still to a less deep spot.
1819 This command assumes point is not in a string or comment."
1820 (interactive "^p")
1821 (or arg (setq arg 1))
1822 (while (> arg 0)
1823 (python-nav--up-list 1)
1824 (setq arg (1- arg)))
1825 (while (< arg 0)
1826 (python-nav--up-list -1)
1827 (setq arg (1+ arg))))
1828
1829 (defun python-nav-backward-up-list (&optional arg)
1830 "Move backward out of one level of parentheses (or blocks).
1831 With ARG, do this that many times.
1832 A negative argument means move forward but still to a less deep spot.
1833 This command assumes point is not in a string or comment."
1834 (interactive "^p")
1835 (or arg (setq arg 1))
1836 (python-nav-up-list (- arg)))
1837
1838 (defun python-nav-if-name-main ()
1839 "Move point at the beginning the __main__ block.
1840 When \"if __name__ == '__main__':\" is found returns its
1841 position, else returns nil."
1842 (interactive)
1843 (let ((point (point))
1844 (found (catch 'found
1845 (goto-char (point-min))
1846 (while (re-search-forward
1847 (python-rx line-start
1848 "if" (+ space)
1849 "__name__" (+ space)
1850 "==" (+ space)
1851 (group-n 1 (or ?\" ?\'))
1852 "__main__" (backref 1) (* space) ":")
1853 nil t)
1854 (when (not (python-syntax-context-type))
1855 (beginning-of-line)
1856 (throw 'found t))))))
1857 (if found
1858 (point)
1859 (ignore (goto-char point)))))
1860
1861 \f
1862 ;;; Shell integration
1863
1864 (defcustom python-shell-buffer-name "Python"
1865 "Default buffer name for Python interpreter."
1866 :type 'string
1867 :group 'python
1868 :safe 'stringp)
1869
1870 (defcustom python-shell-interpreter "python"
1871 "Default Python interpreter for shell."
1872 :type 'string
1873 :group 'python)
1874
1875 (defcustom python-shell-internal-buffer-name "Python Internal"
1876 "Default buffer name for the Internal Python interpreter."
1877 :type 'string
1878 :group 'python
1879 :safe 'stringp)
1880
1881 (defcustom python-shell-interpreter-args "-i"
1882 "Default arguments for the Python interpreter."
1883 :type 'string
1884 :group 'python)
1885
1886 (defcustom python-shell-interpreter-interactive-arg "-i"
1887 "Interpreter argument to force it to run interactively."
1888 :type 'string
1889 :version "24.4")
1890
1891 (defcustom python-shell-prompt-detect-enabled t
1892 "Non-nil enables autodetection of interpreter prompts."
1893 :type 'boolean
1894 :safe 'booleanp
1895 :version "24.4")
1896
1897 (defcustom python-shell-prompt-detect-failure-warning t
1898 "Non-nil enables warnings when detection of prompts fail."
1899 :type 'boolean
1900 :safe 'booleanp
1901 :version "24.4")
1902
1903 (defcustom python-shell-prompt-input-regexps
1904 '(">>> " "\\.\\.\\. " ; Python
1905 "In \\[[0-9]+\\]: " ; IPython
1906 " \\.\\.\\.: " ; IPython
1907 ;; Using ipdb outside IPython may fail to cleanup and leave static
1908 ;; IPython prompts activated, this adds some safeguard for that.
1909 "In : " "\\.\\.\\.: ")
1910 "List of regular expressions matching input prompts."
1911 :type '(repeat string)
1912 :version "24.4")
1913
1914 (defcustom python-shell-prompt-output-regexps
1915 '("" ; Python
1916 "Out\\[[0-9]+\\]: " ; IPython
1917 "Out :") ; ipdb safeguard
1918 "List of regular expressions matching output prompts."
1919 :type '(repeat string)
1920 :version "24.4")
1921
1922 (defcustom python-shell-prompt-regexp ">>> "
1923 "Regular expression matching top level input prompt of Python shell.
1924 It should not contain a caret (^) at the beginning."
1925 :type 'string)
1926
1927 (defcustom python-shell-prompt-block-regexp "\\.\\.\\. "
1928 "Regular expression matching block input prompt of Python shell.
1929 It should not contain a caret (^) at the beginning."
1930 :type 'string)
1931
1932 (defcustom python-shell-prompt-output-regexp ""
1933 "Regular expression matching output prompt of Python shell.
1934 It should not contain a caret (^) at the beginning."
1935 :type 'string)
1936
1937 (defcustom python-shell-prompt-pdb-regexp "[(<]*[Ii]?[Pp]db[>)]+ "
1938 "Regular expression matching pdb input prompt of Python shell.
1939 It should not contain a caret (^) at the beginning."
1940 :type 'string)
1941
1942 (define-obsolete-variable-alias
1943 'python-shell-enable-font-lock 'python-shell-font-lock-enable "25.1")
1944
1945 (defcustom python-shell-font-lock-enable t
1946 "Should syntax highlighting be enabled in the Python shell buffer?
1947 Restart the Python shell after changing this variable for it to take effect."
1948 :type 'boolean
1949 :group 'python
1950 :safe 'booleanp)
1951
1952 (defcustom python-shell-unbuffered t
1953 "Should shell output be unbuffered?.
1954 When non-nil, this may prevent delayed and missing output in the
1955 Python shell. See commentary for details."
1956 :type 'boolean
1957 :group 'python
1958 :safe 'booleanp)
1959
1960 (defcustom python-shell-process-environment nil
1961 "List of overridden environment variables for subprocesses to inherit.
1962 Each element should be a string of the form ENVVARNAME=VALUE.
1963 When this variable is non-nil, values are exported into the
1964 process environment before starting it. Any variables already
1965 present in the current environment are superseded by variables
1966 set here."
1967 :type '(repeat string)
1968 :group 'python)
1969
1970 (defcustom python-shell-extra-pythonpaths nil
1971 "List of extra pythonpaths for Python shell.
1972 When this variable is non-nil, values added at the beginning of
1973 the PYTHONPATH before starting processes. Any values present
1974 here that already exists in PYTHONPATH are moved to the beginning
1975 of the list so that they are prioritized when looking for
1976 modules."
1977 :type '(repeat string)
1978 :group 'python)
1979
1980 (defcustom python-shell-exec-path nil
1981 "List of paths for searching executables.
1982 When this variable is non-nil, values added at the beginning of
1983 the PATH before starting processes. Any values present here that
1984 already exists in PATH are moved to the beginning of the list so
1985 that they are prioritized when looking for executables."
1986 :type '(repeat string)
1987 :group 'python)
1988
1989 (defcustom python-shell-remote-exec-path nil
1990 "List of paths to be ensured remotely for searching executables.
1991 When this variable is non-nil, values are exported into remote
1992 hosts PATH before starting processes. Values defined in
1993 `python-shell-exec-path' will take precedence to paths defined
1994 here. Normally you wont use this variable directly unless you
1995 plan to ensure a particular set of paths to all Python shell
1996 executed through tramp connections."
1997 :type '(repeat string)
1998 :group 'python)
1999
2000 (defcustom python-shell-virtualenv-root nil
2001 "Path to virtualenv root.
2002 This variable, when set to a string, makes the environment to be
2003 modified such that shells are started within the specified
2004 virtualenv."
2005 :type '(choice (const nil) string)
2006 :group 'python)
2007
2008 (define-obsolete-variable-alias
2009 'python-shell-virtualenv-path 'python-shell-virtualenv-root "25.1")
2010
2011 (defcustom python-shell-setup-codes nil
2012 "List of code run by `python-shell-send-setup-codes'."
2013 :type '(repeat symbol)
2014 :group 'python)
2015
2016 (defcustom python-shell-compilation-regexp-alist
2017 `((,(rx line-start (1+ (any " \t")) "File \""
2018 (group (1+ (not (any "\"<")))) ; avoid `<stdin>' &c
2019 "\", line " (group (1+ digit)))
2020 1 2)
2021 (,(rx " in file " (group (1+ not-newline)) " on line "
2022 (group (1+ digit)))
2023 1 2)
2024 (,(rx line-start "> " (group (1+ (not (any "(\"<"))))
2025 "(" (group (1+ digit)) ")" (1+ (not (any "("))) "()")
2026 1 2))
2027 "`compilation-error-regexp-alist' for inferior Python."
2028 :type '(alist string)
2029 :group 'python)
2030
2031 (defmacro python-shell--add-to-path-with-priority (pathvar paths)
2032 "Modify PATHVAR and ensure PATHS are added only once at beginning."
2033 `(dolist (path (reverse ,paths))
2034 (cl-delete path ,pathvar :test #'string=)
2035 (cl-pushnew path ,pathvar :test #'string=)))
2036
2037 (defun python-shell-calculate-pythonpath ()
2038 "Calculate the PYTHONPATH using `python-shell-extra-pythonpaths'."
2039 (let ((pythonpath
2040 (tramp-compat-split-string
2041 (or (getenv "PYTHONPATH") "") path-separator)))
2042 (python-shell--add-to-path-with-priority
2043 pythonpath python-shell-extra-pythonpaths)
2044 (mapconcat 'identity pythonpath path-separator)))
2045
2046 (defun python-shell-calculate-process-environment ()
2047 "Calculate `process-environment' or `tramp-remote-process-environment'.
2048 Prepends `python-shell-process-environment', sets extra
2049 pythonpaths from `python-shell-extra-pythonpaths' and sets a few
2050 virtualenv related vars. If `default-directory' points to a
2051 remote host, the returned value is intended for
2052 `tramp-remote-process-environment'."
2053 (let* ((remote-p (file-remote-p default-directory))
2054 (process-environment (if remote-p
2055 tramp-remote-process-environment
2056 process-environment))
2057 (virtualenv (when python-shell-virtualenv-root
2058 (directory-file-name python-shell-virtualenv-root))))
2059 (dolist (env python-shell-process-environment)
2060 (pcase-let ((`(,key ,value) (split-string env "=")))
2061 (setenv key value)))
2062 (when python-shell-unbuffered
2063 (setenv "PYTHONUNBUFFERED" "1"))
2064 (when python-shell-extra-pythonpaths
2065 (setenv "PYTHONPATH" (python-shell-calculate-pythonpath)))
2066 (if (not virtualenv)
2067 process-environment
2068 (setenv "PYTHONHOME" nil)
2069 (setenv "VIRTUAL_ENV" virtualenv))
2070 process-environment))
2071
2072 (defun python-shell-calculate-exec-path ()
2073 "Calculate `exec-path'.
2074 Prepends `python-shell-exec-path' and adds the binary directory
2075 for virtualenv if `python-shell-virtualenv-root' is set. If
2076 `default-directory' points to a remote host, the returned value
2077 appends `python-shell-remote-exec-path' instead of `exec-path'."
2078 (let ((new-path (copy-sequence
2079 (if (file-remote-p default-directory)
2080 python-shell-remote-exec-path
2081 exec-path))))
2082 (python-shell--add-to-path-with-priority
2083 new-path python-shell-exec-path)
2084 (if (not python-shell-virtualenv-root)
2085 new-path
2086 (python-shell--add-to-path-with-priority
2087 new-path
2088 (list (expand-file-name "bin" python-shell-virtualenv-root)))
2089 new-path)))
2090
2091 (defun python-shell-tramp-refresh-remote-path (vec paths)
2092 "Update VEC's remote-path giving PATHS priority."
2093 (let ((remote-path (tramp-get-connection-property vec "remote-path" nil)))
2094 (when remote-path
2095 (python-shell--add-to-path-with-priority remote-path paths)
2096 (tramp-set-connection-property vec "remote-path" remote-path)
2097 (tramp-set-remote-path vec))))
2098
2099 (defun python-shell-tramp-refresh-process-environment (vec env)
2100 "Update VEC's process environment with ENV."
2101 ;; Stolen from `tramp-open-connection-setup-interactive-shell'.
2102 (let ((env (append (when (fboundp #'tramp-get-remote-locale)
2103 ;; Emacs<24.4 compat.
2104 (list (tramp-get-remote-locale vec)))
2105 (copy-sequence env)))
2106 (tramp-end-of-heredoc
2107 (if (boundp 'tramp-end-of-heredoc)
2108 tramp-end-of-heredoc
2109 (md5 tramp-end-of-output)))
2110 unset vars item)
2111 (while env
2112 (setq item (tramp-compat-split-string (car env) "="))
2113 (setcdr item (mapconcat 'identity (cdr item) "="))
2114 (if (and (stringp (cdr item)) (not (string-equal (cdr item) "")))
2115 (push (format "%s %s" (car item) (cdr item)) vars)
2116 (push (car item) unset))
2117 (setq env (cdr env)))
2118 (when vars
2119 (tramp-send-command
2120 vec
2121 (format "while read var val; do export $var=$val; done <<'%s'\n%s\n%s"
2122 tramp-end-of-heredoc
2123 (mapconcat 'identity vars "\n")
2124 tramp-end-of-heredoc)
2125 t))
2126 (when unset
2127 (tramp-send-command
2128 vec (format "unset %s" (mapconcat 'identity unset " ")) t))))
2129
2130 (defmacro python-shell-with-environment (&rest body)
2131 "Modify shell environment during execution of BODY.
2132 Temporarily sets `process-environment' and `exec-path' during
2133 execution of body. If `default-directory' points to a remote
2134 machine then modifies `tramp-remote-process-environment' and
2135 `python-shell-remote-exec-path' instead."
2136 (declare (indent 0) (debug (body)))
2137 (let ((vec (make-symbol "vec")))
2138 `(progn
2139 (let* ((,vec
2140 (when (file-remote-p default-directory)
2141 (ignore-errors
2142 (tramp-dissect-file-name default-directory 'noexpand))))
2143 (process-environment
2144 (if ,vec
2145 process-environment
2146 (python-shell-calculate-process-environment)))
2147 (exec-path
2148 (if ,vec
2149 exec-path
2150 (python-shell-calculate-exec-path)))
2151 (tramp-remote-process-environment
2152 (if ,vec
2153 (python-shell-calculate-process-environment)
2154 tramp-remote-process-environment)))
2155 (when (tramp-get-connection-process ,vec)
2156 ;; For already existing connections, the new exec path must
2157 ;; be re-set, otherwise it won't take effect. One example
2158 ;; of such case is when remote dir-locals are read and
2159 ;; *then* subprocesses are triggered within the same
2160 ;; connection.
2161 (python-shell-tramp-refresh-remote-path
2162 ,vec (python-shell-calculate-exec-path))
2163 ;; The `tramp-remote-process-environment' variable is only
2164 ;; effective when the started process is an interactive
2165 ;; shell, otherwise (like in the case of processes started
2166 ;; with `process-file') the environment is not changed.
2167 ;; This makes environment modifications effective
2168 ;; inconditionally.
2169 (python-shell-tramp-refresh-process-environment
2170 ,vec tramp-remote-process-environment))
2171 ,(macroexp-progn body)))))
2172
2173 (defvar python-shell--prompt-calculated-input-regexp nil
2174 "Calculated input prompt regexp for inferior python shell.
2175 Do not set this variable directly, instead use
2176 `python-shell-prompt-set-calculated-regexps'.")
2177
2178 (defvar python-shell--prompt-calculated-output-regexp nil
2179 "Calculated output prompt regexp for inferior python shell.
2180 Do not set this variable directly, instead use
2181 `python-shell-set-prompt-regexp'.")
2182
2183 (defun python-shell-prompt-detect ()
2184 "Detect prompts for the current `python-shell-interpreter'.
2185 When prompts can be retrieved successfully from the
2186 `python-shell-interpreter' run with
2187 `python-shell-interpreter-interactive-arg', returns a list of
2188 three elements, where the first two are input prompts and the
2189 last one is an output prompt. When no prompts can be detected
2190 and `python-shell-prompt-detect-failure-warning' is non-nil,
2191 shows a warning with instructions to avoid hangs and returns nil.
2192 When `python-shell-prompt-detect-enabled' is nil avoids any
2193 detection and just returns nil."
2194 (when python-shell-prompt-detect-enabled
2195 (python-shell-with-environment
2196 (let* ((code (concat
2197 "import sys\n"
2198 "ps = [getattr(sys, 'ps%s' % i, '') for i in range(1,4)]\n"
2199 ;; JSON is built manually for compatibility
2200 "ps_json = '\\n[\"%s\", \"%s\", \"%s\"]\\n' % tuple(ps)\n"
2201 "print (ps_json)\n"
2202 "sys.exit(0)\n"))
2203 (output
2204 (with-temp-buffer
2205 ;; TODO: improve error handling by using
2206 ;; `condition-case' and displaying the error message to
2207 ;; the user in the no-prompts warning.
2208 (ignore-errors
2209 (let ((code-file (python-shell--save-temp-file code)))
2210 ;; Use `process-file' as it is remote-host friendly.
2211 (process-file
2212 python-shell-interpreter
2213 code-file
2214 '(t nil)
2215 nil
2216 python-shell-interpreter-interactive-arg)
2217 ;; Try to cleanup
2218 (delete-file code-file)))
2219 (buffer-string)))
2220 (prompts
2221 (catch 'prompts
2222 (dolist (line (split-string output "\n" t))
2223 (let ((res
2224 ;; Check if current line is a valid JSON array
2225 (and (string= (substring line 0 2) "[\"")
2226 (ignore-errors
2227 ;; Return prompts as a list, not vector
2228 (append (json-read-from-string line) nil)))))
2229 ;; The list must contain 3 strings, where the first
2230 ;; is the input prompt, the second is the block
2231 ;; prompt and the last one is the output prompt. The
2232 ;; input prompt is the only one that can't be empty.
2233 (when (and (= (length res) 3)
2234 (cl-every #'stringp res)
2235 (not (string= (car res) "")))
2236 (throw 'prompts res))))
2237 nil)))
2238 (when (and (not prompts)
2239 python-shell-prompt-detect-failure-warning)
2240 (lwarn
2241 '(python python-shell-prompt-regexp)
2242 :warning
2243 (concat
2244 "Python shell prompts cannot be detected.\n"
2245 "If your emacs session hangs when starting python shells\n"
2246 "recover with `keyboard-quit' and then try fixing the\n"
2247 "interactive flag for your interpreter by adjusting the\n"
2248 "`python-shell-interpreter-interactive-arg' or add regexps\n"
2249 "matching shell prompts in the directory-local friendly vars:\n"
2250 " + `python-shell-prompt-regexp'\n"
2251 " + `python-shell-prompt-block-regexp'\n"
2252 " + `python-shell-prompt-output-regexp'\n"
2253 "Or alternatively in:\n"
2254 " + `python-shell-prompt-input-regexps'\n"
2255 " + `python-shell-prompt-output-regexps'")))
2256 prompts))))
2257
2258 (defun python-shell-prompt-validate-regexps ()
2259 "Validate all user provided regexps for prompts.
2260 Signals `user-error' if any of these vars contain invalid
2261 regexps: `python-shell-prompt-regexp',
2262 `python-shell-prompt-block-regexp',
2263 `python-shell-prompt-pdb-regexp',
2264 `python-shell-prompt-output-regexp',
2265 `python-shell-prompt-input-regexps',
2266 `python-shell-prompt-output-regexps'."
2267 (dolist (symbol (list 'python-shell-prompt-input-regexps
2268 'python-shell-prompt-output-regexps
2269 'python-shell-prompt-regexp
2270 'python-shell-prompt-block-regexp
2271 'python-shell-prompt-pdb-regexp
2272 'python-shell-prompt-output-regexp))
2273 (dolist (regexp (let ((regexps (symbol-value symbol)))
2274 (if (listp regexps)
2275 regexps
2276 (list regexps))))
2277 (when (not (python-util-valid-regexp-p regexp))
2278 (user-error "Invalid regexp %s in `%s'"
2279 regexp symbol)))))
2280
2281 (defun python-shell-prompt-set-calculated-regexps ()
2282 "Detect and set input and output prompt regexps.
2283 Build and set the values for `python-shell-input-prompt-regexp'
2284 and `python-shell-output-prompt-regexp' using the values from
2285 `python-shell-prompt-regexp', `python-shell-prompt-block-regexp',
2286 `python-shell-prompt-pdb-regexp',
2287 `python-shell-prompt-output-regexp',
2288 `python-shell-prompt-input-regexps',
2289 `python-shell-prompt-output-regexps' and detected prompts from
2290 `python-shell-prompt-detect'."
2291 (when (not (and python-shell--prompt-calculated-input-regexp
2292 python-shell--prompt-calculated-output-regexp))
2293 (let* ((detected-prompts (python-shell-prompt-detect))
2294 (input-prompts nil)
2295 (output-prompts nil)
2296 (build-regexp
2297 (lambda (prompts)
2298 (concat "^\\("
2299 (mapconcat #'identity
2300 (sort prompts
2301 (lambda (a b)
2302 (let ((length-a (length a))
2303 (length-b (length b)))
2304 (if (= length-a length-b)
2305 (string< a b)
2306 (> (length a) (length b))))))
2307 "\\|")
2308 "\\)"))))
2309 ;; Validate ALL regexps
2310 (python-shell-prompt-validate-regexps)
2311 ;; Collect all user defined input prompts
2312 (dolist (prompt (append python-shell-prompt-input-regexps
2313 (list python-shell-prompt-regexp
2314 python-shell-prompt-block-regexp
2315 python-shell-prompt-pdb-regexp)))
2316 (cl-pushnew prompt input-prompts :test #'string=))
2317 ;; Collect all user defined output prompts
2318 (dolist (prompt (cons python-shell-prompt-output-regexp
2319 python-shell-prompt-output-regexps))
2320 (cl-pushnew prompt output-prompts :test #'string=))
2321 ;; Collect detected prompts if any
2322 (when detected-prompts
2323 (dolist (prompt (butlast detected-prompts))
2324 (setq prompt (regexp-quote prompt))
2325 (cl-pushnew prompt input-prompts :test #'string=))
2326 (cl-pushnew (regexp-quote
2327 (car (last detected-prompts)))
2328 output-prompts :test #'string=))
2329 ;; Set input and output prompt regexps from collected prompts
2330 (setq python-shell--prompt-calculated-input-regexp
2331 (funcall build-regexp input-prompts)
2332 python-shell--prompt-calculated-output-regexp
2333 (funcall build-regexp output-prompts)))))
2334
2335 (defun python-shell-get-process-name (dedicated)
2336 "Calculate the appropriate process name for inferior Python process.
2337 If DEDICATED is t returns a string with the form
2338 `python-shell-buffer-name'[`buffer-name'] else returns the value
2339 of `python-shell-buffer-name'."
2340 (if dedicated
2341 (format "%s[%s]" python-shell-buffer-name (buffer-name))
2342 python-shell-buffer-name))
2343
2344 (defun python-shell-internal-get-process-name ()
2345 "Calculate the appropriate process name for Internal Python process.
2346 The name is calculated from `python-shell-global-buffer-name' and
2347 the `buffer-name'."
2348 (format "%s[%s]" python-shell-internal-buffer-name (buffer-name)))
2349
2350 (defun python-shell-calculate-command ()
2351 "Calculate the string used to execute the inferior Python process."
2352 (format "%s %s"
2353 (shell-quote-argument python-shell-interpreter)
2354 python-shell-interpreter-args))
2355
2356 (define-obsolete-function-alias
2357 'python-shell-parse-command
2358 #'python-shell-calculate-command "25.1")
2359
2360 (defvar python-shell--package-depth 10)
2361
2362 (defun python-shell-package-enable (directory package)
2363 "Add DIRECTORY parent to $PYTHONPATH and enable PACKAGE."
2364 (interactive
2365 (let* ((dir (expand-file-name
2366 (read-directory-name
2367 "Package root: "
2368 (file-name-directory
2369 (or (buffer-file-name) default-directory)))))
2370 (name (completing-read
2371 "Package: "
2372 (python-util-list-packages
2373 dir python-shell--package-depth))))
2374 (list dir name)))
2375 (python-shell-send-string
2376 (format
2377 (concat
2378 "import os.path;import sys;"
2379 "sys.path.append(os.path.dirname(os.path.dirname('''%s''')));"
2380 "__package__ = '''%s''';"
2381 "import %s")
2382 directory package package)
2383 (python-shell-get-process)))
2384
2385 (defun python-shell-accept-process-output (process &optional timeout regexp)
2386 "Accept PROCESS output with TIMEOUT until REGEXP is found.
2387 Optional argument TIMEOUT is the timeout argument to
2388 `accept-process-output' calls. Optional argument REGEXP
2389 overrides the regexp to match the end of output, defaults to
2390 `comint-prompt-regexp.'. Returns non-nil when output was
2391 properly captured.
2392
2393 This utility is useful in situations where the output may be
2394 received in chunks, since `accept-process-output' gives no
2395 guarantees they will be grabbed in a single call. An example use
2396 case for this would be the CPython shell start-up, where the
2397 banner and the initial prompt are received separately."
2398 (let ((regexp (or regexp comint-prompt-regexp)))
2399 (catch 'found
2400 (while t
2401 (when (not (accept-process-output process timeout))
2402 (throw 'found nil))
2403 (when (looking-back
2404 regexp (car (python-util-comint-last-prompt)))
2405 (throw 'found t))))))
2406
2407 (defun python-shell-comint-end-of-output-p (output)
2408 "Return non-nil if OUTPUT is ends with input prompt."
2409 (string-match
2410 ;; XXX: It seems on OSX an extra carriage return is attached
2411 ;; at the end of output, this handles that too.
2412 (concat
2413 "\r?\n?"
2414 ;; Remove initial caret from calculated regexp
2415 (replace-regexp-in-string
2416 (rx string-start ?^) ""
2417 python-shell--prompt-calculated-input-regexp)
2418 (rx eos))
2419 output))
2420
2421 (define-obsolete-function-alias
2422 'python-comint-output-filter-function
2423 'ansi-color-filter-apply
2424 "25.1")
2425
2426 (defun python-comint-postoutput-scroll-to-bottom (output)
2427 "Faster version of `comint-postoutput-scroll-to-bottom'.
2428 Avoids `recenter' calls until OUTPUT is completely sent."
2429 (when (and (not (string= "" output))
2430 (python-shell-comint-end-of-output-p
2431 (ansi-color-filter-apply output)))
2432 (comint-postoutput-scroll-to-bottom output))
2433 output)
2434
2435 (defvar python-shell--parent-buffer nil)
2436
2437 (defmacro python-shell-with-shell-buffer (&rest body)
2438 "Execute the forms in BODY with the shell buffer temporarily current.
2439 Signals an error if no shell buffer is available for current buffer."
2440 (declare (indent 0) (debug t))
2441 (let ((shell-process (make-symbol "shell-process")))
2442 `(let ((,shell-process (python-shell-get-process-or-error)))
2443 (with-current-buffer (process-buffer ,shell-process)
2444 ,@body))))
2445
2446 (defvar python-shell--font-lock-buffer nil)
2447
2448 (defun python-shell-font-lock-get-or-create-buffer ()
2449 "Get or create a font-lock buffer for current inferior process."
2450 (python-shell-with-shell-buffer
2451 (if python-shell--font-lock-buffer
2452 python-shell--font-lock-buffer
2453 (let ((process-name
2454 (process-name (get-buffer-process (current-buffer)))))
2455 (generate-new-buffer
2456 (format " *%s-font-lock*" process-name))))))
2457
2458 (defun python-shell-font-lock-kill-buffer ()
2459 "Kill the font-lock buffer safely."
2460 (when (and python-shell--font-lock-buffer
2461 (buffer-live-p python-shell--font-lock-buffer))
2462 (kill-buffer python-shell--font-lock-buffer)
2463 (when (derived-mode-p 'inferior-python-mode)
2464 (setq python-shell--font-lock-buffer nil))))
2465
2466 (defmacro python-shell-font-lock-with-font-lock-buffer (&rest body)
2467 "Execute the forms in BODY in the font-lock buffer.
2468 The value returned is the value of the last form in BODY. See
2469 also `with-current-buffer'."
2470 (declare (indent 0) (debug t))
2471 `(python-shell-with-shell-buffer
2472 (save-current-buffer
2473 (when (not (and python-shell--font-lock-buffer
2474 (get-buffer python-shell--font-lock-buffer)))
2475 (setq python-shell--font-lock-buffer
2476 (python-shell-font-lock-get-or-create-buffer)))
2477 (set-buffer python-shell--font-lock-buffer)
2478 (when (not font-lock-mode)
2479 (font-lock-mode 1))
2480 (set (make-local-variable 'delay-mode-hooks) t)
2481 (let ((python-indent-guess-indent-offset nil))
2482 (when (not (derived-mode-p 'python-mode))
2483 (python-mode))
2484 ,@body))))
2485
2486 (defun python-shell-font-lock-cleanup-buffer ()
2487 "Cleanup the font-lock buffer.
2488 Provided as a command because this might be handy if something
2489 goes wrong and syntax highlighting in the shell gets messed up."
2490 (interactive)
2491 (python-shell-with-shell-buffer
2492 (python-shell-font-lock-with-font-lock-buffer
2493 (erase-buffer))))
2494
2495 (defun python-shell-font-lock-comint-output-filter-function (output)
2496 "Clean up the font-lock buffer after any OUTPUT."
2497 (if (and (not (string= "" output))
2498 ;; Is end of output and is not just a prompt.
2499 (not (member
2500 (python-shell-comint-end-of-output-p
2501 (ansi-color-filter-apply output))
2502 '(nil 0))))
2503 ;; If output is other than an input prompt then "real" output has
2504 ;; been received and the font-lock buffer must be cleaned up.
2505 (python-shell-font-lock-cleanup-buffer)
2506 ;; Otherwise just add a newline.
2507 (python-shell-font-lock-with-font-lock-buffer
2508 (goto-char (point-max))
2509 (newline)))
2510 output)
2511
2512 (defun python-shell-font-lock-post-command-hook ()
2513 "Fontifies current line in shell buffer."
2514 (let ((prompt-end (cdr (python-util-comint-last-prompt))))
2515 (when (and prompt-end (> (point) prompt-end)
2516 (process-live-p (get-buffer-process (current-buffer))))
2517 (let* ((input (buffer-substring-no-properties
2518 prompt-end (point-max)))
2519 (deactivate-mark nil)
2520 (start-pos prompt-end)
2521 (buffer-undo-list t)
2522 (font-lock-buffer-pos nil)
2523 (replacement
2524 (python-shell-font-lock-with-font-lock-buffer
2525 (delete-region (line-beginning-position)
2526 (point-max))
2527 (setq font-lock-buffer-pos (point))
2528 (insert input)
2529 ;; Ensure buffer is fontified, keeping it
2530 ;; compatible with Emacs < 24.4.
2531 (if (fboundp 'font-lock-ensure)
2532 (funcall 'font-lock-ensure)
2533 (font-lock-default-fontify-buffer))
2534 (buffer-substring font-lock-buffer-pos
2535 (point-max))))
2536 (replacement-length (length replacement))
2537 (i 0))
2538 ;; Inject text properties to get input fontified.
2539 (while (not (= i replacement-length))
2540 (let* ((plist (text-properties-at i replacement))
2541 (next-change (or (next-property-change i replacement)
2542 replacement-length))
2543 (plist (let ((face (plist-get plist 'face)))
2544 (if (not face)
2545 plist
2546 ;; Replace FACE text properties with
2547 ;; FONT-LOCK-FACE so input is fontified.
2548 (plist-put plist 'face nil)
2549 (plist-put plist 'font-lock-face face)))))
2550 (set-text-properties
2551 (+ start-pos i) (+ start-pos next-change) plist)
2552 (setq i next-change)))))))
2553
2554 (defun python-shell-font-lock-turn-on (&optional msg)
2555 "Turn on shell font-lock.
2556 With argument MSG show activation message."
2557 (interactive "p")
2558 (python-shell-with-shell-buffer
2559 (python-shell-font-lock-kill-buffer)
2560 (set (make-local-variable 'python-shell--font-lock-buffer) nil)
2561 (add-hook 'post-command-hook
2562 #'python-shell-font-lock-post-command-hook nil 'local)
2563 (add-hook 'kill-buffer-hook
2564 #'python-shell-font-lock-kill-buffer nil 'local)
2565 (add-hook 'comint-output-filter-functions
2566 #'python-shell-font-lock-comint-output-filter-function
2567 'append 'local)
2568 (when msg
2569 (message "Shell font-lock is enabled"))))
2570
2571 (defun python-shell-font-lock-turn-off (&optional msg)
2572 "Turn off shell font-lock.
2573 With argument MSG show deactivation message."
2574 (interactive "p")
2575 (python-shell-with-shell-buffer
2576 (python-shell-font-lock-kill-buffer)
2577 (when (python-util-comint-last-prompt)
2578 ;; Cleanup current fontification
2579 (remove-text-properties
2580 (cdr (python-util-comint-last-prompt))
2581 (line-end-position)
2582 '(face nil font-lock-face nil)))
2583 (set (make-local-variable 'python-shell--font-lock-buffer) nil)
2584 (remove-hook 'post-command-hook
2585 #'python-shell-font-lock-post-command-hook 'local)
2586 (remove-hook 'kill-buffer-hook
2587 #'python-shell-font-lock-kill-buffer 'local)
2588 (remove-hook 'comint-output-filter-functions
2589 #'python-shell-font-lock-comint-output-filter-function
2590 'local)
2591 (when msg
2592 (message "Shell font-lock is disabled"))))
2593
2594 (defun python-shell-font-lock-toggle (&optional msg)
2595 "Toggle font-lock for shell.
2596 With argument MSG show activation/deactivation message."
2597 (interactive "p")
2598 (python-shell-with-shell-buffer
2599 (set (make-local-variable 'python-shell-font-lock-enable)
2600 (not python-shell-font-lock-enable))
2601 (if python-shell-font-lock-enable
2602 (python-shell-font-lock-turn-on msg)
2603 (python-shell-font-lock-turn-off msg))
2604 python-shell-font-lock-enable))
2605
2606 ;; Used to hold user interactive overrides to
2607 ;; `python-shell-interpreter' and `python-shell-interpreter-args' that
2608 ;; will be made buffer-local by `inferior-python-mode':
2609 (defvar python-shell--interpreter)
2610 (defvar python-shell--interpreter-args)
2611
2612 (define-derived-mode inferior-python-mode comint-mode "Inferior Python"
2613 "Major mode for Python inferior process.
2614 Runs a Python interpreter as a subprocess of Emacs, with Python
2615 I/O through an Emacs buffer. Variables `python-shell-interpreter'
2616 and `python-shell-interpreter-args' control which Python
2617 interpreter is run. Variables
2618 `python-shell-prompt-regexp',
2619 `python-shell-prompt-output-regexp',
2620 `python-shell-prompt-block-regexp',
2621 `python-shell-font-lock-enable',
2622 `python-shell-completion-setup-code',
2623 `python-shell-completion-string-code',
2624 `python-eldoc-setup-code', `python-eldoc-string-code',
2625 `python-ffap-setup-code' and `python-ffap-string-code' can
2626 customize this mode for different Python interpreters.
2627
2628 This mode resets `comint-output-filter-functions' locally, so you
2629 may want to re-add custom functions to it using the
2630 `inferior-python-mode-hook'.
2631
2632 You can also add additional setup code to be run at
2633 initialization of the interpreter via `python-shell-setup-codes'
2634 variable.
2635
2636 \(Type \\[describe-mode] in the process buffer for a list of commands.)"
2637 (when python-shell--parent-buffer
2638 (python-util-clone-local-variables python-shell--parent-buffer))
2639 ;; Users can interactively override default values for
2640 ;; `python-shell-interpreter' and `python-shell-interpreter-args'
2641 ;; when calling `run-python'. This ensures values let-bound in
2642 ;; `python-shell-make-comint' are locally set if needed.
2643 (set (make-local-variable 'python-shell-interpreter)
2644 (or python-shell--interpreter python-shell-interpreter))
2645 (set (make-local-variable 'python-shell-interpreter-args)
2646 (or python-shell--interpreter-args python-shell-interpreter-args))
2647 (set (make-local-variable 'python-shell--prompt-calculated-input-regexp) nil)
2648 (set (make-local-variable 'python-shell--prompt-calculated-output-regexp) nil)
2649 (python-shell-prompt-set-calculated-regexps)
2650 (setq comint-prompt-regexp python-shell--prompt-calculated-input-regexp)
2651 (set (make-local-variable 'comint-prompt-read-only) t)
2652 (setq mode-line-process '(":%s"))
2653 (set (make-local-variable 'comint-output-filter-functions)
2654 '(ansi-color-process-output
2655 python-pdbtrack-comint-output-filter-function
2656 python-comint-postoutput-scroll-to-bottom))
2657 (set (make-local-variable 'compilation-error-regexp-alist)
2658 python-shell-compilation-regexp-alist)
2659 (add-hook 'completion-at-point-functions
2660 #'python-shell-completion-at-point nil 'local)
2661 (define-key inferior-python-mode-map "\t"
2662 'python-shell-completion-complete-or-indent)
2663 (make-local-variable 'python-pdbtrack-buffers-to-kill)
2664 (make-local-variable 'python-pdbtrack-tracked-buffer)
2665 (make-local-variable 'python-shell-internal-last-output)
2666 (when python-shell-font-lock-enable
2667 (python-shell-font-lock-turn-on))
2668 (compilation-shell-minor-mode 1)
2669 (python-shell-accept-process-output
2670 (get-buffer-process (current-buffer))))
2671
2672 (defun python-shell-make-comint (cmd proc-name &optional show internal)
2673 "Create a Python shell comint buffer.
2674 CMD is the Python command to be executed and PROC-NAME is the
2675 process name the comint buffer will get. After the comint buffer
2676 is created the `inferior-python-mode' is activated. When
2677 optional argument SHOW is non-nil the buffer is shown. When
2678 optional argument INTERNAL is non-nil this process is run on a
2679 buffer with a name that starts with a space, following the Emacs
2680 convention for temporary/internal buffers, and also makes sure
2681 the user is not queried for confirmation when the process is
2682 killed."
2683 (save-excursion
2684 (python-shell-with-environment
2685 (let* ((proc-buffer-name
2686 (format (if (not internal) "*%s*" " *%s*") proc-name)))
2687 (when (not (comint-check-proc proc-buffer-name))
2688 (let* ((cmdlist (split-string-and-unquote cmd))
2689 (interpreter (car cmdlist))
2690 (args (cdr cmdlist))
2691 (buffer (apply #'make-comint-in-buffer proc-name proc-buffer-name
2692 interpreter nil args))
2693 (python-shell--parent-buffer (current-buffer))
2694 (process (get-buffer-process buffer))
2695 ;; Users can override the interpreter and args
2696 ;; interactively when calling `run-python', let-binding
2697 ;; these allows to have the new right values in all
2698 ;; setup code that is done in `inferior-python-mode',
2699 ;; which is important, especially for prompt detection.
2700 (python-shell--interpreter interpreter)
2701 (python-shell--interpreter-args
2702 (mapconcat #'identity args " ")))
2703 (with-current-buffer buffer
2704 (inferior-python-mode))
2705 (when show (display-buffer buffer))
2706 (and internal (set-process-query-on-exit-flag process nil))))
2707 proc-buffer-name))))
2708
2709 ;;;###autoload
2710 (defun run-python (&optional cmd dedicated show)
2711 "Run an inferior Python process.
2712
2713 Argument CMD defaults to `python-shell-calculate-command' return
2714 value. When called interactively with `prefix-arg', it allows
2715 the user to edit such value and choose whether the interpreter
2716 should be DEDICATED for the current buffer. When numeric prefix
2717 arg is other than 0 or 4 do not SHOW.
2718
2719 For a given buffer and same values of DEDICATED, if a process is
2720 already running for it, it will do nothing. This means that if
2721 the current buffer is using a global process, the user is still
2722 able to switch it to use a dedicated one.
2723
2724 Runs the hook `inferior-python-mode-hook' after
2725 `comint-mode-hook' is run. (Type \\[describe-mode] in the
2726 process buffer for a list of commands.)"
2727 (interactive
2728 (if current-prefix-arg
2729 (list
2730 (read-shell-command "Run Python: " (python-shell-calculate-command))
2731 (y-or-n-p "Make dedicated process? ")
2732 (= (prefix-numeric-value current-prefix-arg) 4))
2733 (list (python-shell-calculate-command) nil t)))
2734 (get-buffer-process
2735 (python-shell-make-comint
2736 (or cmd (python-shell-calculate-command))
2737 (python-shell-get-process-name dedicated) show)))
2738
2739 (defun run-python-internal ()
2740 "Run an inferior Internal Python process.
2741 Input and output via buffer named after
2742 `python-shell-internal-buffer-name' and what
2743 `python-shell-internal-get-process-name' returns.
2744
2745 This new kind of shell is intended to be used for generic
2746 communication related to defined configurations; the main
2747 difference with global or dedicated shells is that these ones are
2748 attached to a configuration, not a buffer. This means that can
2749 be used for example to retrieve the sys.path and other stuff,
2750 without messing with user shells. Note that
2751 `python-shell-font-lock-enable' and `inferior-python-mode-hook'
2752 are set to nil for these shells, so setup codes are not sent at
2753 startup."
2754 (let ((python-shell-font-lock-enable nil)
2755 (inferior-python-mode-hook nil))
2756 (get-buffer-process
2757 (python-shell-make-comint
2758 (python-shell-calculate-command)
2759 (python-shell-internal-get-process-name) nil t))))
2760
2761 (defun python-shell-get-buffer ()
2762 "Return inferior Python buffer for current buffer.
2763 If current buffer is in `inferior-python-mode', return it."
2764 (if (derived-mode-p 'inferior-python-mode)
2765 (current-buffer)
2766 (let* ((dedicated-proc-name (python-shell-get-process-name t))
2767 (dedicated-proc-buffer-name (format "*%s*" dedicated-proc-name))
2768 (global-proc-name (python-shell-get-process-name nil))
2769 (global-proc-buffer-name (format "*%s*" global-proc-name))
2770 (dedicated-running (comint-check-proc dedicated-proc-buffer-name))
2771 (global-running (comint-check-proc global-proc-buffer-name)))
2772 ;; Always prefer dedicated
2773 (or (and dedicated-running dedicated-proc-buffer-name)
2774 (and global-running global-proc-buffer-name)))))
2775
2776 (defun python-shell-get-process ()
2777 "Return inferior Python process for current buffer."
2778 (get-buffer-process (python-shell-get-buffer)))
2779
2780 (defun python-shell-get-process-or-error (&optional interactivep)
2781 "Return inferior Python process for current buffer or signal error.
2782 When argument INTERACTIVEP is non-nil, use `user-error' instead
2783 of `error' with a user-friendly message."
2784 (or (python-shell-get-process)
2785 (if interactivep
2786 (user-error
2787 "Start a Python process first with ‘%s’ or ‘%s’."
2788 (substitute-command-keys "\\[run-python]")
2789 ;; Get the binding.
2790 (key-description
2791 (where-is-internal
2792 #'run-python overriding-local-map t)))
2793 (error
2794 "No inferior Python process running."))))
2795
2796 (defun python-shell-get-or-create-process (&optional cmd dedicated show)
2797 "Get or create an inferior Python process for current buffer and return it.
2798 Arguments CMD, DEDICATED and SHOW are those of `run-python' and
2799 are used to start the shell. If those arguments are not
2800 provided, `run-python' is called interactively and the user will
2801 be asked for their values."
2802 (let ((shell-process (python-shell-get-process)))
2803 (when (not shell-process)
2804 (if (not cmd)
2805 ;; XXX: Refactor code such that calling `run-python'
2806 ;; interactively is not needed anymore.
2807 (call-interactively 'run-python)
2808 (run-python cmd dedicated show)))
2809 (or shell-process (python-shell-get-process))))
2810
2811 (make-obsolete
2812 #'python-shell-get-or-create-process
2813 "Instead call `python-shell-get-process' and create one if returns nil."
2814 "25.1")
2815
2816 (defvar python-shell-internal-buffer nil
2817 "Current internal shell buffer for the current buffer.
2818 This is really not necessary at all for the code to work but it's
2819 there for compatibility with CEDET.")
2820
2821 (defvar python-shell-internal-last-output nil
2822 "Last output captured by the internal shell.
2823 This is really not necessary at all for the code to work but it's
2824 there for compatibility with CEDET.")
2825
2826 (defun python-shell-internal-get-or-create-process ()
2827 "Get or create an inferior Internal Python process."
2828 (let ((proc-name (python-shell-internal-get-process-name)))
2829 (if (process-live-p proc-name)
2830 (get-process proc-name)
2831 (run-python-internal))))
2832
2833 (define-obsolete-function-alias
2834 'python-proc 'python-shell-internal-get-or-create-process "24.3")
2835
2836 (define-obsolete-variable-alias
2837 'python-buffer 'python-shell-internal-buffer "24.3")
2838
2839 (define-obsolete-variable-alias
2840 'python-preoutput-result 'python-shell-internal-last-output "24.3")
2841
2842 (defun python-shell--save-temp-file (string)
2843 (let* ((temporary-file-directory
2844 (if (file-remote-p default-directory)
2845 (concat (file-remote-p default-directory) "/tmp")
2846 temporary-file-directory))
2847 (temp-file-name (make-temp-file "py"))
2848 (coding-system-for-write (python-info-encoding)))
2849 (with-temp-file temp-file-name
2850 (insert string)
2851 (delete-trailing-whitespace))
2852 temp-file-name))
2853
2854 (defun python-shell-send-string (string &optional process msg)
2855 "Send STRING to inferior Python PROCESS.
2856 When optional argument MSG is non-nil, forces display of a
2857 user-friendly message if there's no process running; defaults to
2858 t when called interactively."
2859 (interactive
2860 (list (read-string "Python command: ") nil t))
2861 (let ((process (or process (python-shell-get-process-or-error msg))))
2862 (if (string-match ".\n+." string) ;Multiline.
2863 (let* ((temp-file-name (python-shell--save-temp-file string))
2864 (file-name (or (buffer-file-name) temp-file-name)))
2865 (python-shell-send-file file-name process temp-file-name t))
2866 (comint-send-string process string)
2867 (when (or (not (string-match "\n\\'" string))
2868 (string-match "\n[ \t].*\n?\\'" string))
2869 (comint-send-string process "\n")))))
2870
2871 (defvar python-shell-output-filter-in-progress nil)
2872 (defvar python-shell-output-filter-buffer nil)
2873
2874 (defun python-shell-output-filter (string)
2875 "Filter used in `python-shell-send-string-no-output' to grab output.
2876 STRING is the output received to this point from the process.
2877 This filter saves received output from the process in
2878 `python-shell-output-filter-buffer' and stops receiving it after
2879 detecting a prompt at the end of the buffer."
2880 (setq
2881 string (ansi-color-filter-apply string)
2882 python-shell-output-filter-buffer
2883 (concat python-shell-output-filter-buffer string))
2884 (when (python-shell-comint-end-of-output-p
2885 python-shell-output-filter-buffer)
2886 ;; Output ends when `python-shell-output-filter-buffer' contains
2887 ;; the prompt attached at the end of it.
2888 (setq python-shell-output-filter-in-progress nil
2889 python-shell-output-filter-buffer
2890 (substring python-shell-output-filter-buffer
2891 0 (match-beginning 0)))
2892 (when (string-match
2893 python-shell--prompt-calculated-output-regexp
2894 python-shell-output-filter-buffer)
2895 ;; Some shells, like IPython might append a prompt before the
2896 ;; output, clean that.
2897 (setq python-shell-output-filter-buffer
2898 (substring python-shell-output-filter-buffer (match-end 0)))))
2899 "")
2900
2901 (defun python-shell-send-string-no-output (string &optional process)
2902 "Send STRING to PROCESS and inhibit output.
2903 Return the output."
2904 (let ((process (or process (python-shell-get-process-or-error)))
2905 (comint-preoutput-filter-functions
2906 '(python-shell-output-filter))
2907 (python-shell-output-filter-in-progress t)
2908 (inhibit-quit t))
2909 (or
2910 (with-local-quit
2911 (python-shell-send-string string process)
2912 (while python-shell-output-filter-in-progress
2913 ;; `python-shell-output-filter' takes care of setting
2914 ;; `python-shell-output-filter-in-progress' to NIL after it
2915 ;; detects end of output.
2916 (accept-process-output process))
2917 (prog1
2918 python-shell-output-filter-buffer
2919 (setq python-shell-output-filter-buffer nil)))
2920 (with-current-buffer (process-buffer process)
2921 (comint-interrupt-subjob)))))
2922
2923 (defun python-shell-internal-send-string (string)
2924 "Send STRING to the Internal Python interpreter.
2925 Returns the output. See `python-shell-send-string-no-output'."
2926 ;; XXX Remove `python-shell-internal-last-output' once CEDET is
2927 ;; updated to support this new mode.
2928 (setq python-shell-internal-last-output
2929 (python-shell-send-string-no-output
2930 ;; Makes this function compatible with the old
2931 ;; python-send-receive. (At least for CEDET).
2932 (replace-regexp-in-string "_emacs_out +" "" string)
2933 (python-shell-internal-get-or-create-process))))
2934
2935 (define-obsolete-function-alias
2936 'python-send-receive 'python-shell-internal-send-string "24.3")
2937
2938 (define-obsolete-function-alias
2939 'python-send-string 'python-shell-internal-send-string "24.3")
2940
2941 (defun python-shell-buffer-substring (start end &optional nomain)
2942 "Send buffer substring from START to END formatted for shell.
2943 This is a wrapper over `buffer-substring' that takes care of
2944 different transformations for the code sent to be evaluated in
2945 the python shell:
2946 1. When optional argument NOMAIN is non-nil everything under an
2947 \"if __name__ == '__main__'\" block will be removed.
2948 2. When a subregion of the buffer is sent, it takes care of
2949 appending extra empty lines so tracebacks are correct.
2950 3. When the region sent is a substring of the current buffer, a
2951 coding cookie is added.
2952 4. Wraps indented regions under an \"if True:\" block so the
2953 interpreter evaluates them correctly."
2954 (let* ((substring (buffer-substring-no-properties start end))
2955 (starts-at-point-min-p (save-restriction
2956 (widen)
2957 (= (point-min) start)))
2958 (encoding (python-info-encoding))
2959 (fillstr (when (not starts-at-point-min-p)
2960 (concat
2961 (format "# -*- coding: %s -*-\n" encoding)
2962 (make-string
2963 ;; Subtract 2 because of the coding cookie.
2964 (- (line-number-at-pos start) 2) ?\n))))
2965 (toplevel-block-p (save-excursion
2966 (goto-char start)
2967 (or (zerop (line-number-at-pos start))
2968 (progn
2969 (python-util-forward-comment 1)
2970 (zerop (current-indentation)))))))
2971 (with-temp-buffer
2972 (python-mode)
2973 (if fillstr (insert fillstr))
2974 (insert substring)
2975 (goto-char (point-min))
2976 (when (not toplevel-block-p)
2977 (insert "if True:")
2978 (delete-region (point) (line-end-position)))
2979 (when nomain
2980 (let* ((if-name-main-start-end
2981 (and nomain
2982 (save-excursion
2983 (when (python-nav-if-name-main)
2984 (cons (point)
2985 (progn (python-nav-forward-sexp-safe)
2986 ;; Include ending newline
2987 (forward-line 1)
2988 (point)))))))
2989 ;; Oh destructuring bind, how I miss you.
2990 (if-name-main-start (car if-name-main-start-end))
2991 (if-name-main-end (cdr if-name-main-start-end))
2992 (fillstr (make-string
2993 (- (line-number-at-pos if-name-main-end)
2994 (line-number-at-pos if-name-main-start)) ?\n)))
2995 (when if-name-main-start-end
2996 (goto-char if-name-main-start)
2997 (delete-region if-name-main-start if-name-main-end)
2998 (insert fillstr))))
2999 ;; Ensure there's only one coding cookie in the generated string.
3000 (goto-char (point-min))
3001 (when (looking-at-p (python-rx coding-cookie))
3002 (forward-line 1)
3003 (when (looking-at-p (python-rx coding-cookie))
3004 (delete-region
3005 (line-beginning-position) (line-end-position))))
3006 (buffer-substring-no-properties (point-min) (point-max)))))
3007
3008 (defun python-shell-send-region (start end &optional send-main msg)
3009 "Send the region delimited by START and END to inferior Python process.
3010 When optional argument SEND-MAIN is non-nil, allow execution of
3011 code inside blocks delimited by \"if __name__== '__main__':\".
3012 When called interactively SEND-MAIN defaults to nil, unless it's
3013 called with prefix argument. When optional argument MSG is
3014 non-nil, forces display of a user-friendly message if there's no
3015 process running; defaults to t when called interactively."
3016 (interactive
3017 (list (region-beginning) (region-end) current-prefix-arg t))
3018 (let* ((string (python-shell-buffer-substring start end (not send-main)))
3019 (process (python-shell-get-process-or-error msg))
3020 (original-string (buffer-substring-no-properties start end))
3021 (_ (string-match "\\`\n*\\(.*\\)" original-string)))
3022 (message "Sent: %s..." (match-string 1 original-string))
3023 (python-shell-send-string string process)))
3024
3025 (defun python-shell-send-buffer (&optional send-main msg)
3026 "Send the entire buffer to inferior Python process.
3027 When optional argument SEND-MAIN is non-nil, allow execution of
3028 code inside blocks delimited by \"if __name__== '__main__':\".
3029 When called interactively SEND-MAIN defaults to nil, unless it's
3030 called with prefix argument. When optional argument MSG is
3031 non-nil, forces display of a user-friendly message if there's no
3032 process running; defaults to t when called interactively."
3033 (interactive (list current-prefix-arg t))
3034 (save-restriction
3035 (widen)
3036 (python-shell-send-region (point-min) (point-max) send-main msg)))
3037
3038 (defun python-shell-send-defun (&optional arg msg)
3039 "Send the current defun to inferior Python process.
3040 When argument ARG is non-nil do not include decorators. When
3041 optional argument MSG is non-nil, forces display of a
3042 user-friendly message if there's no process running; defaults to
3043 t when called interactively."
3044 (interactive (list current-prefix-arg t))
3045 (save-excursion
3046 (python-shell-send-region
3047 (progn
3048 (end-of-line 1)
3049 (while (and (or (python-nav-beginning-of-defun)
3050 (beginning-of-line 1))
3051 (> (current-indentation) 0)))
3052 (when (not arg)
3053 (while (and (forward-line -1)
3054 (looking-at (python-rx decorator))))
3055 (forward-line 1))
3056 (point-marker))
3057 (progn
3058 (or (python-nav-end-of-defun)
3059 (end-of-line 1))
3060 (point-marker))
3061 nil ;; noop
3062 msg)))
3063
3064 (defun python-shell-send-file (file-name &optional process temp-file-name
3065 delete msg)
3066 "Send FILE-NAME to inferior Python PROCESS.
3067 If TEMP-FILE-NAME is passed then that file is used for processing
3068 instead, while internally the shell will continue to use
3069 FILE-NAME. If TEMP-FILE-NAME and DELETE are non-nil, then
3070 TEMP-FILE-NAME is deleted after evaluation is performed. When
3071 optional argument MSG is non-nil, forces display of a
3072 user-friendly message if there's no process running; defaults to
3073 t when called interactively."
3074 (interactive
3075 (list
3076 (read-file-name "File to send: ") ; file-name
3077 nil ; process
3078 nil ; temp-file-name
3079 nil ; delete
3080 t)) ; msg
3081 (let* ((process (or process (python-shell-get-process-or-error msg)))
3082 (encoding (with-temp-buffer
3083 (insert-file-contents
3084 (or temp-file-name file-name))
3085 (python-info-encoding)))
3086 (file-name (expand-file-name
3087 (or (file-remote-p file-name 'localname)
3088 file-name)))
3089 (temp-file-name (when temp-file-name
3090 (expand-file-name
3091 (or (file-remote-p temp-file-name 'localname)
3092 temp-file-name)))))
3093 (python-shell-send-string
3094 (format
3095 (concat
3096 "import codecs, os;"
3097 "__pyfile = codecs.open('''%s''', encoding='''%s''');"
3098 "__code = __pyfile.read().encode('''%s''');"
3099 "__pyfile.close();"
3100 (when (and delete temp-file-name)
3101 (format "os.remove('''%s''');" temp-file-name))
3102 "exec(compile(__code, '''%s''', 'exec'));")
3103 (or temp-file-name file-name) encoding encoding file-name)
3104 process)))
3105
3106 (defun python-shell-switch-to-shell (&optional msg)
3107 "Switch to inferior Python process buffer.
3108 When optional argument MSG is non-nil, forces display of a
3109 user-friendly message if there's no process running; defaults to
3110 t when called interactively."
3111 (interactive "p")
3112 (pop-to-buffer
3113 (process-buffer (python-shell-get-process-or-error msg)) nil t))
3114
3115 (defun python-shell-send-setup-code ()
3116 "Send all setup code for shell.
3117 This function takes the list of setup code to send from the
3118 `python-shell-setup-codes' list."
3119 (when python-shell-setup-codes
3120 (let ((process (python-shell-get-process))
3121 (code (concat
3122 (mapconcat
3123 (lambda (elt)
3124 (cond ((stringp elt) elt)
3125 ((symbolp elt) (symbol-value elt))
3126 (t "")))
3127 python-shell-setup-codes
3128 "\n\nprint ('python.el: sent setup code')"))))
3129 (python-shell-send-string code process)
3130 (python-shell-accept-process-output process))))
3131
3132 (add-hook 'inferior-python-mode-hook
3133 #'python-shell-send-setup-code)
3134
3135 \f
3136 ;;; Shell completion
3137
3138 (defcustom python-shell-completion-setup-code
3139 "try:
3140 import readline
3141 except:
3142 def __PYTHON_EL_get_completions(text):
3143 return []
3144 else:
3145 def __PYTHON_EL_get_completions(text):
3146 try:
3147 import __builtin__
3148 except ImportError:
3149 # Python 3
3150 import builtins as __builtin__
3151 builtins = dir(__builtin__)
3152 completions = []
3153 is_ipython = ('__IPYTHON__' in builtins or
3154 '__IPYTHON__active' in builtins)
3155 splits = text.split()
3156 is_module = splits and splits[0] in ('from', 'import')
3157 try:
3158 if is_ipython and is_module:
3159 from IPython.core.completerlib import module_completion
3160 completions = module_completion(text.strip())
3161 elif is_ipython and '__IP' in builtins:
3162 completions = __IP.complete(text)
3163 elif is_ipython and 'get_ipython' in builtins:
3164 completions = get_ipython().Completer.all_completions(text)
3165 else:
3166 # Try to reuse current completer.
3167 completer = readline.get_completer()
3168 if not completer:
3169 # importing rlcompleter sets the completer, use it as a
3170 # last resort to avoid breaking customizations.
3171 import rlcompleter
3172 completer = readline.get_completer()
3173 i = 0
3174 while True:
3175 completion = completer(text, i)
3176 if not completion:
3177 break
3178 i += 1
3179 completions.append(completion)
3180 except:
3181 pass
3182 return completions"
3183 "Code used to setup completion in inferior Python processes."
3184 :type 'string
3185 :group 'python)
3186
3187 (defcustom python-shell-completion-string-code
3188 "';'.join(__PYTHON_EL_get_completions('''%s'''))"
3189 "Python code used to get a string of completions separated by semicolons.
3190 The string passed to the function is the current python name or
3191 the full statement in the case of imports."
3192 :type 'string
3193 :group 'python)
3194
3195 (define-obsolete-variable-alias
3196 'python-shell-completion-module-string-code
3197 'python-shell-completion-string-code
3198 "24.4"
3199 "Completion string code must also autocomplete modules.")
3200
3201 (define-obsolete-variable-alias
3202 'python-shell-completion-pdb-string-code
3203 'python-shell-completion-string-code
3204 "25.1"
3205 "Completion string code must work for (i)pdb.")
3206
3207 (defcustom python-shell-completion-native-disabled-interpreters
3208 ;; PyPy's readline cannot handle some escape sequences yet.
3209 (list "pypy")
3210 "List of disabled interpreters.
3211 When a match is found, native completion is disabled."
3212 :type '(repeat string))
3213
3214 (defcustom python-shell-completion-native-enable t
3215 "Enable readline based native completion."
3216 :type 'boolean)
3217
3218 (defcustom python-shell-completion-native-output-timeout 5.0
3219 "Time in seconds to wait for completion output before giving up."
3220 :type 'float)
3221
3222 (defcustom python-shell-completion-native-try-output-timeout 1.0
3223 "Time in seconds to wait for *trying* native completion output."
3224 :type 'float)
3225
3226 (defvar python-shell-completion-native-redirect-buffer
3227 " *Python completions redirect*"
3228 "Buffer to be used to redirect output of readline commands.")
3229
3230 (defun python-shell-completion-native-interpreter-disabled-p ()
3231 "Return non-nil if interpreter has native completion disabled."
3232 (when python-shell-completion-native-disabled-interpreters
3233 (string-match
3234 (regexp-opt python-shell-completion-native-disabled-interpreters)
3235 (file-name-nondirectory python-shell-interpreter))))
3236
3237 (defun python-shell-completion-native-try ()
3238 "Return non-nil if can trigger native completion."
3239 (let ((python-shell-completion-native-enable t)
3240 (python-shell-completion-native-output-timeout
3241 python-shell-completion-native-try-output-timeout))
3242 (python-shell-completion-native-get-completions
3243 (get-buffer-process (current-buffer))
3244 nil "int")))
3245
3246 (defun python-shell-completion-native-setup ()
3247 "Try to setup native completion, return non-nil on success."
3248 (let ((process (python-shell-get-process)))
3249 (python-shell-send-string "
3250 def __PYTHON_EL_native_completion_setup():
3251 try:
3252 import readline
3253
3254 try:
3255 import __builtin__
3256 except ImportError:
3257 # Python 3
3258 import builtins as __builtin__
3259
3260 builtins = dir(__builtin__)
3261 is_ipython = ('__IPYTHON__' in builtins or
3262 '__IPYTHON__active' in builtins)
3263
3264 class __PYTHON_EL_Completer:
3265 '''Completer wrapper that prints candidates to stdout.
3266
3267 It wraps an existing completer function and changes its behavior so
3268 that the user input is unchanged and real candidates are printed to
3269 stdout.
3270
3271 Returned candidates are '0__dummy_completion__' and
3272 '1__dummy_completion__' in that order ('0__dummy_completion__' is
3273 returned repeatedly until all possible candidates are consumed).
3274
3275 The real candidates are printed to stdout so that they can be
3276 easily retrieved through comint output redirect trickery.
3277 '''
3278
3279 PYTHON_EL_WRAPPED = True
3280
3281 def __init__(self, completer):
3282 self.completer = completer
3283 self.last_completion = None
3284
3285 def __call__(self, text, state):
3286 if state == 0:
3287 # Set the first dummy completion.
3288 self.last_completion = None
3289 completion = '0__dummy_completion__'
3290 else:
3291 completion = self.completer(text, state - 1)
3292
3293 if not completion:
3294 if self.last_completion != '1__dummy_completion__':
3295 # When no more completions are available, returning a
3296 # dummy with non-sharing prefix allow to ensure output
3297 # while preventing changes to current input.
3298 # Coincidentally it's also the end of output.
3299 completion = '1__dummy_completion__'
3300 elif completion.endswith('('):
3301 # Remove parens on callables as it breaks completion on
3302 # arguments (e.g. str(Ari<tab>)).
3303 completion = completion[:-1]
3304 self.last_completion = completion
3305
3306 if completion in (
3307 '0__dummy_completion__', '1__dummy_completion__'):
3308 return completion
3309 elif completion:
3310 # For every non-dummy completion, return a repeated dummy
3311 # one and print the real candidate so it can be retrieved
3312 # by comint output filters.
3313 print (completion)
3314 return '0__dummy_completion__'
3315 else:
3316 return completion
3317
3318 completer = readline.get_completer()
3319
3320 if not completer:
3321 # Used as last resort to avoid breaking customizations.
3322 import rlcompleter
3323 completer = readline.get_completer()
3324
3325 if completer and not getattr(completer, 'PYTHON_EL_WRAPPED', False):
3326 # Wrap the existing completer function only once.
3327 new_completer = __PYTHON_EL_Completer(completer)
3328 if not is_ipython:
3329 readline.set_completer(new_completer)
3330 else:
3331 # Try both initializations to cope with all IPython versions.
3332 # This works fine for IPython 3.x but not for earlier:
3333 readline.set_completer(new_completer)
3334 # IPython<3 hacks readline such that `readline.set_completer`
3335 # won't work. This workaround injects the new completer
3336 # function into the existing instance directly:
3337 instance = getattr(completer, 'im_self', completer.__self__)
3338 instance.rlcomplete = new_completer
3339
3340 if readline.__doc__ and 'libedit' in readline.__doc__:
3341 readline.parse_and_bind('bind ^I rl_complete')
3342 else:
3343 readline.parse_and_bind('tab: complete')
3344 # Require just one tab to send output.
3345 readline.parse_and_bind('set show-all-if-ambiguous on')
3346
3347 print ('python.el: readline is available')
3348 except:
3349 print ('python.el: readline not available')
3350
3351 __PYTHON_EL_native_completion_setup()"
3352 process)
3353 (python-shell-accept-process-output process)
3354 (when (save-excursion
3355 (re-search-backward
3356 (regexp-quote "python.el: readline is available") nil t 1))
3357 (python-shell-completion-native-try))))
3358
3359 (defun python-shell-completion-native-turn-off (&optional msg)
3360 "Turn off shell native completions.
3361 With argument MSG show deactivation message."
3362 (interactive "p")
3363 (python-shell-with-shell-buffer
3364 (set (make-local-variable 'python-shell-completion-native-enable) nil)
3365 (when msg
3366 (message "Shell native completion is disabled, using fallback"))))
3367
3368 (defun python-shell-completion-native-turn-on (&optional msg)
3369 "Turn on shell native completions.
3370 With argument MSG show deactivation message."
3371 (interactive "p")
3372 (python-shell-with-shell-buffer
3373 (set (make-local-variable 'python-shell-completion-native-enable) t)
3374 (python-shell-completion-native-turn-on-maybe msg)))
3375
3376 (defun python-shell-completion-native-turn-on-maybe (&optional msg)
3377 "Turn on native completions if enabled and available.
3378 With argument MSG show activation/deactivation message."
3379 (interactive "p")
3380 (python-shell-with-shell-buffer
3381 (when python-shell-completion-native-enable
3382 (cond
3383 ((python-shell-completion-native-interpreter-disabled-p)
3384 (python-shell-completion-native-turn-off msg))
3385 ((python-shell-completion-native-setup)
3386 (when msg
3387 (message "Shell native completion is enabled.")))
3388 (t (lwarn
3389 '(python python-shell-completion-native-turn-on-maybe)
3390 :warning
3391 (concat
3392 "Your `python-shell-interpreter' doesn't seem to "
3393 "support readline, yet `python-shell-completion-native' "
3394 (format "was t and %S is not part of the "
3395 (file-name-nondirectory python-shell-interpreter))
3396 "`python-shell-completion-native-disabled-interpreters' "
3397 "list. Native completions have been disabled locally. "))
3398 (python-shell-completion-native-turn-off msg))))))
3399
3400 (defun python-shell-completion-native-turn-on-maybe-with-msg ()
3401 "Like `python-shell-completion-native-turn-on-maybe' but force messages."
3402 (python-shell-completion-native-turn-on-maybe t))
3403
3404 (add-hook 'inferior-python-mode-hook
3405 #'python-shell-completion-native-turn-on-maybe-with-msg)
3406
3407 (defun python-shell-completion-native-toggle (&optional msg)
3408 "Toggle shell native completion.
3409 With argument MSG show activation/deactivation message."
3410 (interactive "p")
3411 (python-shell-with-shell-buffer
3412 (if python-shell-completion-native-enable
3413 (python-shell-completion-native-turn-off msg)
3414 (python-shell-completion-native-turn-on msg))
3415 python-shell-completion-native-enable))
3416
3417 (defun python-shell-completion-native-get-completions (process import input)
3418 "Get completions using native readline for PROCESS.
3419 When IMPORT is non-nil takes precedence over INPUT for
3420 completion."
3421 (with-current-buffer (process-buffer process)
3422 (when (and python-shell-completion-native-enable
3423 (python-util-comint-last-prompt)
3424 (>= (point) (cdr (python-util-comint-last-prompt))))
3425 (let* ((input (or import input))
3426 (original-filter-fn (process-filter process))
3427 (redirect-buffer (get-buffer-create
3428 python-shell-completion-native-redirect-buffer))
3429 (trigger "\t")
3430 (new-input (concat input trigger))
3431 (input-length
3432 (save-excursion
3433 (+ (- (point-max) (comint-bol)) (length new-input))))
3434 (delete-line-command (make-string input-length ?\b))
3435 (input-to-send (concat new-input delete-line-command)))
3436 ;; Ensure restoring the process filter, even if the user quits
3437 ;; or there's some other error.
3438 (unwind-protect
3439 (with-current-buffer redirect-buffer
3440 ;; Cleanup the redirect buffer
3441 (erase-buffer)
3442 ;; Mimic `comint-redirect-send-command', unfortunately it
3443 ;; can't be used here because it expects a newline in the
3444 ;; command and that's exactly what we are trying to avoid.
3445 (let ((comint-redirect-echo-input nil)
3446 (comint-redirect-completed nil)
3447 (comint-redirect-perform-sanity-check nil)
3448 (comint-redirect-insert-matching-regexp t)
3449 (comint-redirect-finished-regexp
3450 "1__dummy_completion__[[:space:]]*\n")
3451 (comint-redirect-output-buffer redirect-buffer))
3452 ;; Compatibility with Emacs 24.x. Comint changed and
3453 ;; now `comint-redirect-filter' gets 3 args. This
3454 ;; checks which version of `comint-redirect-filter' is
3455 ;; in use based on its args and uses `apply-partially'
3456 ;; to make it up for the 3 args case.
3457 (if (= (length
3458 (help-function-arglist 'comint-redirect-filter)) 3)
3459 (set-process-filter
3460 process (apply-partially
3461 #'comint-redirect-filter original-filter-fn))
3462 (set-process-filter process #'comint-redirect-filter))
3463 (process-send-string process input-to-send)
3464 ;; Grab output until our dummy completion used as
3465 ;; output end marker is found.
3466 (when (python-shell-accept-process-output
3467 process python-shell-completion-native-output-timeout
3468 comint-redirect-finished-regexp)
3469 (re-search-backward "0__dummy_completion__" nil t)
3470 (cl-remove-duplicates
3471 (split-string
3472 (buffer-substring-no-properties
3473 (line-beginning-position) (point-min))
3474 "[ \f\t\n\r\v()]+" t)
3475 :test #'string=))))
3476 (set-process-filter process original-filter-fn))))))
3477
3478 (defun python-shell-completion-get-completions (process import input)
3479 "Do completion at point using PROCESS for IMPORT or INPUT.
3480 When IMPORT is non-nil takes precedence over INPUT for
3481 completion."
3482 (with-current-buffer (process-buffer process)
3483 (let* ((prompt
3484 (let ((prompt-boundaries (python-util-comint-last-prompt)))
3485 (buffer-substring-no-properties
3486 (car prompt-boundaries) (cdr prompt-boundaries))))
3487 (completion-code
3488 ;; Check whether a prompt matches a pdb string, an import
3489 ;; statement or just the standard prompt and use the
3490 ;; correct python-shell-completion-*-code string
3491 (when (string-match python-shell--prompt-calculated-input-regexp prompt)
3492 ;; Since there are no guarantees the user will remain
3493 ;; in the same context where completion code was sent
3494 ;; (e.g. user steps into a function), safeguard
3495 ;; resending completion setup continuously.
3496 (concat python-shell-completion-setup-code
3497 "\nprint (" python-shell-completion-string-code ")")))
3498 (subject (or import input)))
3499 (when (and completion-code (> (length input) 0))
3500 (let ((completions
3501 (python-util-strip-string
3502 (python-shell-send-string-no-output
3503 (format completion-code subject) process))))
3504 (when (> (length completions) 2)
3505 (split-string completions
3506 "^'\\|^\"\\|;\\|'$\\|\"$" t)))))))
3507
3508 (defun python-shell-completion-at-point (&optional process)
3509 "Function for `completion-at-point-functions' in `inferior-python-mode'.
3510 Optional argument PROCESS forces completions to be retrieved
3511 using that one instead of current buffer's process."
3512 (setq process (or process (get-buffer-process (current-buffer))))
3513 (let* ((line-start (if (derived-mode-p 'inferior-python-mode)
3514 ;; Working on a shell buffer: use prompt end.
3515 (cdr (python-util-comint-last-prompt))
3516 (line-beginning-position)))
3517 (import-statement
3518 (when (string-match-p
3519 (rx (* space) word-start (or "from" "import") word-end space)
3520 (buffer-substring-no-properties line-start (point)))
3521 (buffer-substring-no-properties line-start (point))))
3522 (start
3523 (save-excursion
3524 (if (not (re-search-backward
3525 (python-rx
3526 (or whitespace open-paren close-paren string-delimiter))
3527 line-start
3528 t 1))
3529 line-start
3530 (forward-char (length (match-string-no-properties 0)))
3531 (point))))
3532 (end (point))
3533 (completion-fn
3534 (if python-shell-completion-native-enable
3535 #'python-shell-completion-native-get-completions
3536 #'python-shell-completion-get-completions)))
3537 (list start end
3538 (completion-table-dynamic
3539 (apply-partially
3540 completion-fn
3541 process import-statement)))))
3542
3543 (define-obsolete-function-alias
3544 'python-shell-completion-complete-at-point
3545 'python-shell-completion-at-point
3546 "25.1")
3547
3548 (defun python-shell-completion-complete-or-indent ()
3549 "Complete or indent depending on the context.
3550 If content before pointer is all whitespace, indent.
3551 If not try to complete."
3552 (interactive)
3553 (if (string-match "^[[:space:]]*$"
3554 (buffer-substring (comint-line-beginning-position)
3555 (point)))
3556 (indent-for-tab-command)
3557 (completion-at-point)))
3558
3559 \f
3560 ;;; PDB Track integration
3561
3562 (defcustom python-pdbtrack-activate t
3563 "Non-nil makes Python shell enable pdbtracking."
3564 :type 'boolean
3565 :group 'python
3566 :safe 'booleanp)
3567
3568 (defcustom python-pdbtrack-stacktrace-info-regexp
3569 "> \\([^\"(<]+\\)(\\([0-9]+\\))\\([?a-zA-Z0-9_<>]+\\)()"
3570 "Regular expression matching stacktrace information.
3571 Used to extract the current line and module being inspected."
3572 :type 'string
3573 :group 'python
3574 :safe 'stringp)
3575
3576 (defvar python-pdbtrack-tracked-buffer nil
3577 "Variable containing the value of the current tracked buffer.
3578 Never set this variable directly, use
3579 `python-pdbtrack-set-tracked-buffer' instead.")
3580
3581 (defvar python-pdbtrack-buffers-to-kill nil
3582 "List of buffers to be deleted after tracking finishes.")
3583
3584 (defun python-pdbtrack-set-tracked-buffer (file-name)
3585 "Set the buffer for FILE-NAME as the tracked buffer.
3586 Internally it uses the `python-pdbtrack-tracked-buffer' variable.
3587 Returns the tracked buffer."
3588 (let ((file-buffer (get-file-buffer
3589 (concat (file-remote-p default-directory)
3590 file-name))))
3591 (if file-buffer
3592 (setq python-pdbtrack-tracked-buffer file-buffer)
3593 (setq file-buffer (find-file-noselect file-name))
3594 (when (not (member file-buffer python-pdbtrack-buffers-to-kill))
3595 (add-to-list 'python-pdbtrack-buffers-to-kill file-buffer)))
3596 file-buffer))
3597
3598 (defun python-pdbtrack-comint-output-filter-function (output)
3599 "Move overlay arrow to current pdb line in tracked buffer.
3600 Argument OUTPUT is a string with the output from the comint process."
3601 (when (and python-pdbtrack-activate (not (string= output "")))
3602 (let* ((full-output (ansi-color-filter-apply
3603 (buffer-substring comint-last-input-end (point-max))))
3604 (line-number)
3605 (file-name
3606 (with-temp-buffer
3607 (insert full-output)
3608 ;; When the debugger encounters a pdb.set_trace()
3609 ;; command, it prints a single stack frame. Sometimes
3610 ;; it prints a bit of extra information about the
3611 ;; arguments of the present function. When ipdb
3612 ;; encounters an exception, it prints the _entire_ stack
3613 ;; trace. To handle all of these cases, we want to find
3614 ;; the _last_ stack frame printed in the most recent
3615 ;; batch of output, then jump to the corresponding
3616 ;; file/line number.
3617 (goto-char (point-max))
3618 (when (re-search-backward python-pdbtrack-stacktrace-info-regexp nil t)
3619 (setq line-number (string-to-number
3620 (match-string-no-properties 2)))
3621 (match-string-no-properties 1)))))
3622 (if (and file-name line-number)
3623 (let* ((tracked-buffer
3624 (python-pdbtrack-set-tracked-buffer file-name))
3625 (shell-buffer (current-buffer))
3626 (tracked-buffer-window (get-buffer-window tracked-buffer))
3627 (tracked-buffer-line-pos))
3628 (with-current-buffer tracked-buffer
3629 (set (make-local-variable 'overlay-arrow-string) "=>")
3630 (set (make-local-variable 'overlay-arrow-position) (make-marker))
3631 (setq tracked-buffer-line-pos (progn
3632 (goto-char (point-min))
3633 (forward-line (1- line-number))
3634 (point-marker)))
3635 (when tracked-buffer-window
3636 (set-window-point
3637 tracked-buffer-window tracked-buffer-line-pos))
3638 (set-marker overlay-arrow-position tracked-buffer-line-pos))
3639 (pop-to-buffer tracked-buffer)
3640 (switch-to-buffer-other-window shell-buffer))
3641 (when python-pdbtrack-tracked-buffer
3642 (with-current-buffer python-pdbtrack-tracked-buffer
3643 (set-marker overlay-arrow-position nil))
3644 (mapc #'(lambda (buffer)
3645 (ignore-errors (kill-buffer buffer)))
3646 python-pdbtrack-buffers-to-kill)
3647 (setq python-pdbtrack-tracked-buffer nil
3648 python-pdbtrack-buffers-to-kill nil)))))
3649 output)
3650
3651 \f
3652 ;;; Symbol completion
3653
3654 (defun python-completion-at-point ()
3655 "Function for `completion-at-point-functions' in `python-mode'.
3656 For this to work as best as possible you should call
3657 `python-shell-send-buffer' from time to time so context in
3658 inferior Python process is updated properly."
3659 (let ((process (python-shell-get-process)))
3660 (when process
3661 (python-shell-completion-at-point process))))
3662
3663 (define-obsolete-function-alias
3664 'python-completion-complete-at-point
3665 'python-completion-at-point
3666 "25.1")
3667
3668 \f
3669 ;;; Fill paragraph
3670
3671 (defcustom python-fill-comment-function 'python-fill-comment
3672 "Function to fill comments.
3673 This is the function used by `python-fill-paragraph' to
3674 fill comments."
3675 :type 'symbol
3676 :group 'python)
3677
3678 (defcustom python-fill-string-function 'python-fill-string
3679 "Function to fill strings.
3680 This is the function used by `python-fill-paragraph' to
3681 fill strings."
3682 :type 'symbol
3683 :group 'python)
3684
3685 (defcustom python-fill-decorator-function 'python-fill-decorator
3686 "Function to fill decorators.
3687 This is the function used by `python-fill-paragraph' to
3688 fill decorators."
3689 :type 'symbol
3690 :group 'python)
3691
3692 (defcustom python-fill-paren-function 'python-fill-paren
3693 "Function to fill parens.
3694 This is the function used by `python-fill-paragraph' to
3695 fill parens."
3696 :type 'symbol
3697 :group 'python)
3698
3699 (defcustom python-fill-docstring-style 'pep-257
3700 "Style used to fill docstrings.
3701 This affects `python-fill-string' behavior with regards to
3702 triple quotes positioning.
3703
3704 Possible values are `django', `onetwo', `pep-257', `pep-257-nn',
3705 `symmetric', and nil. A value of nil won't care about quotes
3706 position and will treat docstrings a normal string, any other
3707 value may result in one of the following docstring styles:
3708
3709 `django':
3710
3711 \"\"\"
3712 Process foo, return bar.
3713 \"\"\"
3714
3715 \"\"\"
3716 Process foo, return bar.
3717
3718 If processing fails throw ProcessingError.
3719 \"\"\"
3720
3721 `onetwo':
3722
3723 \"\"\"Process foo, return bar.\"\"\"
3724
3725 \"\"\"
3726 Process foo, return bar.
3727
3728 If processing fails throw ProcessingError.
3729
3730 \"\"\"
3731
3732 `pep-257':
3733
3734 \"\"\"Process foo, return bar.\"\"\"
3735
3736 \"\"\"Process foo, return bar.
3737
3738 If processing fails throw ProcessingError.
3739
3740 \"\"\"
3741
3742 `pep-257-nn':
3743
3744 \"\"\"Process foo, return bar.\"\"\"
3745
3746 \"\"\"Process foo, return bar.
3747
3748 If processing fails throw ProcessingError.
3749 \"\"\"
3750
3751 `symmetric':
3752
3753 \"\"\"Process foo, return bar.\"\"\"
3754
3755 \"\"\"
3756 Process foo, return bar.
3757
3758 If processing fails throw ProcessingError.
3759 \"\"\""
3760 :type '(choice
3761 (const :tag "Don't format docstrings" nil)
3762 (const :tag "Django's coding standards style." django)
3763 (const :tag "One newline and start and Two at end style." onetwo)
3764 (const :tag "PEP-257 with 2 newlines at end of string." pep-257)
3765 (const :tag "PEP-257 with 1 newline at end of string." pep-257-nn)
3766 (const :tag "Symmetric style." symmetric))
3767 :group 'python
3768 :safe (lambda (val)
3769 (memq val '(django onetwo pep-257 pep-257-nn symmetric nil))))
3770
3771 (defun python-fill-paragraph (&optional justify)
3772 "`fill-paragraph-function' handling multi-line strings and possibly comments.
3773 If any of the current line is in or at the end of a multi-line string,
3774 fill the string or the paragraph of it that point is in, preserving
3775 the string's indentation.
3776 Optional argument JUSTIFY defines if the paragraph should be justified."
3777 (interactive "P")
3778 (save-excursion
3779 (cond
3780 ;; Comments
3781 ((python-syntax-context 'comment)
3782 (funcall python-fill-comment-function justify))
3783 ;; Strings/Docstrings
3784 ((save-excursion (or (python-syntax-context 'string)
3785 (equal (string-to-syntax "|")
3786 (syntax-after (point)))))
3787 (funcall python-fill-string-function justify))
3788 ;; Decorators
3789 ((equal (char-after (save-excursion
3790 (python-nav-beginning-of-statement))) ?@)
3791 (funcall python-fill-decorator-function justify))
3792 ;; Parens
3793 ((or (python-syntax-context 'paren)
3794 (looking-at (python-rx open-paren))
3795 (save-excursion
3796 (skip-syntax-forward "^(" (line-end-position))
3797 (looking-at (python-rx open-paren))))
3798 (funcall python-fill-paren-function justify))
3799 (t t))))
3800
3801 (defun python-fill-comment (&optional justify)
3802 "Comment fill function for `python-fill-paragraph'.
3803 JUSTIFY should be used (if applicable) as in `fill-paragraph'."
3804 (fill-comment-paragraph justify))
3805
3806 (defun python-fill-string (&optional justify)
3807 "String fill function for `python-fill-paragraph'.
3808 JUSTIFY should be used (if applicable) as in `fill-paragraph'."
3809 (let* ((str-start-pos
3810 (set-marker
3811 (make-marker)
3812 (or (python-syntax-context 'string)
3813 (and (equal (string-to-syntax "|")
3814 (syntax-after (point)))
3815 (point)))))
3816 (num-quotes (python-syntax-count-quotes
3817 (char-after str-start-pos) str-start-pos))
3818 (str-end-pos
3819 (save-excursion
3820 (goto-char (+ str-start-pos num-quotes))
3821 (or (re-search-forward (rx (syntax string-delimiter)) nil t)
3822 (goto-char (point-max)))
3823 (point-marker)))
3824 (multi-line-p
3825 ;; Docstring styles may vary for oneliners and multi-liners.
3826 (> (count-matches "\n" str-start-pos str-end-pos) 0))
3827 (delimiters-style
3828 (pcase python-fill-docstring-style
3829 ;; delimiters-style is a cons cell with the form
3830 ;; (START-NEWLINES . END-NEWLINES). When any of the sexps
3831 ;; is NIL means to not add any newlines for start or end
3832 ;; of docstring. See `python-fill-docstring-style' for a
3833 ;; graphic idea of each style.
3834 (`django (cons 1 1))
3835 (`onetwo (and multi-line-p (cons 1 2)))
3836 (`pep-257 (and multi-line-p (cons nil 2)))
3837 (`pep-257-nn (and multi-line-p (cons nil 1)))
3838 (`symmetric (and multi-line-p (cons 1 1)))))
3839 (fill-paragraph-function))
3840 (save-restriction
3841 (narrow-to-region str-start-pos str-end-pos)
3842 (fill-paragraph justify))
3843 (save-excursion
3844 (when (and (python-info-docstring-p) python-fill-docstring-style)
3845 ;; Add the number of newlines indicated by the selected style
3846 ;; at the start of the docstring.
3847 (goto-char (+ str-start-pos num-quotes))
3848 (delete-region (point) (progn
3849 (skip-syntax-forward "> ")
3850 (point)))
3851 (and (car delimiters-style)
3852 (or (newline (car delimiters-style)) t)
3853 ;; Indent only if a newline is added.
3854 (indent-according-to-mode))
3855 ;; Add the number of newlines indicated by the selected style
3856 ;; at the end of the docstring.
3857 (goto-char (if (not (= str-end-pos (point-max)))
3858 (- str-end-pos num-quotes)
3859 str-end-pos))
3860 (delete-region (point) (progn
3861 (skip-syntax-backward "> ")
3862 (point)))
3863 (and (cdr delimiters-style)
3864 ;; Add newlines only if string ends.
3865 (not (= str-end-pos (point-max)))
3866 (or (newline (cdr delimiters-style)) t)
3867 ;; Again indent only if a newline is added.
3868 (indent-according-to-mode))))) t)
3869
3870 (defun python-fill-decorator (&optional _justify)
3871 "Decorator fill function for `python-fill-paragraph'.
3872 JUSTIFY should be used (if applicable) as in `fill-paragraph'."
3873 t)
3874
3875 (defun python-fill-paren (&optional justify)
3876 "Paren fill function for `python-fill-paragraph'.
3877 JUSTIFY should be used (if applicable) as in `fill-paragraph'."
3878 (save-restriction
3879 (narrow-to-region (progn
3880 (while (python-syntax-context 'paren)
3881 (goto-char (1- (point))))
3882 (line-beginning-position))
3883 (progn
3884 (when (not (python-syntax-context 'paren))
3885 (end-of-line)
3886 (when (not (python-syntax-context 'paren))
3887 (skip-syntax-backward "^)")))
3888 (while (and (python-syntax-context 'paren)
3889 (not (eobp)))
3890 (goto-char (1+ (point))))
3891 (point)))
3892 (let ((paragraph-start "\f\\|[ \t]*$")
3893 (paragraph-separate ",")
3894 (fill-paragraph-function))
3895 (goto-char (point-min))
3896 (fill-paragraph justify))
3897 (while (not (eobp))
3898 (forward-line 1)
3899 (python-indent-line)
3900 (goto-char (line-end-position))))
3901 t)
3902
3903 \f
3904 ;;; Skeletons
3905
3906 (defcustom python-skeleton-autoinsert nil
3907 "Non-nil means template skeletons will be automagically inserted.
3908 This happens when pressing \"if<SPACE>\", for example, to prompt for
3909 the if condition."
3910 :type 'boolean
3911 :group 'python
3912 :safe 'booleanp)
3913
3914 (define-obsolete-variable-alias
3915 'python-use-skeletons 'python-skeleton-autoinsert "24.3")
3916
3917 (defvar python-skeleton-available '()
3918 "Internal list of available skeletons.")
3919
3920 (define-abbrev-table 'python-mode-skeleton-abbrev-table ()
3921 "Abbrev table for Python mode skeletons."
3922 :case-fixed t
3923 ;; Allow / inside abbrevs.
3924 :regexp "\\(?:^\\|[^/]\\)\\<\\([[:word:]/]+\\)\\W*"
3925 ;; Only expand in code.
3926 :enable-function (lambda ()
3927 (and
3928 (not (python-syntax-comment-or-string-p))
3929 python-skeleton-autoinsert)))
3930
3931 (defmacro python-skeleton-define (name doc &rest skel)
3932 "Define a `python-mode' skeleton using NAME DOC and SKEL.
3933 The skeleton will be bound to python-skeleton-NAME and will
3934 be added to `python-mode-skeleton-abbrev-table'."
3935 (declare (indent 2))
3936 (let* ((name (symbol-name name))
3937 (function-name (intern (concat "python-skeleton-" name))))
3938 `(progn
3939 (define-abbrev python-mode-skeleton-abbrev-table
3940 ,name "" ',function-name :system t)
3941 (setq python-skeleton-available
3942 (cons ',function-name python-skeleton-available))
3943 (define-skeleton ,function-name
3944 ,(or doc
3945 (format "Insert %s statement." name))
3946 ,@skel))))
3947
3948 (define-abbrev-table 'python-mode-abbrev-table ()
3949 "Abbrev table for Python mode."
3950 :parents (list python-mode-skeleton-abbrev-table))
3951
3952 (defmacro python-define-auxiliary-skeleton (name doc &optional &rest skel)
3953 "Define a `python-mode' auxiliary skeleton using NAME DOC and SKEL.
3954 The skeleton will be bound to python-skeleton-NAME."
3955 (declare (indent 2))
3956 (let* ((name (symbol-name name))
3957 (function-name (intern (concat "python-skeleton--" name)))
3958 (msg (format
3959 "Add '%s' clause? " name)))
3960 (when (not skel)
3961 (setq skel
3962 `(< ,(format "%s:" name) \n \n
3963 > _ \n)))
3964 `(define-skeleton ,function-name
3965 ,(or doc
3966 (format "Auxiliary skeleton for %s statement." name))
3967 nil
3968 (unless (y-or-n-p ,msg)
3969 (signal 'quit t))
3970 ,@skel)))
3971
3972 (python-define-auxiliary-skeleton else nil)
3973
3974 (python-define-auxiliary-skeleton except nil)
3975
3976 (python-define-auxiliary-skeleton finally nil)
3977
3978 (python-skeleton-define if nil
3979 "Condition: "
3980 "if " str ":" \n
3981 _ \n
3982 ("other condition, %s: "
3983 <
3984 "elif " str ":" \n
3985 > _ \n nil)
3986 '(python-skeleton--else) | ^)
3987
3988 (python-skeleton-define while nil
3989 "Condition: "
3990 "while " str ":" \n
3991 > _ \n
3992 '(python-skeleton--else) | ^)
3993
3994 (python-skeleton-define for nil
3995 "Iteration spec: "
3996 "for " str ":" \n
3997 > _ \n
3998 '(python-skeleton--else) | ^)
3999
4000 (python-skeleton-define import nil
4001 "Import from module: "
4002 "from " str & " " | -5
4003 "import "
4004 ("Identifier: " str ", ") -2 \n _)
4005
4006 (python-skeleton-define try nil
4007 nil
4008 "try:" \n
4009 > _ \n
4010 ("Exception, %s: "
4011 <
4012 "except " str ":" \n
4013 > _ \n nil)
4014 resume:
4015 '(python-skeleton--except)
4016 '(python-skeleton--else)
4017 '(python-skeleton--finally) | ^)
4018
4019 (python-skeleton-define def nil
4020 "Function name: "
4021 "def " str "(" ("Parameter, %s: "
4022 (unless (equal ?\( (char-before)) ", ")
4023 str) "):" \n
4024 "\"\"\"" - "\"\"\"" \n
4025 > _ \n)
4026
4027 (python-skeleton-define class nil
4028 "Class name: "
4029 "class " str "(" ("Inheritance, %s: "
4030 (unless (equal ?\( (char-before)) ", ")
4031 str)
4032 & ")" | -1
4033 ":" \n
4034 "\"\"\"" - "\"\"\"" \n
4035 > _ \n)
4036
4037 (defun python-skeleton-add-menu-items ()
4038 "Add menu items to Python->Skeletons menu."
4039 (let ((skeletons (sort python-skeleton-available 'string<)))
4040 (dolist (skeleton skeletons)
4041 (easy-menu-add-item
4042 nil '("Python" "Skeletons")
4043 `[,(format
4044 "Insert %s" (nth 2 (split-string (symbol-name skeleton) "-")))
4045 ,skeleton t]))))
4046 \f
4047 ;;; FFAP
4048
4049 (defcustom python-ffap-setup-code
4050 "
4051 def __FFAP_get_module_path(objstr):
4052 try:
4053 import inspect
4054 import os.path
4055 # NameError exceptions are delayed until this point.
4056 obj = eval(objstr)
4057 module = inspect.getmodule(obj)
4058 filename = module.__file__
4059 ext = os.path.splitext(filename)[1]
4060 if ext in ('.pyc', '.pyo'):
4061 # Point to the source file.
4062 filename = filename[:-1]
4063 if os.path.exists(filename):
4064 return filename
4065 return ''
4066 except:
4067 return ''"
4068 "Python code to get a module path."
4069 :type 'string
4070 :group 'python)
4071
4072 (defcustom python-ffap-string-code
4073 "__FFAP_get_module_path('''%s''')"
4074 "Python code used to get a string with the path of a module."
4075 :type 'string
4076 :group 'python)
4077
4078 (defun python-ffap-module-path (module)
4079 "Function for `ffap-alist' to return path for MODULE."
4080 (let ((process (or
4081 (and (derived-mode-p 'inferior-python-mode)
4082 (get-buffer-process (current-buffer)))
4083 (python-shell-get-process))))
4084 (if (not process)
4085 nil
4086 (let ((module-file
4087 (python-shell-send-string-no-output
4088 (concat
4089 python-ffap-setup-code
4090 "\nprint (" (format python-ffap-string-code module) ")")
4091 process)))
4092 (unless (zerop (length module-file))
4093 (python-util-strip-string module-file))))))
4094
4095 (defvar ffap-alist)
4096
4097 (eval-after-load "ffap"
4098 '(progn
4099 (push '(python-mode . python-ffap-module-path) ffap-alist)
4100 (push '(inferior-python-mode . python-ffap-module-path) ffap-alist)))
4101
4102 \f
4103 ;;; Code check
4104
4105 (defcustom python-check-command
4106 (or (executable-find "pyflakes")
4107 (executable-find "epylint")
4108 "install pyflakes, pylint or something else")
4109 "Command used to check a Python file."
4110 :type 'string
4111 :group 'python)
4112
4113 (defcustom python-check-buffer-name
4114 "*Python check: %s*"
4115 "Buffer name used for check commands."
4116 :type 'string
4117 :group 'python)
4118
4119 (defvar python-check-custom-command nil
4120 "Internal use.")
4121 ;; XXX: Avoid `defvar-local' for compat with Emacs<24.3
4122 (make-variable-buffer-local 'python-check-custom-command)
4123
4124 (defun python-check (command)
4125 "Check a Python file (default current buffer's file).
4126 Runs COMMAND, a shell command, as if by `compile'.
4127 See `python-check-command' for the default."
4128 (interactive
4129 (list (read-string "Check command: "
4130 (or python-check-custom-command
4131 (concat python-check-command " "
4132 (shell-quote-argument
4133 (or
4134 (let ((name (buffer-file-name)))
4135 (and name
4136 (file-name-nondirectory name)))
4137 "")))))))
4138 (setq python-check-custom-command command)
4139 (save-some-buffers (not compilation-ask-about-save) nil)
4140 (python-shell-with-environment
4141 (compilation-start command nil
4142 (lambda (_modename)
4143 (format python-check-buffer-name command)))))
4144
4145 \f
4146 ;;; Eldoc
4147
4148 (defcustom python-eldoc-setup-code
4149 "def __PYDOC_get_help(obj):
4150 try:
4151 import inspect
4152 try:
4153 str_type = basestring
4154 except NameError:
4155 str_type = str
4156 if isinstance(obj, str_type):
4157 obj = eval(obj, globals())
4158 doc = inspect.getdoc(obj)
4159 if not doc and callable(obj):
4160 target = None
4161 if inspect.isclass(obj) and hasattr(obj, '__init__'):
4162 target = obj.__init__
4163 objtype = 'class'
4164 else:
4165 target = obj
4166 objtype = 'def'
4167 if target:
4168 args = inspect.formatargspec(
4169 *inspect.getargspec(target)
4170 )
4171 name = obj.__name__
4172 doc = '{objtype} {name}{args}'.format(
4173 objtype=objtype, name=name, args=args
4174 )
4175 else:
4176 doc = doc.splitlines()[0]
4177 except:
4178 doc = ''
4179 return doc"
4180 "Python code to setup documentation retrieval."
4181 :type 'string
4182 :group 'python)
4183
4184 (defcustom python-eldoc-string-code
4185 "__PYDOC_get_help('''%s''')"
4186 "Python code used to get a string with the documentation of an object."
4187 :type 'string
4188 :group 'python)
4189
4190 (defun python-eldoc--get-symbol-at-point ()
4191 "Get the current symbol for eldoc.
4192 Returns the current symbol handling point within arguments."
4193 (save-excursion
4194 (let ((start (python-syntax-context 'paren)))
4195 (when start
4196 (goto-char start))
4197 (when (or start
4198 (eobp)
4199 (memq (char-syntax (char-after)) '(?\ ?-)))
4200 ;; Try to adjust to closest symbol if not in one.
4201 (python-util-forward-comment -1)))
4202 (python-info-current-symbol t)))
4203
4204 (defun python-eldoc--get-doc-at-point (&optional force-input force-process)
4205 "Internal implementation to get documentation at point.
4206 If not FORCE-INPUT is passed then what `python-eldoc--get-symbol-at-point'
4207 returns will be used. If not FORCE-PROCESS is passed what
4208 `python-shell-get-process' returns is used."
4209 (let ((process (or force-process (python-shell-get-process))))
4210 (when process
4211 (let* ((input (or force-input
4212 (python-eldoc--get-symbol-at-point)))
4213 (docstring
4214 (when input
4215 ;; Prevent resizing the echo area when iPython is
4216 ;; enabled. Bug#18794.
4217 (python-util-strip-string
4218 (python-shell-send-string-no-output
4219 (concat
4220 python-eldoc-setup-code
4221 "\nprint(" (format python-eldoc-string-code input) ")")
4222 process)))))
4223 (unless (zerop (length docstring))
4224 docstring)))))
4225
4226 (defun python-eldoc-function ()
4227 "`eldoc-documentation-function' for Python.
4228 For this to work as best as possible you should call
4229 `python-shell-send-buffer' from time to time so context in
4230 inferior Python process is updated properly."
4231 (python-eldoc--get-doc-at-point))
4232
4233 (defun python-eldoc-at-point (symbol)
4234 "Get help on SYMBOL using `help'.
4235 Interactively, prompt for symbol."
4236 (interactive
4237 (let ((symbol (python-eldoc--get-symbol-at-point))
4238 (enable-recursive-minibuffers t))
4239 (list (read-string (if symbol
4240 (format "Describe symbol (default %s): " symbol)
4241 "Describe symbol: ")
4242 nil nil symbol))))
4243 (message (python-eldoc--get-doc-at-point symbol)))
4244
4245 \f
4246 ;;; Hideshow
4247
4248 (defun python-hideshow-forward-sexp-function (arg)
4249 "Python specific `forward-sexp' function for `hs-minor-mode'.
4250 Argument ARG is ignored."
4251 arg ; Shut up, byte compiler.
4252 (python-nav-end-of-defun)
4253 (unless (python-info-current-line-empty-p)
4254 (backward-char)))
4255
4256 \f
4257 ;;; Imenu
4258
4259 (defvar python-imenu-format-item-label-function
4260 'python-imenu-format-item-label
4261 "Imenu function used to format an item label.
4262 It must be a function with two arguments: TYPE and NAME.")
4263
4264 (defvar python-imenu-format-parent-item-label-function
4265 'python-imenu-format-parent-item-label
4266 "Imenu function used to format a parent item label.
4267 It must be a function with two arguments: TYPE and NAME.")
4268
4269 (defvar python-imenu-format-parent-item-jump-label-function
4270 'python-imenu-format-parent-item-jump-label
4271 "Imenu function used to format a parent jump item label.
4272 It must be a function with two arguments: TYPE and NAME.")
4273
4274 (defun python-imenu-format-item-label (type name)
4275 "Return Imenu label for single node using TYPE and NAME."
4276 (format "%s (%s)" name type))
4277
4278 (defun python-imenu-format-parent-item-label (type name)
4279 "Return Imenu label for parent node using TYPE and NAME."
4280 (format "%s..." (python-imenu-format-item-label type name)))
4281
4282 (defun python-imenu-format-parent-item-jump-label (type _name)
4283 "Return Imenu label for parent node jump using TYPE and NAME."
4284 (if (string= type "class")
4285 "*class definition*"
4286 "*function definition*"))
4287
4288 (defun python-imenu--put-parent (type name pos tree)
4289 "Add the parent with TYPE, NAME and POS to TREE."
4290 (let ((label
4291 (funcall python-imenu-format-item-label-function type name))
4292 (jump-label
4293 (funcall python-imenu-format-parent-item-jump-label-function type name)))
4294 (if (not tree)
4295 (cons label pos)
4296 (cons label (cons (cons jump-label pos) tree)))))
4297
4298 (defun python-imenu--build-tree (&optional min-indent prev-indent tree)
4299 "Recursively build the tree of nested definitions of a node.
4300 Arguments MIN-INDENT, PREV-INDENT and TREE are internal and should
4301 not be passed explicitly unless you know what you are doing."
4302 (setq min-indent (or min-indent 0)
4303 prev-indent (or prev-indent python-indent-offset))
4304 (let* ((pos (python-nav-backward-defun))
4305 (type)
4306 (name (when (and pos (looking-at python-nav-beginning-of-defun-regexp))
4307 (let ((split (split-string (match-string-no-properties 0))))
4308 (setq type (car split))
4309 (cadr split))))
4310 (label (when name
4311 (funcall python-imenu-format-item-label-function type name)))
4312 (indent (current-indentation))
4313 (children-indent-limit (+ python-indent-offset min-indent)))
4314 (cond ((not pos)
4315 ;; Nothing found, probably near to bobp.
4316 nil)
4317 ((<= indent min-indent)
4318 ;; The current indentation points that this is a parent
4319 ;; node, add it to the tree and stop recursing.
4320 (python-imenu--put-parent type name pos tree))
4321 (t
4322 (python-imenu--build-tree
4323 min-indent
4324 indent
4325 (if (<= indent children-indent-limit)
4326 ;; This lies within the children indent offset range,
4327 ;; so it's a normal child of its parent (i.e., not
4328 ;; a child of a child).
4329 (cons (cons label pos) tree)
4330 ;; Oh no, a child of a child?! Fear not, we
4331 ;; know how to roll. We recursively parse these by
4332 ;; swapping prev-indent and min-indent plus adding this
4333 ;; newly found item to a fresh subtree. This works, I
4334 ;; promise.
4335 (cons
4336 (python-imenu--build-tree
4337 prev-indent indent (list (cons label pos)))
4338 tree)))))))
4339
4340 (defun python-imenu-create-index ()
4341 "Return tree Imenu alist for the current Python buffer.
4342 Change `python-imenu-format-item-label-function',
4343 `python-imenu-format-parent-item-label-function',
4344 `python-imenu-format-parent-item-jump-label-function' to
4345 customize how labels are formatted."
4346 (goto-char (point-max))
4347 (let ((index)
4348 (tree))
4349 (while (setq tree (python-imenu--build-tree))
4350 (setq index (cons tree index)))
4351 index))
4352
4353 (defun python-imenu-create-flat-index (&optional alist prefix)
4354 "Return flat outline of the current Python buffer for Imenu.
4355 Optional argument ALIST is the tree to be flattened; when nil
4356 `python-imenu-build-index' is used with
4357 `python-imenu-format-parent-item-jump-label-function'
4358 `python-imenu-format-parent-item-label-function'
4359 `python-imenu-format-item-label-function' set to
4360 (lambda (type name) name)
4361 Optional argument PREFIX is used in recursive calls and should
4362 not be passed explicitly.
4363
4364 Converts this:
4365
4366 ((\"Foo\" . 103)
4367 (\"Bar\" . 138)
4368 (\"decorator\"
4369 (\"decorator\" . 173)
4370 (\"wrap\"
4371 (\"wrap\" . 353)
4372 (\"wrapped_f\" . 393))))
4373
4374 To this:
4375
4376 ((\"Foo\" . 103)
4377 (\"Bar\" . 138)
4378 (\"decorator\" . 173)
4379 (\"decorator.wrap\" . 353)
4380 (\"decorator.wrapped_f\" . 393))"
4381 ;; Inspired by imenu--flatten-index-alist removed in revno 21853.
4382 (apply
4383 'nconc
4384 (mapcar
4385 (lambda (item)
4386 (let ((name (if prefix
4387 (concat prefix "." (car item))
4388 (car item)))
4389 (pos (cdr item)))
4390 (cond ((or (numberp pos) (markerp pos))
4391 (list (cons name pos)))
4392 ((listp pos)
4393 (cons
4394 (cons name (cdar pos))
4395 (python-imenu-create-flat-index (cddr item) name))))))
4396 (or alist
4397 (let* ((fn (lambda (_type name) name))
4398 (python-imenu-format-item-label-function fn)
4399 (python-imenu-format-parent-item-label-function fn)
4400 (python-imenu-format-parent-item-jump-label-function fn))
4401 (python-imenu-create-index))))))
4402
4403 \f
4404 ;;; Misc helpers
4405
4406 (defun python-info-current-defun (&optional include-type)
4407 "Return name of surrounding function with Python compatible dotty syntax.
4408 Optional argument INCLUDE-TYPE indicates to include the type of the defun.
4409 This function can be used as the value of `add-log-current-defun-function'
4410 since it returns nil if point is not inside a defun."
4411 (save-restriction
4412 (prog-widen)
4413 (save-excursion
4414 (end-of-line 1)
4415 (let ((names)
4416 (starting-indentation (current-indentation))
4417 (starting-pos (point))
4418 (first-run t)
4419 (last-indent)
4420 (type))
4421 (catch 'exit
4422 (while (python-nav-beginning-of-defun 1)
4423 (when (save-match-data
4424 (and
4425 (or (not last-indent)
4426 (< (current-indentation) last-indent))
4427 (or
4428 (and first-run
4429 (save-excursion
4430 ;; If this is the first run, we may add
4431 ;; the current defun at point.
4432 (setq first-run nil)
4433 (goto-char starting-pos)
4434 (python-nav-beginning-of-statement)
4435 (beginning-of-line 1)
4436 (looking-at-p
4437 python-nav-beginning-of-defun-regexp)))
4438 (< starting-pos
4439 (save-excursion
4440 (let ((min-indent
4441 (+ (current-indentation)
4442 python-indent-offset)))
4443 (if (< starting-indentation min-indent)
4444 ;; If the starting indentation is not
4445 ;; within the min defun indent make the
4446 ;; check fail.
4447 starting-pos
4448 ;; Else go to the end of defun and add
4449 ;; up the current indentation to the
4450 ;; ending position.
4451 (python-nav-end-of-defun)
4452 (+ (point)
4453 (if (>= (current-indentation) min-indent)
4454 (1+ (current-indentation))
4455 0)))))))))
4456 (save-match-data (setq last-indent (current-indentation)))
4457 (if (or (not include-type) type)
4458 (setq names (cons (match-string-no-properties 1) names))
4459 (let ((match (split-string (match-string-no-properties 0))))
4460 (setq type (car match))
4461 (setq names (cons (cadr match) names)))))
4462 ;; Stop searching ASAP.
4463 (and (= (current-indentation) 0) (throw 'exit t))))
4464 (and names
4465 (concat (and type (format "%s " type))
4466 (mapconcat 'identity names ".")))))))
4467
4468 (defun python-info-current-symbol (&optional replace-self)
4469 "Return current symbol using dotty syntax.
4470 With optional argument REPLACE-SELF convert \"self\" to current
4471 parent defun name."
4472 (let ((name
4473 (and (not (python-syntax-comment-or-string-p))
4474 (with-syntax-table python-dotty-syntax-table
4475 (let ((sym (symbol-at-point)))
4476 (and sym
4477 (substring-no-properties (symbol-name sym))))))))
4478 (when name
4479 (if (not replace-self)
4480 name
4481 (let ((current-defun (python-info-current-defun)))
4482 (if (not current-defun)
4483 name
4484 (replace-regexp-in-string
4485 (python-rx line-start word-start "self" word-end ?.)
4486 (concat
4487 (mapconcat 'identity
4488 (butlast (split-string current-defun "\\."))
4489 ".") ".")
4490 name)))))))
4491
4492 (defun python-info-statement-starts-block-p ()
4493 "Return non-nil if current statement opens a block."
4494 (save-excursion
4495 (python-nav-beginning-of-statement)
4496 (looking-at (python-rx block-start))))
4497
4498 (defun python-info-statement-ends-block-p ()
4499 "Return non-nil if point is at end of block."
4500 (let ((end-of-block-pos (save-excursion
4501 (python-nav-end-of-block)))
4502 (end-of-statement-pos (save-excursion
4503 (python-nav-end-of-statement))))
4504 (and end-of-block-pos end-of-statement-pos
4505 (= end-of-block-pos end-of-statement-pos))))
4506
4507 (defun python-info-beginning-of-statement-p ()
4508 "Return non-nil if point is at beginning of statement."
4509 (= (point) (save-excursion
4510 (python-nav-beginning-of-statement)
4511 (point))))
4512
4513 (defun python-info-end-of-statement-p ()
4514 "Return non-nil if point is at end of statement."
4515 (= (point) (save-excursion
4516 (python-nav-end-of-statement)
4517 (point))))
4518
4519 (defun python-info-beginning-of-block-p ()
4520 "Return non-nil if point is at beginning of block."
4521 (and (python-info-beginning-of-statement-p)
4522 (python-info-statement-starts-block-p)))
4523
4524 (defun python-info-end-of-block-p ()
4525 "Return non-nil if point is at end of block."
4526 (and (python-info-end-of-statement-p)
4527 (python-info-statement-ends-block-p)))
4528
4529 (define-obsolete-function-alias
4530 'python-info-closing-block
4531 'python-info-dedenter-opening-block-position "24.4")
4532
4533 (defun python-info-dedenter-opening-block-position ()
4534 "Return the point of the closest block the current line closes.
4535 Returns nil if point is not on a dedenter statement or no opening
4536 block can be detected. The latter case meaning current file is
4537 likely an invalid python file."
4538 (let ((positions (python-info-dedenter-opening-block-positions))
4539 (indentation (current-indentation))
4540 (position))
4541 (while (and (not position)
4542 positions)
4543 (save-excursion
4544 (goto-char (car positions))
4545 (if (<= (current-indentation) indentation)
4546 (setq position (car positions))
4547 (setq positions (cdr positions)))))
4548 position))
4549
4550 (defun python-info-dedenter-opening-block-positions ()
4551 "Return points of blocks the current line may close sorted by closer.
4552 Returns nil if point is not on a dedenter statement or no opening
4553 block can be detected. The latter case meaning current file is
4554 likely an invalid python file."
4555 (save-excursion
4556 (let ((dedenter-pos (python-info-dedenter-statement-p)))
4557 (when dedenter-pos
4558 (goto-char dedenter-pos)
4559 (let* ((pairs '(("elif" "elif" "if")
4560 ("else" "if" "elif" "except" "for" "while")
4561 ("except" "except" "try")
4562 ("finally" "else" "except" "try")))
4563 (dedenter (match-string-no-properties 0))
4564 (possible-opening-blocks (cdr (assoc-string dedenter pairs)))
4565 (collected-indentations)
4566 (opening-blocks))
4567 (catch 'exit
4568 (while (python-nav--syntactically
4569 (lambda ()
4570 (re-search-backward (python-rx block-start) nil t))
4571 #'<)
4572 (let ((indentation (current-indentation)))
4573 (when (and (not (memq indentation collected-indentations))
4574 (or (not collected-indentations)
4575 (< indentation (apply #'min collected-indentations))))
4576 (setq collected-indentations
4577 (cons indentation collected-indentations))
4578 (when (member (match-string-no-properties 0)
4579 possible-opening-blocks)
4580 (setq opening-blocks (cons (point) opening-blocks))))
4581 (when (zerop indentation)
4582 (throw 'exit nil)))))
4583 ;; sort by closer
4584 (nreverse opening-blocks))))))
4585
4586 (define-obsolete-function-alias
4587 'python-info-closing-block-message
4588 'python-info-dedenter-opening-block-message "24.4")
4589
4590 (defun python-info-dedenter-opening-block-message ()
4591 "Message the first line of the block the current statement closes."
4592 (let ((point (python-info-dedenter-opening-block-position)))
4593 (when point
4594 (save-restriction
4595 (prog-widen)
4596 (message "Closes %s" (save-excursion
4597 (goto-char point)
4598 (buffer-substring
4599 (point) (line-end-position))))))))
4600
4601 (defun python-info-dedenter-statement-p ()
4602 "Return point if current statement is a dedenter.
4603 Sets `match-data' to the keyword that starts the dedenter
4604 statement."
4605 (save-excursion
4606 (python-nav-beginning-of-statement)
4607 (when (and (not (python-syntax-context-type))
4608 (looking-at (python-rx dedenter)))
4609 (point))))
4610
4611 (defun python-info-line-ends-backslash-p (&optional line-number)
4612 "Return non-nil if current line ends with backslash.
4613 With optional argument LINE-NUMBER, check that line instead."
4614 (save-excursion
4615 (save-restriction
4616 (prog-widen)
4617 (when line-number
4618 (python-util-goto-line line-number))
4619 (while (and (not (eobp))
4620 (goto-char (line-end-position))
4621 (python-syntax-context 'paren)
4622 (not (equal (char-before (point)) ?\\)))
4623 (forward-line 1))
4624 (when (equal (char-before) ?\\)
4625 (point-marker)))))
4626
4627 (defun python-info-beginning-of-backslash (&optional line-number)
4628 "Return the point where the backslashed line start.
4629 Optional argument LINE-NUMBER forces the line number to check against."
4630 (save-excursion
4631 (save-restriction
4632 (prog-widen)
4633 (when line-number
4634 (python-util-goto-line line-number))
4635 (when (python-info-line-ends-backslash-p)
4636 (while (save-excursion
4637 (goto-char (line-beginning-position))
4638 (python-syntax-context 'paren))
4639 (forward-line -1))
4640 (back-to-indentation)
4641 (point-marker)))))
4642
4643 (defun python-info-continuation-line-p ()
4644 "Check if current line is continuation of another.
4645 When current line is continuation of another return the point
4646 where the continued line ends."
4647 (save-excursion
4648 (save-restriction
4649 (prog-widen)
4650 (let* ((context-type (progn
4651 (back-to-indentation)
4652 (python-syntax-context-type)))
4653 (line-start (line-number-at-pos))
4654 (context-start (when context-type
4655 (python-syntax-context context-type))))
4656 (cond ((equal context-type 'paren)
4657 ;; Lines inside a paren are always a continuation line
4658 ;; (except the first one).
4659 (python-util-forward-comment -1)
4660 (point-marker))
4661 ((member context-type '(string comment))
4662 ;; move forward an roll again
4663 (goto-char context-start)
4664 (python-util-forward-comment)
4665 (python-info-continuation-line-p))
4666 (t
4667 ;; Not within a paren, string or comment, the only way
4668 ;; we are dealing with a continuation line is that
4669 ;; previous line contains a backslash, and this can
4670 ;; only be the previous line from current
4671 (back-to-indentation)
4672 (python-util-forward-comment -1)
4673 (when (and (equal (1- line-start) (line-number-at-pos))
4674 (python-info-line-ends-backslash-p))
4675 (point-marker))))))))
4676
4677 (defun python-info-block-continuation-line-p ()
4678 "Return non-nil if current line is a continuation of a block."
4679 (save-excursion
4680 (when (python-info-continuation-line-p)
4681 (forward-line -1)
4682 (back-to-indentation)
4683 (when (looking-at (python-rx block-start))
4684 (point-marker)))))
4685
4686 (defun python-info-assignment-statement-p (&optional current-line-only)
4687 "Check if current line is an assignment.
4688 With argument CURRENT-LINE-ONLY is non-nil, don't follow any
4689 continuations, just check the if current line is an assignment."
4690 (save-excursion
4691 (let ((found nil))
4692 (if current-line-only
4693 (back-to-indentation)
4694 (python-nav-beginning-of-statement))
4695 (while (and
4696 (re-search-forward (python-rx not-simple-operator
4697 assignment-operator
4698 (group not-simple-operator))
4699 (line-end-position) t)
4700 (not found))
4701 (save-excursion
4702 ;; The assignment operator should not be inside a string.
4703 (backward-char (length (match-string-no-properties 1)))
4704 (setq found (not (python-syntax-context-type)))))
4705 (when found
4706 (skip-syntax-forward " ")
4707 (point-marker)))))
4708
4709 ;; TODO: rename to clarify this is only for the first continuation
4710 ;; line or remove it and move its body to `python-indent-context'.
4711 (defun python-info-assignment-continuation-line-p ()
4712 "Check if current line is the first continuation of an assignment.
4713 When current line is continuation of another with an assignment
4714 return the point of the first non-blank character after the
4715 operator."
4716 (save-excursion
4717 (when (python-info-continuation-line-p)
4718 (forward-line -1)
4719 (python-info-assignment-statement-p t))))
4720
4721 (defun python-info-looking-at-beginning-of-defun (&optional syntax-ppss)
4722 "Check if point is at `beginning-of-defun' using SYNTAX-PPSS."
4723 (and (not (python-syntax-context-type (or syntax-ppss (syntax-ppss))))
4724 (save-excursion
4725 (beginning-of-line 1)
4726 (looking-at python-nav-beginning-of-defun-regexp))))
4727
4728 (defun python-info-current-line-comment-p ()
4729 "Return non-nil if current line is a comment line."
4730 (char-equal
4731 (or (char-after (+ (line-beginning-position) (current-indentation))) ?_)
4732 ?#))
4733
4734 (defun python-info-current-line-empty-p ()
4735 "Return non-nil if current line is empty, ignoring whitespace."
4736 (save-excursion
4737 (beginning-of-line 1)
4738 (looking-at
4739 (python-rx line-start (* whitespace)
4740 (group (* not-newline))
4741 (* whitespace) line-end))
4742 (string-equal "" (match-string-no-properties 1))))
4743
4744 (defun python-info-docstring-p (&optional syntax-ppss)
4745 "Return non-nil if point is in a docstring.
4746 When optional argument SYNTAX-PPSS is given, use that instead of
4747 point's current `syntax-ppss'."
4748 ;;; https://www.python.org/dev/peps/pep-0257/#what-is-a-docstring
4749 (save-excursion
4750 (when (and syntax-ppss (python-syntax-context 'string syntax-ppss))
4751 (goto-char (nth 8 syntax-ppss)))
4752 (python-nav-beginning-of-statement)
4753 (let ((counter 1)
4754 (indentation (current-indentation))
4755 (backward-sexp-point)
4756 (re (concat "[uU]?[rR]?"
4757 (python-rx string-delimiter))))
4758 (when (and
4759 (not (python-info-assignment-statement-p))
4760 (looking-at-p re)
4761 ;; Allow up to two consecutive docstrings only.
4762 (>=
4763 2
4764 (progn
4765 (while (save-excursion
4766 (python-nav-backward-sexp)
4767 (setq backward-sexp-point (point))
4768 (and (= indentation (current-indentation))
4769 (not (bobp)) ; Prevent infloop.
4770 (looking-at-p
4771 (concat "[uU]?[rR]?"
4772 (python-rx string-delimiter)))))
4773 ;; Previous sexp was a string, restore point.
4774 (goto-char backward-sexp-point)
4775 (cl-incf counter))
4776 counter)))
4777 (python-util-forward-comment -1)
4778 (python-nav-beginning-of-statement)
4779 (cond ((bobp))
4780 ((python-info-assignment-statement-p) t)
4781 ((python-info-looking-at-beginning-of-defun))
4782 (t nil))))))
4783
4784 (defun python-info-encoding-from-cookie ()
4785 "Detect current buffer's encoding from its coding cookie.
4786 Returns the encoding as a symbol."
4787 (let ((first-two-lines
4788 (save-excursion
4789 (save-restriction
4790 (widen)
4791 (goto-char (point-min))
4792 (forward-line 2)
4793 (buffer-substring-no-properties
4794 (point)
4795 (point-min))))))
4796 (when (string-match (python-rx coding-cookie) first-two-lines)
4797 (intern (match-string-no-properties 1 first-two-lines)))))
4798
4799 (defun python-info-encoding ()
4800 "Return encoding for file.
4801 Try `python-info-encoding-from-cookie', if none is found then
4802 default to utf-8."
4803 ;; If no encoding is defined, then it's safe to use UTF-8: Python 2
4804 ;; uses ASCII as default while Python 3 uses UTF-8. This means that
4805 ;; in the worst case scenario python.el will make things work for
4806 ;; Python 2 files with unicode data and no encoding defined.
4807 (or (python-info-encoding-from-cookie)
4808 'utf-8))
4809
4810 \f
4811 ;;; Utility functions
4812
4813 (defun python-util-goto-line (line-number)
4814 "Move point to LINE-NUMBER."
4815 (goto-char (point-min))
4816 (forward-line (1- line-number)))
4817
4818 ;; Stolen from org-mode
4819 (defun python-util-clone-local-variables (from-buffer &optional regexp)
4820 "Clone local variables from FROM-BUFFER.
4821 Optional argument REGEXP selects variables to clone and defaults
4822 to \"^python-\"."
4823 (mapc
4824 (lambda (pair)
4825 (and (symbolp (car pair))
4826 (string-match (or regexp "^python-")
4827 (symbol-name (car pair)))
4828 (set (make-local-variable (car pair))
4829 (cdr pair))))
4830 (buffer-local-variables from-buffer)))
4831
4832 (defvar comint-last-prompt-overlay) ; Shut up, byte compiler.
4833
4834 (defun python-util-comint-last-prompt ()
4835 "Return comint last prompt overlay start and end.
4836 This is for compatibility with Emacs < 24.4."
4837 (cond ((bound-and-true-p comint-last-prompt-overlay)
4838 (cons (overlay-start comint-last-prompt-overlay)
4839 (overlay-end comint-last-prompt-overlay)))
4840 ((bound-and-true-p comint-last-prompt)
4841 comint-last-prompt)
4842 (t nil)))
4843
4844 (defun python-util-forward-comment (&optional direction)
4845 "Python mode specific version of `forward-comment'.
4846 Optional argument DIRECTION defines the direction to move to."
4847 (let ((comment-start (python-syntax-context 'comment))
4848 (factor (if (< (or direction 0) 0)
4849 -99999
4850 99999)))
4851 (when comment-start
4852 (goto-char comment-start))
4853 (forward-comment factor)))
4854
4855 (defun python-util-list-directories (directory &optional predicate max-depth)
4856 "List DIRECTORY subdirs, filtered by PREDICATE and limited by MAX-DEPTH.
4857 Argument PREDICATE defaults to `identity' and must be a function
4858 that takes one argument (a full path) and returns non-nil for
4859 allowed files. When optional argument MAX-DEPTH is non-nil, stop
4860 searching when depth is reached, else don't limit."
4861 (let* ((dir (expand-file-name directory))
4862 (dir-length (length dir))
4863 (predicate (or predicate #'identity))
4864 (to-scan (list dir))
4865 (tally nil))
4866 (while to-scan
4867 (let ((current-dir (car to-scan)))
4868 (when (funcall predicate current-dir)
4869 (setq tally (cons current-dir tally)))
4870 (setq to-scan (append (cdr to-scan)
4871 (python-util-list-files
4872 current-dir #'file-directory-p)
4873 nil))
4874 (when (and max-depth
4875 (<= max-depth
4876 (length (split-string
4877 (substring current-dir dir-length)
4878 "/\\|\\\\" t))))
4879 (setq to-scan nil))))
4880 (nreverse tally)))
4881
4882 (defun python-util-list-files (dir &optional predicate)
4883 "List files in DIR, filtering with PREDICATE.
4884 Argument PREDICATE defaults to `identity' and must be a function
4885 that takes one argument (a full path) and returns non-nil for
4886 allowed files."
4887 (let ((dir-name (file-name-as-directory dir)))
4888 (apply #'nconc
4889 (mapcar (lambda (file-name)
4890 (let ((full-file-name (expand-file-name file-name dir-name)))
4891 (when (and
4892 (not (member file-name '("." "..")))
4893 (funcall (or predicate #'identity) full-file-name))
4894 (list full-file-name))))
4895 (directory-files dir-name)))))
4896
4897 (defun python-util-list-packages (dir &optional max-depth)
4898 "List packages in DIR, limited by MAX-DEPTH.
4899 When optional argument MAX-DEPTH is non-nil, stop searching when
4900 depth is reached, else don't limit."
4901 (let* ((dir (expand-file-name dir))
4902 (parent-dir (file-name-directory
4903 (directory-file-name
4904 (file-name-directory
4905 (file-name-as-directory dir)))))
4906 (subpath-length (length parent-dir)))
4907 (mapcar
4908 (lambda (file-name)
4909 (replace-regexp-in-string
4910 (rx (or ?\\ ?/)) "." (substring file-name subpath-length)))
4911 (python-util-list-directories
4912 (directory-file-name dir)
4913 (lambda (dir)
4914 (file-exists-p (expand-file-name "__init__.py" dir)))
4915 max-depth))))
4916
4917 (defun python-util-popn (lst n)
4918 "Return LST first N elements.
4919 N should be an integer, when negative its opposite is used.
4920 When N is bigger than the length of LST, the list is
4921 returned as is."
4922 (let* ((n (min (abs n)))
4923 (len (length lst))
4924 (acc))
4925 (if (> n len)
4926 lst
4927 (while (< 0 n)
4928 (setq acc (cons (car lst) acc)
4929 lst (cdr lst)
4930 n (1- n)))
4931 (reverse acc))))
4932
4933 (defun python-util-strip-string (string)
4934 "Strip STRING whitespace and newlines from end and beginning."
4935 (replace-regexp-in-string
4936 (rx (or (: string-start (* (any whitespace ?\r ?\n)))
4937 (: (* (any whitespace ?\r ?\n)) string-end)))
4938 ""
4939 string))
4940
4941 (defun python-util-valid-regexp-p (regexp)
4942 "Return non-nil if REGEXP is valid."
4943 (ignore-errors (string-match regexp "") t))
4944
4945 \f
4946 (defun python-electric-pair-string-delimiter ()
4947 (when (and electric-pair-mode
4948 (memq last-command-event '(?\" ?\'))
4949 (let ((count 0))
4950 (while (eq (char-before (- (point) count)) last-command-event)
4951 (cl-incf count))
4952 (= count 3))
4953 (eq (char-after) last-command-event))
4954 (save-excursion (insert (make-string 2 last-command-event)))))
4955
4956 (defvar electric-indent-inhibit)
4957
4958 ;;;###autoload
4959 (define-derived-mode python-mode prog-mode "Python"
4960 "Major mode for editing Python files.
4961
4962 \\{python-mode-map}"
4963 (set (make-local-variable 'tab-width) 8)
4964 (set (make-local-variable 'indent-tabs-mode) nil)
4965
4966 (set (make-local-variable 'comment-start) "# ")
4967 (set (make-local-variable 'comment-start-skip) "#+\\s-*")
4968
4969 (set (make-local-variable 'parse-sexp-lookup-properties) t)
4970 (set (make-local-variable 'parse-sexp-ignore-comments) t)
4971
4972 (set (make-local-variable 'forward-sexp-function)
4973 'python-nav-forward-sexp)
4974
4975 (set (make-local-variable 'font-lock-defaults)
4976 '(python-font-lock-keywords
4977 nil nil nil nil
4978 (font-lock-syntactic-face-function
4979 . python-font-lock-syntactic-face-function)))
4980
4981 (set (make-local-variable 'syntax-propertize-function)
4982 python-syntax-propertize-function)
4983
4984 (set (make-local-variable 'indent-line-function)
4985 #'python-indent-line-function)
4986 (set (make-local-variable 'indent-region-function) #'python-indent-region)
4987 ;; Because indentation is not redundant, we cannot safely reindent code.
4988 (set (make-local-variable 'electric-indent-inhibit) t)
4989 (set (make-local-variable 'electric-indent-chars)
4990 (cons ?: electric-indent-chars))
4991
4992 ;; Add """ ... """ pairing to electric-pair-mode.
4993 (add-hook 'post-self-insert-hook
4994 #'python-electric-pair-string-delimiter 'append t)
4995
4996 (set (make-local-variable 'paragraph-start) "\\s-*$")
4997 (set (make-local-variable 'fill-paragraph-function)
4998 #'python-fill-paragraph)
4999
5000 (set (make-local-variable 'beginning-of-defun-function)
5001 #'python-nav-beginning-of-defun)
5002 (set (make-local-variable 'end-of-defun-function)
5003 #'python-nav-end-of-defun)
5004
5005 (add-hook 'completion-at-point-functions
5006 #'python-completion-at-point nil 'local)
5007
5008 (add-hook 'post-self-insert-hook
5009 #'python-indent-post-self-insert-function 'append 'local)
5010
5011 (set (make-local-variable 'imenu-create-index-function)
5012 #'python-imenu-create-index)
5013
5014 (set (make-local-variable 'add-log-current-defun-function)
5015 #'python-info-current-defun)
5016
5017 (add-hook 'which-func-functions #'python-info-current-defun nil t)
5018
5019 (set (make-local-variable 'skeleton-further-elements)
5020 '((abbrev-mode nil)
5021 (< '(backward-delete-char-untabify (min python-indent-offset
5022 (current-column))))
5023 (^ '(- (1+ (current-indentation))))))
5024
5025 (if (null eldoc-documentation-function)
5026 ;; Emacs<25
5027 (set (make-local-variable 'eldoc-documentation-function)
5028 #'python-eldoc-function)
5029 (add-function :before-until (local 'eldoc-documentation-function)
5030 #'python-eldoc-function))
5031
5032 (add-to-list
5033 'hs-special-modes-alist
5034 `(python-mode
5035 "\\s-*\\(?:def\\|class\\)\\>"
5036 ;; Use the empty string as end regexp so it doesn't default to
5037 ;; "\\s)". This way parens at end of defun are properly hidden.
5038 ""
5039 "#"
5040 python-hideshow-forward-sexp-function
5041 nil))
5042
5043 (set (make-local-variable 'outline-regexp)
5044 (python-rx (* space) block-start))
5045 (set (make-local-variable 'outline-heading-end-regexp) ":[^\n]*\n")
5046 (set (make-local-variable 'outline-level)
5047 #'(lambda ()
5048 "`outline-level' function for Python mode."
5049 (1+ (/ (current-indentation) python-indent-offset))))
5050
5051 (python-skeleton-add-menu-items)
5052
5053 (make-local-variable 'python-shell-internal-buffer)
5054
5055 (when python-indent-guess-indent-offset
5056 (python-indent-guess-indent-offset)))
5057
5058
5059 (provide 'python)
5060
5061 ;; Local Variables:
5062 ;; coding: utf-8
5063 ;; indent-tabs-mode: nil
5064 ;; End:
5065
5066 ;;; python.el ends here