1 ;;; python.el --- Python's flying circus support for Emacs -*- lexical-binding: t -*-
3 ;; Copyright (C) 2003-2016 Free Software Foundation, Inc.
5 ;; Author: Fabián E. Gallina <fgallina@gnu.org>
6 ;; URL: https://github.com/fgallina/python.el
8 ;; Package-Requires: ((emacs "24.1") (cl-lib "1.0"))
9 ;; Maintainer: emacs-devel@gnu.org
11 ;; Keywords: languages
13 ;; This file is part of GNU Emacs.
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.
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.
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/>.
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.
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.
39 ;; Syntax highlighting: Fontification of code is provided and supports
40 ;; python's triple quoted strings properly.
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.
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':
63 ;; (add-hook 'python-mode-hook
64 ;; (lambda () (setq forward-sexp-function nil)))
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.
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:
78 ;; (setq python-shell-interpreter "ipython"
79 ;; python-shell-interpreter-args "-i")
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.
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
94 ;; (setq python-shell-interpreter "C:\\Python27\\python.exe"
95 ;; python-shell-interpreter-args
96 ;; "-i C:\\Python27\\Scripts\\ipython-script.py")
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'.
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.
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:
142 ;; >>> import readline, rlcompleter
144 ;; If you see an error, then you need to either install pyreadline or
145 ;; setup custom code that avoids that dependency.
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/
156 ;; (setq python-shell-process-environment
158 ;; (format "PATH=%s" (mapconcat
161 ;; (cons (getenv "PATH")
162 ;; '("/path/to/env/bin/")))
164 ;; "VIRTUAL_ENV=/path/to/env/"))
165 ;; (python-shell-exec-path . ("/path/to/env/bin/"))
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:
174 ;; (setq python-shell-virtualenv-root "/path/to/env/")
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.
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.
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.
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.
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.
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.
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>'.
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
216 ;; Code check: Check the current file for errors with `python-check'
217 ;; using the program defined in `python-check-command'.
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.
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.
233 ;; If you used python-mode.el you may miss auto-indentation when
234 ;; inserting newlines. To achieve the same behavior you have two
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.
241 ;; 2) Add the following hook in your .emacs:
243 ;; (add-hook 'python-mode-hook
245 ;; (define-key python-mode-map "\C-m" 'newline-and-indent)))
247 ;; I'd recommend the first one since you'll get the same behavior for
248 ;; all modes out-of-the-box.
252 ;; Add this to your .emacs:
254 ;; (add-to-list 'load-path "/folder/containing/file")
261 (require 'ansi-color
)
267 ;; Avoid compiler warnings
268 (defvar view-return-to-alist
)
269 (defvar compilation-error-regexp-alist
)
270 (defvar outline-heading-end-regexp
)
272 (autoload 'comint-mode
"comint")
273 (autoload 'help-function-arglist
"help-fns")
276 (add-to-list 'auto-mode-alist
(cons (purecopy "\\.pyw?\\'") 'python-mode
))
278 (add-to-list 'interpreter-mode-alist
(cons (purecopy "python[0-9.]*") 'python-mode
))
281 "Python Language's flying circus support for Emacs."
284 :link
'(emacs-commentary-link "python"))
290 (unless (fboundp 'prog-widen
)
294 (unless (fboundp 'prog-first-column
)
295 (defun prog-first-column ()
301 (defvar python-mode-map
302 (let ((map (make-sparse-keymap)))
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
)
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
)
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
)
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 (define-key map
"\C-c\C-d" 'python-describe-at-point
)
335 (substitute-key-definition 'complete-symbol
'completion-at-point
337 (easy-menu-define python-menu map
"Python Mode menu"
339 :help
"Python-specific Features"
340 ["Shift region left" python-indent-shift-left
:active mark-active
341 :help
"Shift region left by a single indentation step"]
342 ["Shift region right" python-indent-shift-right
:active mark-active
343 :help
"Shift region right by a single indentation step"]
345 ["Start of def/class" beginning-of-defun
346 :help
"Go to start of outermost definition around point"]
347 ["End of def/class" end-of-defun
348 :help
"Go to end of definition around point"]
349 ["Mark def/class" mark-defun
350 :help
"Mark outermost definition around point"]
351 ["Jump to def/class" imenu
352 :help
"Jump to a class or function definition"]
356 ["Start interpreter" run-python
357 :help
"Run inferior Python process in a separate buffer"]
358 ["Switch to shell" python-shell-switch-to-shell
359 :help
"Switch to running inferior Python process"]
360 ["Eval string" python-shell-send-string
361 :help
"Eval string in inferior Python session"]
362 ["Eval buffer" python-shell-send-buffer
363 :help
"Eval buffer in inferior Python session"]
364 ["Eval region" python-shell-send-region
365 :help
"Eval region in inferior Python session"]
366 ["Eval defun" python-shell-send-defun
367 :help
"Eval defun in inferior Python session"]
368 ["Eval file" python-shell-send-file
369 :help
"Eval file in inferior Python session"]
370 ["Debugger" pdb
:help
"Run pdb under GUD"]
372 ["Check file" python-check
373 :help
"Check file for errors"]
374 ["Help on symbol" python-eldoc-at-point
375 :help
"Get help on symbol at point"]
376 ["Complete symbol" completion-at-point
377 :help
"Complete symbol before point"]))
379 "Keymap for `python-mode'.")
382 ;;; Python specialized rx
385 (defconst python-rx-constituents
386 `((block-start .
,(rx symbol-start
387 (or "def" "class" "if" "elif" "else" "try"
388 "except" "finally" "for" "while" "with"
389 ;; Python 3.5+ PEP492
390 (and "async" (+ space
)
391 (or "def" "for" "with")))
393 (dedenter .
,(rx symbol-start
394 (or "elif" "else" "except" "finally")
396 (block-ender .
,(rx symbol-start
398 "break" "continue" "pass" "raise" "return")
400 (decorator .
,(rx line-start
(* space
) ?
@ (any letter ?_
)
402 (defun .
,(rx symbol-start
404 ;; Python 3.5+ PEP492
405 (and "async" (+ space
) "def"))
407 (if-name-main .
,(rx line-start
"if" (+ space
) "__name__"
408 (+ space
) "==" (+ space
)
409 (any ?
' ?
\") "__main__" (any ?
' ?
\")
411 (symbol-name .
,(rx (any letter ?_
) (* (any word ?_
))))
412 (open-paren .
,(rx (or "{" "[" "(")))
413 (close-paren .
,(rx (or "}" "]" ")")))
414 (simple-operator .
,(rx (any ?
+ ?- ?
/ ?
& ?^ ?~ ?| ?
* ?
< ?
> ?
= ?%
)))
415 ;; FIXME: rx should support (not simple-operator).
416 (not-simple-operator .
,(rx
418 (any ?
+ ?- ?
/ ?
& ?^ ?~ ?| ?
* ?
< ?
> ?
= ?%
))))
419 ;; FIXME: Use regexp-opt.
420 (operator .
,(rx (or "+" "-" "/" "&" "^" "~" "|" "*" "<" ">"
421 "=" "%" "**" "//" "<<" ">>" "<=" "!="
422 "==" ">=" "is" "not")))
423 ;; FIXME: Use regexp-opt.
424 (assignment-operator .
,(rx (or "=" "+=" "-=" "*=" "/=" "//=" "%=" "**="
425 ">>=" "<<=" "&=" "^=" "|=")))
426 (string-delimiter .
,(rx (and
427 ;; Match even number of backslashes.
428 (or (not (any ?
\\ ?
\' ?
\")) point
429 ;; Quotes might be preceded by a escaped quote.
430 (and (or (not (any ?
\\)) point
) ?
\\
431 (* ?
\\ ?
\\) (any ?
\' ?
\")))
433 ;; Match single or triple quotes of any kind.
434 (group (or "\"" "\"\"\"" "'" "'''")))))
435 (coding-cookie .
,(rx line-start ?
# (* space
)
437 ;; # coding=<encoding name>
438 (: "coding" (or ?
: ?
=) (* space
) (group-n 1 (+ (or word ?-
))))
439 ;; # -*- coding: <encoding name> -*-
440 (: "-*-" (* space
) "coding:" (* space
)
441 (group-n 1 (+ (or word ?-
))) (* space
) "-*-")
442 ;; # vim: set fileencoding=<encoding name> :
443 (: "vim:" (* space
) "set" (+ space
)
444 "fileencoding" (* space
) ?
= (* space
)
445 (group-n 1 (+ (or word ?-
))) (* space
) ":")))))
446 "Additional Python specific sexps for `python-rx'")
448 (defmacro python-rx
(&rest regexps
)
449 "Python mode specialized rx macro.
450 This variant of `rx' supports common Python named REGEXPS."
451 (let ((rx-constituents (append python-rx-constituents rx-constituents
)))
452 (cond ((null regexps
)
455 (rx-to-string `(and ,@regexps
) t
))
457 (rx-to-string (car regexps
) t
))))))
460 ;;; Font-lock and syntax
463 (defun python-syntax--context-compiler-macro (form type
&optional syntax-ppss
)
466 `(let ((ppss (or ,syntax-ppss
(syntax-ppss))))
467 (and (nth 4 ppss
) (nth 8 ppss
))))
469 `(let ((ppss (or ,syntax-ppss
(syntax-ppss))))
470 (and (nth 3 ppss
) (nth 8 ppss
))))
472 `(nth 1 (or ,syntax-ppss
(syntax-ppss))))
475 (defun python-syntax-context (type &optional syntax-ppss
)
476 "Return non-nil if point is on TYPE using SYNTAX-PPSS.
477 TYPE can be `comment', `string' or `paren'. It returns the start
478 character address of the specified TYPE."
479 (declare (compiler-macro python-syntax--context-compiler-macro
))
480 (let ((ppss (or syntax-ppss
(syntax-ppss))))
482 (`comment
(and (nth 4 ppss
) (nth 8 ppss
)))
483 (`string
(and (nth 3 ppss
) (nth 8 ppss
)))
484 (`paren
(nth 1 ppss
))
487 (defun python-syntax-context-type (&optional syntax-ppss
)
488 "Return the context type using SYNTAX-PPSS.
489 The type returned can be `comment', `string' or `paren'."
490 (let ((ppss (or syntax-ppss
(syntax-ppss))))
492 ((nth 8 ppss
) (if (nth 4 ppss
) 'comment
'string
))
493 ((nth 1 ppss
) 'paren
))))
495 (defsubst python-syntax-comment-or-string-p
(&optional ppss
)
496 "Return non-nil if PPSS is inside comment or string."
497 (nth 8 (or ppss
(syntax-ppss))))
499 (defsubst python-syntax-closing-paren-p
()
500 "Return non-nil if char after point is a closing paren."
501 (eql (syntax-class (syntax-after (point)))
502 (syntax-class (string-to-syntax ")"))))
504 (define-obsolete-function-alias
505 'python-info-ppss-context
#'python-syntax-context
"24.3")
507 (define-obsolete-function-alias
508 'python-info-ppss-context-type
#'python-syntax-context-type
"24.3")
510 (define-obsolete-function-alias
511 'python-info-ppss-comment-or-string-p
512 #'python-syntax-comment-or-string-p
"24.3")
514 (defun python-font-lock-syntactic-face-function (state)
515 "Return syntactic face given STATE."
517 (if (python-info-docstring-p state
)
519 font-lock-string-face
)
520 font-lock-comment-face
))
522 (defvar python-font-lock-keywords
526 "and" "del" "from" "not" "while" "as" "elif" "global" "or" "with"
527 "assert" "else" "if" "pass" "yield" "break" "except" "import" "class"
528 "in" "raise" "continue" "finally" "is" "return" "def" "for" "lambda"
533 ;; False, None, and True are listed as keywords on the Python 3
534 ;; documentation, but since they also qualify as constants they are
535 ;; fontified like that in order to keep font-lock consistent between
538 ;; Python 3.5+ PEP492
539 (and "async" (+ space
) (or "def" "for" "with"))
545 (,(rx symbol-start
"def" (1+ space
) (group (1+ (or word ?_
))))
546 (1 font-lock-function-name-face
))
548 (,(rx symbol-start
"class" (1+ space
) (group (1+ (or word ?_
))))
549 (1 font-lock-type-face
))
553 "Ellipsis" "False" "None" "NotImplemented" "True" "__debug__"
554 ;; copyright, license, credits, quit and exit are added by the site
555 ;; module and they are not intended to be used in programs
556 "copyright" "credits" "exit" "license" "quit")
557 symbol-end
) . font-lock-constant-face
)
559 (,(rx line-start
(* (any " \t")) (group "@" (1+ (or word ?_
))
560 (0+ "." (1+ (or word ?_
)))))
561 (1 font-lock-type-face
))
562 ;; Builtin Exceptions
566 "ArithmeticError" "AssertionError" "AttributeError" "BaseException"
567 "BufferError" "BytesWarning" "DeprecationWarning" "EOFError"
568 "EnvironmentError" "Exception" "FloatingPointError" "FutureWarning"
569 "GeneratorExit" "IOError" "ImportError" "ImportWarning"
570 "IndentationError" "IndexError" "KeyError" "KeyboardInterrupt"
571 "LookupError" "MemoryError" "NameError" "NotImplementedError"
572 "OSError" "OverflowError" "PendingDeprecationWarning"
573 "ReferenceError" "RuntimeError" "RuntimeWarning" "StopIteration"
574 "SyntaxError" "SyntaxWarning" "SystemError" "SystemExit" "TabError"
575 "TypeError" "UnboundLocalError" "UnicodeDecodeError"
576 "UnicodeEncodeError" "UnicodeError" "UnicodeTranslateError"
577 "UnicodeWarning" "UserWarning" "ValueError" "Warning"
582 "BlockingIOError" "BrokenPipeError" "ChildProcessError"
583 "ConnectionAbortedError" "ConnectionError" "ConnectionRefusedError"
584 "ConnectionResetError" "FileExistsError" "FileNotFoundError"
585 "InterruptedError" "IsADirectoryError" "NotADirectoryError"
586 "PermissionError" "ProcessLookupError" "RecursionError"
587 "ResourceWarning" "StopAsyncIteration" "TimeoutError"
589 "VMSError" "WindowsError"
591 symbol-end
) . font-lock-type-face
)
595 "abs" "all" "any" "bin" "bool" "callable" "chr" "classmethod"
596 "compile" "complex" "delattr" "dict" "dir" "divmod" "enumerate"
597 "eval" "filter" "float" "format" "frozenset" "getattr" "globals"
598 "hasattr" "hash" "help" "hex" "id" "input" "int" "isinstance"
599 "issubclass" "iter" "len" "list" "locals" "map" "max" "memoryview"
600 "min" "next" "object" "oct" "open" "ord" "pow" "print" "property"
601 "range" "repr" "reversed" "round" "set" "setattr" "slice" "sorted"
602 "staticmethod" "str" "sum" "super" "tuple" "type" "vars" "zip"
605 "basestring" "cmp" "execfile" "file" "long" "raw_input" "reduce"
606 "reload" "unichr" "unicode" "xrange" "apply" "buffer" "coerce"
609 "ascii" "bytearray" "bytes" "exec"
611 "__all__" "__doc__" "__name__" "__package__")
612 symbol-end
) . font-lock-builtin-face
)
614 ;; support for a = b = c = 5
616 (let ((re (python-rx (group (+ (any word ?. ?_
)))
617 (? ?\
[ (+ (not (any ?\
]))) ?\
]) (* space
)
618 assignment-operator
))
620 (while (and (setq res
(re-search-forward re limit t
))
621 (or (python-syntax-context 'paren
)
622 (equal (char-after (point)) ?
=))))
624 (1 font-lock-variable-name-face nil nil
))
625 ;; support for a, b, c = (1, 2, 3)
627 (let ((re (python-rx (group (+ (any word ?. ?_
))) (* space
)
628 (* ?
, (* space
) (+ (any word ?. ?_
)) (* space
))
629 ?
, (* space
) (+ (any word ?. ?_
)) (* space
)
630 assignment-operator
))
632 (while (and (setq res
(re-search-forward re limit t
))
633 (goto-char (match-end 1))
634 (python-syntax-context 'paren
)))
636 (1 font-lock-variable-name-face nil nil
))))
638 (defconst python-syntax-propertize-function
639 (syntax-propertize-rules
640 ((python-rx string-delimiter
)
641 (0 (ignore (python-syntax-stringify))))))
643 (defconst python--prettify-symbols-alist
648 (defsubst python-syntax-count-quotes
(quote-char &optional point limit
)
649 "Count number of quotes around point (max is 3).
650 QUOTE-CHAR is the quote char to count. Optional argument POINT is
651 the point where scan starts (defaults to current point), and LIMIT
652 is used to limit the scan."
655 (or (not limit
) (< (+ point i
) limit
))
656 (eq (char-after (+ point i
)) quote-char
))
660 (defun python-syntax-stringify ()
661 "Put `syntax-table' property correctly on single/triple quotes."
662 (let* ((num-quotes (length (match-string-no-properties 1)))
664 (backward-char num-quotes
)
666 (forward-char num-quotes
)))
667 (string-start (and (not (nth 4 ppss
)) (nth 8 ppss
)))
668 (quote-starting-pos (- (point) num-quotes
))
669 (quote-ending-pos (point))
672 (python-syntax-count-quotes
673 (char-before) string-start quote-starting-pos
))))
674 (cond ((and string-start
(= num-closing-quotes
0))
675 ;; This set of quotes doesn't match the string starting
679 ;; This set of quotes delimit the start of a string.
680 (put-text-property quote-starting-pos
(1+ quote-starting-pos
)
681 'syntax-table
(string-to-syntax "|")))
682 ((= num-quotes num-closing-quotes
)
683 ;; This set of quotes delimit the end of a string.
684 (put-text-property (1- quote-ending-pos
) quote-ending-pos
685 'syntax-table
(string-to-syntax "|")))
686 ((> num-quotes num-closing-quotes
)
687 ;; This may only happen whenever a triple quote is closing
688 ;; a single quoted string. Add string delimiter syntax to
690 (put-text-property quote-starting-pos quote-ending-pos
691 'syntax-table
(string-to-syntax "|"))))))
693 (defvar python-mode-syntax-table
694 (let ((table (make-syntax-table)))
695 ;; Give punctuation syntax to ASCII that normally has symbol
696 ;; syntax or has word syntax and isn't a letter.
697 (let ((symbol (string-to-syntax "_"))
698 (sst (standard-syntax-table)))
701 (if (equal symbol
(aref sst i
))
702 (modify-syntax-entry i
"." table
)))))
703 (modify-syntax-entry ?$
"." table
)
704 (modify-syntax-entry ?%
"." table
)
706 (modify-syntax-entry ?
# "<" table
)
707 (modify-syntax-entry ?
\n ">" table
)
708 (modify-syntax-entry ?
' "\"" table
)
709 (modify-syntax-entry ?
` "$" table
)
711 "Syntax table for Python files.")
713 (defvar python-dotty-syntax-table
714 (let ((table (make-syntax-table python-mode-syntax-table
)))
715 (modify-syntax-entry ?.
"w" table
)
716 (modify-syntax-entry ?_
"w" table
)
718 "Dotty syntax table for Python files.
719 It makes underscores and dots word constituent chars.")
724 (defcustom python-indent-offset
4
725 "Default indentation offset for Python."
730 (defcustom python-indent-guess-indent-offset t
731 "Non-nil tells Python mode to guess `python-indent-offset' value."
736 (defcustom python-indent-guess-indent-offset-verbose t
737 "Non-nil means to emit a warning when indentation guessing fails."
743 (defcustom python-indent-trigger-commands
744 '(indent-for-tab-command yas-expand yas
/expand
)
745 "Commands that might trigger a `python-indent-line' call."
746 :type
'(repeat symbol
)
749 (define-obsolete-variable-alias
750 'python-indent
'python-indent-offset
"24.3")
752 (define-obsolete-variable-alias
753 'python-guess-indent
'python-indent-guess-indent-offset
"24.3")
755 (defvar python-indent-current-level
0
756 "Deprecated var available for compatibility.")
758 (defvar python-indent-levels
'(0)
759 "Deprecated var available for compatibility.")
761 (make-obsolete-variable
762 'python-indent-current-level
763 "The indentation API changed to avoid global state.
764 The function `python-indent-calculate-levels' does not use it
765 anymore. If you were defadvising it and or depended on this
766 variable for indentation customizations, refactor your code to
767 work on `python-indent-calculate-indentation' instead."
770 (make-obsolete-variable
771 'python-indent-levels
772 "The indentation API changed to avoid global state.
773 The function `python-indent-calculate-levels' does not use it
774 anymore. If you were defadvising it and or depended on this
775 variable for indentation customizations, refactor your code to
776 work on `python-indent-calculate-indentation' instead."
779 (defun python-indent-guess-indent-offset ()
780 "Guess and set `python-indent-offset' for the current buffer."
785 (goto-char (point-min))
787 (while (and (not block-end
)
789 (python-rx line-start block-start
) nil t
))
791 (not (python-syntax-context-type))
793 (goto-char (line-end-position))
794 (python-util-forward-comment -
1)
795 (if (equal (char-before) ?
:)
798 (when (python-info-block-continuation-line-p)
799 (while (and (python-info-continuation-line-p)
802 (python-util-forward-comment -
1)
803 (when (equal (char-before) ?
:)
805 (setq block-end
(point-marker))))
808 (goto-char block-end
)
809 (python-util-forward-comment)
810 (current-indentation))))
811 (if (and indentation
(not (zerop indentation
)))
812 (set (make-local-variable 'python-indent-offset
) indentation
)
813 (when python-indent-guess-indent-offset-verbose
814 (message "Can't guess python-indent-offset, using defaults: %s"
815 python-indent-offset
))))))))
817 (defun python-indent-context ()
818 "Get information about the current indentation context.
819 Context is returned in a cons with the form (STATUS . START).
821 STATUS can be one of the following:
827 - Point is after a comment line.
828 - START is the position of the \"#\" character.
830 - Point is inside string.
831 - START is the position of the first quote that starts it.
833 - No possible indentation case matches.
834 - START is always zero.
837 - Fallback case when point is inside paren.
838 - START is the first non space char position *after* the open paren.
839 :inside-paren-at-closing-nested-paren
840 - Point is on a line that contains a nested paren closer.
841 - START is the position of the open paren it closes.
842 :inside-paren-at-closing-paren
843 - Point is on a line that contains a paren closer.
844 - START is the position of the open paren.
845 :inside-paren-newline-start
846 - Point is inside a paren with items starting in their own line.
847 - START is the position of the open paren.
848 :inside-paren-newline-start-from-block
849 - Point is inside a paren with items starting in their own line
851 - START is the position of the open paren.
854 - Fallback case when point is after backslash.
855 - START is the char after the position of the backslash.
856 :after-backslash-assignment-continuation
857 - Point is after a backslashed assignment.
858 - START is the char after the position of the backslash.
859 :after-backslash-block-continuation
860 - Point is after a backslashed block continuation.
861 - START is the char after the position of the backslash.
862 :after-backslash-dotted-continuation
863 - Point is after a backslashed dotted continuation. Previous
864 line must contain a dot to align with.
865 - START is the char after the position of the backslash.
866 :after-backslash-first-line
867 - First line following a backslashed continuation.
868 - START is the char after the position of the backslash.
871 - Point is after a line containing a block ender.
872 - START is the position where the ender starts.
874 - Point is after a line starting a block.
875 - START is the position where the block starts.
877 - Point is after a simple line.
878 - START is the position where the previous line starts.
879 :at-dedenter-block-start
880 - Point is on a line starting a dedenter block.
881 - START is the position where the dedenter block starts."
884 (let ((ppss (save-excursion
888 ;; Beginning of buffer.
889 ((= (line-number-at-pos) 1)
892 ((let ((start (python-syntax-context 'string ppss
)))
894 (cons (if (python-info-docstring-p)
896 :inside-string
) start
))))
898 ((let* ((start (python-syntax-context 'paren ppss
))
905 (= (line-number-at-pos)
907 (python-util-forward-comment)
908 (line-number-at-pos))))))))
911 ;; Current line only holds the closing paren.
913 (skip-syntax-forward " ")
914 (when (and (python-syntax-closing-paren-p)
917 (not (python-syntax-context 'paren
))))
918 (cons :inside-paren-at-closing-paren start
))))
919 ;; Current line only holds a closing paren for nested.
921 (back-to-indentation)
922 (python-syntax-closing-paren-p))
923 (cons :inside-paren-at-closing-nested-paren start
))
924 ;; This line starts from a opening block in its own line.
930 (back-to-indentation)
931 (looking-at (python-rx block-start
))))
933 :inside-paren-newline-start-from-block start
))))
935 (cons :inside-paren-newline-start start
))
937 (t (cons :inside-paren
939 (goto-char (1+ start
))
940 (skip-syntax-forward "(" 1)
941 (skip-syntax-forward " ")
944 ((let ((start (when (not (python-syntax-comment-or-string-p ppss
))
945 (python-info-line-ends-backslash-p
946 (1- (line-number-at-pos))))))
949 ;; Continuation of dotted expression.
951 (back-to-indentation)
952 (when (eq (char-after) ?\.
)
953 ;; Move point back until it's not inside a paren.
957 (python-syntax-context 'paren
))))
958 (goto-char (line-end-position))
959 (while (and (search-backward
960 "." (line-beginning-position) t
)
961 (python-syntax-context-type)))
962 ;; Ensure previous statement has dot to align with.
963 (when (and (eq (char-after) ?\.
)
964 (not (python-syntax-context-type)))
965 (cons :after-backslash-dotted-continuation
(point))))))
966 ;; Continuation of block definition.
967 ((let ((block-continuation-start
968 (python-info-block-continuation-line-p)))
969 (when block-continuation-start
971 (goto-char block-continuation-start
)
973 (python-rx block-start
(* space
))
974 (line-end-position) t
)
975 (cons :after-backslash-block-continuation
(point))))))
976 ;; Continuation of assignment.
977 ((let ((assignment-continuation-start
978 (python-info-assignment-continuation-line-p)))
979 (when assignment-continuation-start
981 (goto-char assignment-continuation-start
)
982 (cons :after-backslash-assignment-continuation
(point))))))
983 ;; First line after backslash continuation start.
986 (when (or (= (line-number-at-pos) 1)
987 (not (python-info-beginning-of-backslash
988 (1- (line-number-at-pos)))))
989 (cons :after-backslash-first-line start
))))
991 (t (cons :after-backslash start
))))))
992 ;; After beginning of block.
993 ((let ((start (save-excursion
994 (back-to-indentation)
995 (python-util-forward-comment -
1)
996 (when (equal (char-before) ?
:)
997 (python-nav-beginning-of-block)))))
999 (cons :after-block-start start
))))
1000 ;; At dedenter statement.
1001 ((let ((start (python-info-dedenter-statement-p)))
1003 (cons :at-dedenter-block-start start
))))
1004 ;; After normal line, comment or ender (default case).
1006 (back-to-indentation)
1007 (skip-chars-backward " \t\n")
1010 (python-nav-beginning-of-statement)
1012 (cond ((python-info-current-line-comment-p)
1015 (goto-char (line-end-position))
1016 (python-util-forward-comment -
1)
1017 (python-nav-beginning-of-statement)
1018 (looking-at (python-rx block-ender
)))
1023 (defun python-indent--calculate-indentation ()
1024 "Internal implementation of `python-indent-calculate-indentation'.
1025 May return an integer for the maximum possible indentation at
1026 current context or a list of integers. The latter case is only
1027 happening for :at-dedenter-block-start context since the
1028 possibilities can be narrowed to specific indentation points."
1032 (pcase (python-indent-context)
1033 (`(:no-indent .
,_
) (prog-first-column)) ; usually 0
1038 :inside-paren-at-closing-paren
1039 :inside-paren-at-closing-nested-paren
) .
,start
)
1040 ;; Copy previous indentation.
1042 (current-indentation))
1043 (`(:inside-docstring .
,start
)
1044 (let* ((line-indentation (current-indentation))
1047 (current-indentation))))
1048 (max line-indentation base-indent
)))
1049 (`(,(or :after-block-start
1050 :after-backslash-first-line
1051 :inside-paren-newline-start
) .
,start
)
1052 ;; Add one indentation level.
1054 (+ (current-indentation) python-indent-offset
))
1055 (`(,(or :inside-paren
1056 :after-backslash-block-continuation
1057 :after-backslash-assignment-continuation
1058 :after-backslash-dotted-continuation
) .
,start
)
1059 ;; Use the column given by the context.
1062 (`(:after-block-end .
,start
)
1063 ;; Subtract one indentation level.
1065 (- (current-indentation) python-indent-offset
))
1066 (`(:at-dedenter-block-start .
,_
)
1067 ;; List all possible indentation levels from opening blocks.
1068 (let ((opening-block-start-points
1069 (python-info-dedenter-opening-block-positions)))
1070 (if (not opening-block-start-points
)
1071 (prog-first-column) ; if not found default to first column
1072 (mapcar (lambda (pos)
1075 (current-indentation)))
1076 opening-block-start-points
))))
1077 (`(,(or :inside-paren-newline-start-from-block
) .
,start
)
1078 ;; Add two indentation levels to make the suite stand out.
1080 (+ (current-indentation) (* python-indent-offset
2)))))))
1082 (defun python-indent--calculate-levels (indentation)
1083 "Calculate levels list given INDENTATION.
1084 Argument INDENTATION can either be an integer or a list of
1085 integers. Levels are returned in ascending order, and in the
1086 case INDENTATION is a list, this order is enforced."
1087 (if (listp indentation
)
1088 (sort (copy-sequence indentation
) #'<)
1089 (nconc (number-sequence (prog-first-column) (1- indentation
)
1090 python-indent-offset
)
1091 (list indentation
))))
1093 (defun python-indent--previous-level (levels indentation
)
1094 "Return previous level from LEVELS relative to INDENTATION."
1095 (let* ((levels (sort (copy-sequence levels
) #'>))
1096 (default (car levels
)))
1098 (dolist (level levels
)
1099 (when (funcall #'< level indentation
)
1100 (throw 'return level
)))
1103 (defun python-indent-calculate-indentation (&optional previous
)
1104 "Calculate indentation.
1105 Get indentation of PREVIOUS level when argument is non-nil.
1106 Return the max level of the cycle when indentation reaches the
1108 (let* ((indentation (python-indent--calculate-indentation))
1109 (levels (python-indent--calculate-levels indentation
)))
1111 (python-indent--previous-level levels
(current-indentation))
1113 (apply #'max levels
)
1114 (prog-first-column)))))
1116 (defun python-indent-line (&optional previous
)
1117 "Internal implementation of `python-indent-line-function'.
1118 Use the PREVIOUS level when argument is non-nil, otherwise indent
1119 to the maximum available level. When indentation is the minimum
1120 possible and PREVIOUS is non-nil, cycle back to the maximum
1122 (let ((follow-indentation-p
1123 ;; Check if point is within indentation.
1124 (and (<= (line-beginning-position) (point))
1125 (>= (+ (line-beginning-position)
1126 (current-indentation))
1130 (python-indent-calculate-indentation previous
))
1131 (python-info-dedenter-opening-block-message))
1132 (when follow-indentation-p
1133 (back-to-indentation))))
1135 (defun python-indent-calculate-levels ()
1136 "Return possible indentation levels."
1137 (python-indent--calculate-levels
1138 (python-indent--calculate-indentation)))
1140 (defun python-indent-line-function ()
1141 "`indent-line-function' for Python mode.
1142 When the variable `last-command' is equal to one of the symbols
1143 inside `python-indent-trigger-commands' it cycles possible
1144 indentation levels from right to left."
1146 (and (memq this-command python-indent-trigger-commands
)
1147 (eq last-command this-command
))))
1149 (defun python-indent-dedent-line ()
1150 "De-indent current line."
1152 (when (and (not (bolp))
1153 (not (python-syntax-comment-or-string-p))
1154 (= (current-indentation) (current-column)))
1155 (python-indent-line t
)
1158 (defun python-indent-dedent-line-backspace (arg)
1159 "De-indent current line.
1160 Argument ARG is passed to `backward-delete-char-untabify' when
1161 point is not in between the indentation."
1163 (unless (python-indent-dedent-line)
1164 (backward-delete-char-untabify arg
)))
1166 (put 'python-indent-dedent-line-backspace
'delete-selection
'supersede
)
1168 (defun python-indent-region (start end
)
1169 "Indent a Python region automagically.
1171 Called from a program, START and END specify the region to indent."
1172 (let ((deactivate-mark nil
))
1175 (setq end
(point-marker))
1177 (or (bolp) (forward-line 1))
1178 (while (< (point) end
)
1179 (or (and (bolp) (eolp))
1181 ;; Skip if previous line is empty or a comment.
1183 (let ((line-is-comment-p
1184 (python-info-current-line-comment-p)))
1187 (or (and (python-info-current-line-comment-p)
1188 ;; Unless this line is a comment too.
1189 (not line-is-comment-p
))
1190 (python-info-current-line-empty-p)))))
1191 ;; Don't mess with strings, unless it's the
1192 ;; enclosing set of quotes or a docstring.
1193 (or (not (python-syntax-context 'string
))
1197 (current-indentation)
1198 (python-syntax-count-quotes (char-after) (point))))
1199 (string-to-syntax "|"))
1200 (python-info-docstring-p))
1201 ;; Skip if current line is a block start, a
1202 ;; dedenter or block ender.
1204 (back-to-indentation)
1207 (or block-start dedenter block-ender
))))))
1208 (python-indent-line)))
1210 (move-marker end nil
))))
1212 (defun python-indent-shift-left (start end
&optional count
)
1213 "Shift lines contained in region START END by COUNT columns to the left.
1214 COUNT defaults to `python-indent-offset'. If region isn't
1215 active, the current line is shifted. The shifted region includes
1216 the lines in which START and END lie. An error is signaled if
1217 any lines in the region are indented less than COUNT columns."
1220 (list (region-beginning) (region-end) current-prefix-arg
)
1221 (list (line-beginning-position) (line-end-position) current-prefix-arg
)))
1223 (setq count
(prefix-numeric-value count
))
1224 (setq count python-indent-offset
))
1226 (let ((deactivate-mark nil
))
1229 (while (< (point) end
)
1230 (if (and (< (current-indentation) count
)
1231 (not (looking-at "[ \t]*$")))
1232 (user-error "Can't shift all lines enough"))
1234 (indent-rigidly start end
(- count
))))))
1236 (defun python-indent-shift-right (start end
&optional count
)
1237 "Shift lines contained in region START END by COUNT columns to the right.
1238 COUNT defaults to `python-indent-offset'. If region isn't
1239 active, the current line is shifted. The shifted region includes
1240 the lines in which START and END lie."
1243 (list (region-beginning) (region-end) current-prefix-arg
)
1244 (list (line-beginning-position) (line-end-position) current-prefix-arg
)))
1245 (let ((deactivate-mark nil
))
1246 (setq count
(if count
(prefix-numeric-value count
)
1247 python-indent-offset
))
1248 (indent-rigidly start end count
)))
1250 (defun python-indent-post-self-insert-function ()
1251 "Adjust indentation after insertion of some characters.
1252 This function is intended to be added to `post-self-insert-hook.'
1253 If a line renders a paren alone, after adding a char before it,
1254 the line will be re-indented automatically if needed."
1255 (when (and electric-indent-mode
1256 (eq (char-before) last-command-event
))
1258 ;; Electric indent inside parens
1261 (let ((paren-start (python-syntax-context 'paren
)))
1262 ;; Check that point is inside parens.
1265 ;; Filter the case where input is happening in the same
1266 ;; line where the open paren is.
1267 (= (line-number-at-pos)
1268 (line-number-at-pos paren-start
)))))
1269 ;; When content has been added before the closing paren or a
1270 ;; comma has been inserted, it's ok to do the trick.
1272 (memq (char-after) '(?\
) ?\
] ?\
}))
1273 (eq (char-before) ?
,)))
1275 (goto-char (line-beginning-position))
1276 (let ((indentation (python-indent-calculate-indentation)))
1277 (when (and (numberp indentation
) (< (current-indentation) indentation
))
1278 (indent-line-to indentation
)))))
1280 ((and (eq ?
: last-command-event
)
1281 (memq ?
: electric-indent-chars
)
1282 (not current-prefix-arg
)
1283 ;; Trigger electric colon only at end of line
1285 ;; Avoid re-indenting on extra colon
1286 (not (equal ?
: (char-before (1- (point)))))
1287 (not (python-syntax-comment-or-string-p)))
1288 ;; Just re-indent dedenters
1289 (let ((dedenter-pos (python-info-dedenter-statement-p))
1290 (current-pos (point)))
1293 (goto-char dedenter-pos
)
1294 (python-indent-line)
1295 (unless (= (line-number-at-pos dedenter-pos
)
1296 (line-number-at-pos current-pos
))
1297 ;; Reindent region if this is a multiline statement
1298 (python-indent-region dedenter-pos current-pos
)))))))))
1303 (defun python-mark-defun (&optional allow-extend
)
1304 "Put mark at end of this defun, point at beginning.
1305 The defun marked is the one that contains point or follows point.
1307 Interactively (or with ALLOW-EXTEND non-nil), if this command is
1308 repeated or (in Transient Mark mode) if the mark is active, it
1309 marks the next defun after the ones already marked."
1311 (when (python-info-looking-at-beginning-of-defun)
1313 (mark-defun allow-extend))
1318 (defvar python-nav-beginning-of-defun-regexp
1319 (python-rx line-start
(* space
) defun
(+ space
) (group symbol-name
))
1320 "Regexp matching class or function definition.
1321 The name of the defun should be grouped so it can be retrieved
1322 via `match-string'.")
1324 (defun python-nav--beginning-of-defun (&optional arg
)
1325 "Internal implementation of `python-nav-beginning-of-defun'.
1326 With positive ARG search backwards, else search forwards."
1327 (when (or (null arg
) (= arg
0)) (setq arg
1))
1328 (let* ((re-search-fn (if (> arg
0)
1329 #'re-search-backward
1330 #'re-search-forward
))
1331 (line-beg-pos (line-beginning-position))
1332 (line-content-start (+ line-beg-pos
(current-indentation)))
1333 (pos (point-marker))
1338 (not (python-info-looking-at-beginning-of-defun))
1339 (python-nav-backward-block)))
1340 (or (and (python-info-looking-at-beginning-of-defun)
1341 (+ (current-indentation) python-indent-offset
))
1345 (when (and (< arg
0)
1346 (python-info-looking-at-beginning-of-defun))
1348 (while (and (funcall re-search-fn
1349 python-nav-beginning-of-defun-regexp nil t
)
1350 (or (python-syntax-context-type)
1351 ;; Handle nested defuns when moving
1352 ;; backwards by checking indentation.
1354 (not (= (current-indentation) 0))
1355 (>= (current-indentation) beg-indentation
)))))
1356 (and (python-info-looking-at-beginning-of-defun)
1357 (or (not (= (line-number-at-pos pos
)
1358 (line-number-at-pos)))
1359 (and (>= (point) line-beg-pos
)
1360 (<= (point) line-content-start
)
1361 (> pos line-content-start
)))))))
1363 (or (beginning-of-line 1) t
)
1364 (and (goto-char pos
) nil
))))
1366 (defun python-nav-beginning-of-defun (&optional arg
)
1367 "Move point to `beginning-of-defun'.
1368 With positive ARG search backwards else search forward.
1369 ARG nil or 0 defaults to 1. When searching backwards,
1370 nested defuns are handled with care depending on current
1371 point position. Return non-nil if point is moved to
1372 `beginning-of-defun'."
1373 (when (or (null arg
) (= arg
0)) (setq arg
1))
1375 (while (and (not (= arg
0))
1376 (let ((keep-searching-p
1377 (python-nav--beginning-of-defun arg)))
1378 (when (and keep-searching-p
(null found
))
1381 (setq arg
(if (> arg
0) (1- arg
) (1+ arg
))))
1384 (defun python-nav-end-of-defun ()
1385 "Move point to the end of def or class.
1386 Returns nil if point is not in a def or class."
1388 (let ((beg-defun-indent)
1390 (when (or (python-info-looking-at-beginning-of-defun)
1391 (python-nav-beginning-of-defun 1)
1392 (python-nav-beginning-of-defun -1))
1393 (setq beg-defun-indent
(current-indentation))
1395 (python-nav-end-of-statement)
1396 (python-util-forward-comment 1)
1397 (and (> (current-indentation) beg-defun-indent
)
1399 (python-util-forward-comment -
1)
1401 ;; Ensure point moves forward.
1402 (and (> beg-pos
(point)) (goto-char beg-pos
)))))
1404 (defun python-nav--syntactically (fn poscompfn
&optional contextfn
)
1405 "Move point using FN avoiding places with specific context.
1406 FN must take no arguments. POSCOMPFN is a two arguments function
1407 used to compare current and previous point after it is moved
1408 using FN, this is normally a less-than or greater-than
1409 comparison. Optional argument CONTEXTFN defaults to
1410 `python-syntax-context-type' and is used for checking current
1411 point context, it must return a non-nil value if this point must
1413 (let ((contextfn (or contextfn
'python-syntax-context-type
))
1414 (start-pos (point-marker))
1419 (and (funcall fn
) (point-marker)))
1420 (context (funcall contextfn
)))
1421 (cond ((and (not context
) newpos
1422 (or (and (not prev-pos
) newpos
)
1423 (and prev-pos newpos
1424 (funcall poscompfn newpos prev-pos
))))
1425 (throw 'found
(point-marker)))
1426 ((and newpos context
)
1427 (setq prev-pos
(point)))
1428 (t (when (not newpos
) (goto-char start-pos
))
1429 (throw 'found nil
))))))))
1431 (defun python-nav--forward-defun (arg)
1432 "Internal implementation of python-nav-{backward,forward}-defun.
1433 Uses ARG to define which function to call, and how many times
1436 (while (and (> arg
0)
1438 (python-nav--syntactically
1441 python-nav-beginning-of-defun-regexp nil t
))
1443 (setq arg
(1- arg
)))
1444 (while (and (< arg
0)
1446 (python-nav--syntactically
1449 python-nav-beginning-of-defun-regexp nil t
))
1451 (setq arg
(1+ arg
)))
1454 (defun python-nav-backward-defun (&optional arg
)
1455 "Navigate to closer defun backward ARG times.
1456 Unlikely `python-nav-beginning-of-defun' this doesn't care about
1457 nested definitions."
1459 (python-nav--forward-defun (- (or arg
1))))
1461 (defun python-nav-forward-defun (&optional arg
)
1462 "Navigate to closer defun forward ARG times.
1463 Unlikely `python-nav-beginning-of-defun' this doesn't care about
1464 nested definitions."
1466 (python-nav--forward-defun (or arg
1)))
1468 (defun python-nav-beginning-of-statement ()
1469 "Move to start of current statement."
1471 (back-to-indentation)
1472 (let* ((ppss (syntax-ppss))
1475 (python-syntax-context 'paren ppss
)
1476 (python-syntax-context 'string ppss
))))
1479 (goto-char context-point
)
1480 (python-nav-beginning-of-statement))
1483 (python-info-line-ends-backslash-p))
1485 (python-nav-beginning-of-statement))))
1488 (defun python-nav-end-of-statement (&optional noend
)
1489 "Move to end of current statement.
1490 Optional argument NOEND is internal and makes the logic to not
1491 jump to the end of line when moving forward searching for the end
1494 (let (string-start bs-pos
)
1495 (while (and (or noend
(goto-char (line-end-position)))
1497 (cond ((setq string-start
(python-syntax-context 'string
))
1498 (goto-char string-start
)
1499 (if (python-syntax-context 'paren
)
1500 ;; Ended up inside a paren, roll again.
1501 (python-nav-end-of-statement t
)
1502 ;; This is not inside a paren, move to the
1503 ;; end of this string.
1504 (goto-char (+ (point)
1505 (python-syntax-count-quotes
1506 (char-after (point)) (point))))
1507 (or (re-search-forward (rx (syntax string-delimiter
)) nil t
)
1508 (goto-char (point-max)))))
1509 ((python-syntax-context 'paren
)
1510 ;; The statement won't end before we've escaped
1511 ;; at least one level of parenthesis.
1513 (goto-char (scan-lists (point) 1 -
1))
1514 (scan-error (goto-char (nth 3 err
)))))
1515 ((setq bs-pos
(python-info-line-ends-backslash-p))
1517 (forward-line 1))))))
1520 (defun python-nav-backward-statement (&optional arg
)
1521 "Move backward to previous statement.
1522 With ARG, repeat. See `python-nav-forward-statement'."
1524 (or arg
(setq arg
1))
1525 (python-nav-forward-statement (- arg
)))
1527 (defun python-nav-forward-statement (&optional arg
)
1528 "Move forward to next statement.
1529 With ARG, repeat. With negative argument, move ARG times
1530 backward to previous statement."
1532 (or arg
(setq arg
1))
1534 (python-nav-end-of-statement)
1535 (python-util-forward-comment)
1536 (python-nav-beginning-of-statement)
1537 (setq arg
(1- arg
)))
1539 (python-nav-beginning-of-statement)
1540 (python-util-forward-comment -
1)
1541 (python-nav-beginning-of-statement)
1542 (setq arg
(1+ arg
))))
1544 (defun python-nav-beginning-of-block ()
1545 "Move to start of current block."
1547 (let ((starting-pos (point)))
1549 (python-nav-beginning-of-statement)
1550 (looking-at (python-rx block-start
)))
1552 ;; Go to first line beginning a statement
1553 (while (and (not (bobp))
1554 (or (and (python-nav-beginning-of-statement) nil
)
1555 (python-info-current-line-comment-p)
1556 (python-info-current-line-empty-p)))
1558 (let ((block-matching-indent
1559 (- (current-indentation) python-indent-offset
)))
1561 (and (python-nav-backward-block)
1562 (> (current-indentation) block-matching-indent
)))
1563 (if (and (looking-at (python-rx block-start
))
1564 (= (current-indentation) block-matching-indent
))
1566 (and (goto-char starting-pos
) nil
))))))
1568 (defun python-nav-end-of-block ()
1569 "Move to end of current block."
1571 (when (python-nav-beginning-of-block)
1572 (let ((block-indentation (current-indentation)))
1573 (python-nav-end-of-statement)
1574 (while (and (forward-line 1)
1576 (or (and (> (current-indentation) block-indentation
)
1577 (or (python-nav-end-of-statement) t
))
1578 (python-info-current-line-comment-p)
1579 (python-info-current-line-empty-p))))
1580 (python-util-forward-comment -
1)
1583 (defun python-nav-backward-block (&optional arg
)
1584 "Move backward to previous block of code.
1585 With ARG, repeat. See `python-nav-forward-block'."
1587 (or arg
(setq arg
1))
1588 (python-nav-forward-block (- arg
)))
1590 (defun python-nav-forward-block (&optional arg
)
1591 "Move forward to next block of code.
1592 With ARG, repeat. With negative argument, move ARG times
1593 backward to previous block."
1595 (or arg
(setq arg
1))
1596 (let ((block-start-regexp
1597 (python-rx line-start
(* whitespace
) block-start
))
1598 (starting-pos (point)))
1600 (python-nav-end-of-statement)
1602 (re-search-forward block-start-regexp nil t
)
1603 (python-syntax-context-type)))
1604 (setq arg
(1- arg
)))
1606 (python-nav-beginning-of-statement)
1608 (re-search-backward block-start-regexp nil t
)
1609 (python-syntax-context-type)))
1610 (setq arg
(1+ arg
)))
1611 (python-nav-beginning-of-statement)
1612 (if (not (looking-at (python-rx block-start
)))
1613 (and (goto-char starting-pos
) nil
)
1614 (and (not (= (point) starting-pos
)) (point-marker)))))
1616 (defun python-nav--lisp-forward-sexp (&optional arg
)
1617 "Standard version `forward-sexp'.
1618 It ignores completely the value of `forward-sexp-function' by
1619 setting it to nil before calling `forward-sexp'. With positive
1620 ARG move forward only one sexp, else move backwards."
1621 (let ((forward-sexp-function)
1622 (arg (if (or (not arg
) (> arg
0)) 1 -
1)))
1623 (forward-sexp arg
)))
1625 (defun python-nav--lisp-forward-sexp-safe (&optional arg
)
1626 "Safe version of standard `forward-sexp'.
1627 When at end of sexp (i.e. looking at a opening/closing paren)
1628 skips it instead of throwing an error. With positive ARG move
1629 forward only one sexp, else move backwards."
1630 (let* ((arg (if (or (not arg
) (> arg
0)) 1 -
1))
1632 (if (> arg
0) (python-rx close-paren
) (python-rx open-paren
)))
1634 (if (> arg
0) #'re-search-forward
#'re-search-backward
)))
1636 (python-nav--lisp-forward-sexp arg
)
1638 (while (and (funcall search-fn paren-regexp nil t
)
1639 (python-syntax-context 'paren
)))))))
1641 (defun python-nav--forward-sexp (&optional dir safe skip-parens-p
)
1642 "Move to forward sexp.
1643 With positive optional argument DIR direction move forward, else
1644 backwards. When optional argument SAFE is non-nil do not throw
1645 errors when at end of sexp, skip it instead. With optional
1646 argument SKIP-PARENS-P force sexp motion to ignore parenthesized
1647 expressions when looking at them in either direction."
1648 (setq dir
(or dir
1))
1650 (let* ((forward-p (if (> dir
0)
1651 (and (setq dir
1) t
)
1652 (and (setq dir -
1) nil
)))
1653 (context-type (python-syntax-context-type)))
1655 ((memq context-type
'(string comment
))
1656 ;; Inside of a string, get out of it.
1657 (let ((forward-sexp-function))
1658 (forward-sexp dir
)))
1659 ((and (not skip-parens-p
)
1660 (or (eq context-type
'paren
)
1662 (eq (syntax-class (syntax-after (point)))
1663 (car (string-to-syntax "(")))
1664 (eq (syntax-class (syntax-after (1- (point))))
1665 (car (string-to-syntax ")"))))))
1666 ;; Inside a paren or looking at it, lisp knows what to do.
1668 (python-nav--lisp-forward-sexp-safe dir
)
1669 (python-nav--lisp-forward-sexp dir
)))
1671 ;; This part handles the lispy feel of
1672 ;; `python-nav-forward-sexp'. Knowing everything about the
1673 ;; current context and the context of the next sexp tries to
1674 ;; follow the lisp sexp motion commands in a symmetric manner.
1677 ((python-info-beginning-of-block-p) 'block-start
)
1678 ((python-info-end-of-block-p) 'block-end
)
1679 ((python-info-beginning-of-statement-p) 'statement-start
)
1680 ((python-info-end-of-statement-p) 'statement-end
)))
1684 (python-nav--lisp-forward-sexp-safe dir
)
1685 (python-nav--lisp-forward-sexp dir
))
1689 (goto-char next-sexp-pos
)
1691 ((python-info-beginning-of-block-p) 'block-start
)
1692 ((python-info-end-of-block-p) 'block-end
)
1693 ((python-info-beginning-of-statement-p) 'statement-start
)
1694 ((python-info-end-of-statement-p) 'statement-end
)
1695 ((python-info-statement-starts-block-p) 'starts-block
)
1696 ((python-info-statement-ends-block-p) 'ends-block
)))))
1698 (cond ((and (not (eobp))
1699 (python-info-current-line-empty-p))
1700 (python-util-forward-comment dir
)
1701 (python-nav--forward-sexp dir safe skip-parens-p
))
1702 ((eq context
'block-start
)
1703 (python-nav-end-of-block))
1704 ((eq context
'statement-start
)
1705 (python-nav-end-of-statement))
1706 ((and (memq context
'(statement-end block-end
))
1707 (eq next-sexp-context
'ends-block
))
1708 (goto-char next-sexp-pos
)
1709 (python-nav-end-of-block))
1710 ((and (memq context
'(statement-end block-end
))
1711 (eq next-sexp-context
'starts-block
))
1712 (goto-char next-sexp-pos
)
1713 (python-nav-end-of-block))
1714 ((memq context
'(statement-end block-end
))
1715 (goto-char next-sexp-pos
)
1716 (python-nav-end-of-statement))
1717 (t (goto-char next-sexp-pos
)))
1718 (cond ((and (not (bobp))
1719 (python-info-current-line-empty-p))
1720 (python-util-forward-comment dir
)
1721 (python-nav--forward-sexp dir safe skip-parens-p
))
1722 ((eq context
'block-end
)
1723 (python-nav-beginning-of-block))
1724 ((eq context
'statement-end
)
1725 (python-nav-beginning-of-statement))
1726 ((and (memq context
'(statement-start block-start
))
1727 (eq next-sexp-context
'starts-block
))
1728 (goto-char next-sexp-pos
)
1729 (python-nav-beginning-of-block))
1730 ((and (memq context
'(statement-start block-start
))
1731 (eq next-sexp-context
'ends-block
))
1732 (goto-char next-sexp-pos
)
1733 (python-nav-beginning-of-block))
1734 ((memq context
'(statement-start block-start
))
1735 (goto-char next-sexp-pos
)
1736 (python-nav-beginning-of-statement))
1737 (t (goto-char next-sexp-pos
))))))))))
1739 (defun python-nav-forward-sexp (&optional arg safe skip-parens-p
)
1740 "Move forward across expressions.
1741 With ARG, do it that many times. Negative arg -N means move
1742 backward N times. When optional argument SAFE is non-nil do not
1743 throw errors when at end of sexp, skip it instead. With optional
1744 argument SKIP-PARENS-P force sexp motion to ignore parenthesized
1745 expressions when looking at them in either direction (forced to t
1746 in interactive calls)."
1748 (or arg
(setq arg
1))
1749 ;; Do not follow parens on interactive calls. This hack to detect
1750 ;; if the function was called interactively copes with the way
1751 ;; `forward-sexp' works by calling `forward-sexp-function', losing
1752 ;; interactive detection by checking `current-prefix-arg'. The
1753 ;; reason to make this distinction is that lisp functions like
1754 ;; `blink-matching-open' get confused causing issues like the one in
1755 ;; Bug#16191. With this approach the user gets a symmetric behavior
1756 ;; when working interactively while called functions expecting
1757 ;; paren-based sexp motion work just fine.
1761 (memq real-this-command
1763 #'forward-sexp
#'backward-sexp
1764 #'python-nav-forward-sexp
#'python-nav-backward-sexp
1765 #'python-nav-forward-sexp-safe
#'python-nav-backward-sexp
))))
1767 (python-nav--forward-sexp 1 safe skip-parens-p
)
1768 (setq arg
(1- arg
)))
1770 (python-nav--forward-sexp -
1 safe skip-parens-p
)
1771 (setq arg
(1+ arg
))))
1773 (defun python-nav-backward-sexp (&optional arg safe skip-parens-p
)
1774 "Move backward across expressions.
1775 With ARG, do it that many times. Negative arg -N means move
1776 forward N times. When optional argument SAFE is non-nil do not
1777 throw errors when at end of sexp, skip it instead. With optional
1778 argument SKIP-PARENS-P force sexp motion to ignore parenthesized
1779 expressions when looking at them in either direction (forced to t
1780 in interactive calls)."
1782 (or arg
(setq arg
1))
1783 (python-nav-forward-sexp (- arg
) safe skip-parens-p
))
1785 (defun python-nav-forward-sexp-safe (&optional arg skip-parens-p
)
1786 "Move forward safely across expressions.
1787 With ARG, do it that many times. Negative arg -N means move
1788 backward N times. With optional argument SKIP-PARENS-P force
1789 sexp motion to ignore parenthesized expressions when looking at
1790 them in either direction (forced to t in interactive calls)."
1792 (python-nav-forward-sexp arg t skip-parens-p
))
1794 (defun python-nav-backward-sexp-safe (&optional arg skip-parens-p
)
1795 "Move backward safely across expressions.
1796 With ARG, do it that many times. Negative arg -N means move
1797 forward N times. With optional argument SKIP-PARENS-P force sexp
1798 motion to ignore parenthesized expressions when looking at them in
1799 either direction (forced to t in interactive calls)."
1801 (python-nav-backward-sexp arg t skip-parens-p
))
1803 (defun python-nav--up-list (&optional dir
)
1804 "Internal implementation of `python-nav-up-list'.
1805 DIR is always 1 or -1 and comes sanitized from
1806 `python-nav-up-list' calls."
1807 (let ((context (python-syntax-context-type))
1808 (forward-p (> dir
0)))
1810 ((memq context
'(string comment
)))
1811 ((eq context
'paren
)
1812 (let ((forward-sexp-function))
1814 ((and forward-p
(python-info-end-of-block-p))
1815 (let ((parent-end-pos
1817 (let ((indentation (and
1818 (python-nav-beginning-of-block)
1819 (current-indentation))))
1820 (while (and indentation
1822 (>= (current-indentation) indentation
)
1823 (python-nav-backward-block)))
1824 (python-nav-end-of-block)))))
1825 (and (> (or parent-end-pos
(point)) (point))
1826 (goto-char parent-end-pos
))))
1827 (forward-p (python-nav-end-of-block))
1828 ((and (not forward-p
)
1829 (> (current-indentation) 0)
1830 (python-info-beginning-of-block-p))
1831 (let ((prev-block-pos
1833 (let ((indentation (current-indentation)))
1834 (while (and (python-nav-backward-block)
1835 (>= (current-indentation) indentation
))))
1837 (and (> (point) prev-block-pos
)
1838 (goto-char prev-block-pos
))))
1839 ((not forward-p
) (python-nav-beginning-of-block)))))
1841 (defun python-nav-up-list (&optional arg
)
1842 "Move forward out of one level of parentheses (or blocks).
1843 With ARG, do this that many times.
1844 A negative argument means move backward but still to a less deep spot.
1845 This command assumes point is not in a string or comment."
1847 (or arg
(setq arg
1))
1849 (python-nav--up-list 1)
1850 (setq arg
(1- arg
)))
1852 (python-nav--up-list -
1)
1853 (setq arg
(1+ arg
))))
1855 (defun python-nav-backward-up-list (&optional arg
)
1856 "Move backward out of one level of parentheses (or blocks).
1857 With ARG, do this that many times.
1858 A negative argument means move forward but still to a less deep spot.
1859 This command assumes point is not in a string or comment."
1861 (or arg
(setq arg
1))
1862 (python-nav-up-list (- arg
)))
1864 (defun python-nav-if-name-main ()
1865 "Move point at the beginning the __main__ block.
1866 When \"if __name__ == \\='__main__\\=':\" is found returns its
1867 position, else returns nil."
1869 (let ((point (point))
1870 (found (catch 'found
1871 (goto-char (point-min))
1872 (while (re-search-forward
1873 (python-rx line-start
1875 "__name__" (+ space
)
1877 (group-n 1 (or ?
\" ?
\'))
1878 "__main__" (backref 1) (* space
) ":")
1880 (when (not (python-syntax-context-type))
1882 (throw 'found t
))))))
1885 (ignore (goto-char point
)))))
1888 ;;; Shell integration
1890 (defcustom python-shell-buffer-name
"Python"
1891 "Default buffer name for Python interpreter."
1896 (defcustom python-shell-interpreter
"python"
1897 "Default Python interpreter for shell."
1901 (defcustom python-shell-internal-buffer-name
"Python Internal"
1902 "Default buffer name for the Internal Python interpreter."
1907 (defcustom python-shell-interpreter-args
"-i"
1908 "Default arguments for the Python interpreter."
1912 (defcustom python-shell-interpreter-interactive-arg
"-i"
1913 "Interpreter argument to force it to run interactively."
1917 (defcustom python-shell-prompt-detect-enabled t
1918 "Non-nil enables autodetection of interpreter prompts."
1923 (defcustom python-shell-prompt-detect-failure-warning t
1924 "Non-nil enables warnings when detection of prompts fail."
1929 (defcustom python-shell-prompt-input-regexps
1930 '(">>> " "\\.\\.\\. " ; Python
1931 "In \\[[0-9]+\\]: " ; IPython
1932 " \\.\\.\\.: " ; IPython
1933 ;; Using ipdb outside IPython may fail to cleanup and leave static
1934 ;; IPython prompts activated, this adds some safeguard for that.
1935 "In : " "\\.\\.\\.: ")
1936 "List of regular expressions matching input prompts."
1937 :type
'(repeat string
)
1940 (defcustom python-shell-prompt-output-regexps
1942 "Out\\[[0-9]+\\]: " ; IPython
1943 "Out :") ; ipdb safeguard
1944 "List of regular expressions matching output prompts."
1945 :type
'(repeat string
)
1948 (defcustom python-shell-prompt-regexp
">>> "
1949 "Regular expression matching top level input prompt of Python shell.
1950 It should not contain a caret (^) at the beginning."
1953 (defcustom python-shell-prompt-block-regexp
"\\.\\.\\. "
1954 "Regular expression matching block input prompt of Python shell.
1955 It should not contain a caret (^) at the beginning."
1958 (defcustom python-shell-prompt-output-regexp
""
1959 "Regular expression matching output prompt of Python shell.
1960 It should not contain a caret (^) at the beginning."
1963 (defcustom python-shell-prompt-pdb-regexp
"[(<]*[Ii]?[Pp]db[>)]+ "
1964 "Regular expression matching pdb input prompt of Python shell.
1965 It should not contain a caret (^) at the beginning."
1968 (define-obsolete-variable-alias
1969 'python-shell-enable-font-lock
'python-shell-font-lock-enable
"25.1")
1971 (defcustom python-shell-font-lock-enable t
1972 "Should syntax highlighting be enabled in the Python shell buffer?
1973 Restart the Python shell after changing this variable for it to take effect."
1978 (defcustom python-shell-unbuffered t
1979 "Should shell output be unbuffered?.
1980 When non-nil, this may prevent delayed and missing output in the
1981 Python shell. See commentary for details."
1986 (defcustom python-shell-process-environment nil
1987 "List of overridden environment variables for subprocesses to inherit.
1988 Each element should be a string of the form ENVVARNAME=VALUE.
1989 When this variable is non-nil, values are exported into the
1990 process environment before starting it. Any variables already
1991 present in the current environment are superseded by variables
1993 :type
'(repeat string
)
1996 (defcustom python-shell-extra-pythonpaths nil
1997 "List of extra pythonpaths for Python shell.
1998 When this variable is non-nil, values added at the beginning of
1999 the PYTHONPATH before starting processes. Any values present
2000 here that already exists in PYTHONPATH are moved to the beginning
2001 of the list so that they are prioritized when looking for
2003 :type
'(repeat string
)
2006 (defcustom python-shell-exec-path nil
2007 "List of paths for searching executables.
2008 When this variable is non-nil, values added at the beginning of
2009 the PATH before starting processes. Any values present here that
2010 already exists in PATH are moved to the beginning of the list so
2011 that they are prioritized when looking for executables."
2012 :type
'(repeat string
)
2015 (defcustom python-shell-remote-exec-path nil
2016 "List of paths to be ensured remotely for searching executables.
2017 When this variable is non-nil, values are exported into remote
2018 hosts PATH before starting processes. Values defined in
2019 `python-shell-exec-path' will take precedence to paths defined
2020 here. Normally you wont use this variable directly unless you
2021 plan to ensure a particular set of paths to all Python shell
2022 executed through tramp connections."
2024 :type
'(repeat string
)
2027 (defcustom python-shell-virtualenv-root nil
2028 "Path to virtualenv root.
2029 This variable, when set to a string, makes the environment to be
2030 modified such that shells are started within the specified
2032 :type
'(choice (const nil
) string
)
2035 (define-obsolete-variable-alias
2036 'python-shell-virtualenv-path
'python-shell-virtualenv-root
"25.1")
2038 (defcustom python-shell-setup-codes nil
2039 "List of code run by `python-shell-send-setup-codes'."
2040 :type
'(repeat symbol
)
2043 (defcustom python-shell-compilation-regexp-alist
2044 `((,(rx line-start
(1+ (any " \t")) "File \""
2045 (group (1+ (not (any "\"<")))) ; avoid `<stdin>' &c
2046 "\", line " (group (1+ digit
)))
2048 (,(rx " in file " (group (1+ not-newline
)) " on line "
2051 (,(rx line-start
"> " (group (1+ (not (any "(\"<"))))
2052 "(" (group (1+ digit
)) ")" (1+ (not (any "("))) "()")
2054 "`compilation-error-regexp-alist' for inferior Python."
2055 :type
'(alist string
)
2058 (defmacro python-shell--add-to-path-with-priority
(pathvar paths
)
2059 "Modify PATHVAR and ensure PATHS are added only once at beginning."
2060 `(dolist (path (reverse ,paths
))
2061 (cl-delete path
,pathvar
:test
#'string
=)
2062 (cl-pushnew path
,pathvar
:test
#'string
=)))
2064 (defun python-shell-calculate-pythonpath ()
2065 "Calculate the PYTHONPATH using `python-shell-extra-pythonpaths'."
2068 (or (getenv "PYTHONPATH") "") path-separator
'omit
)))
2069 (python-shell--add-to-path-with-priority
2070 pythonpath python-shell-extra-pythonpaths
)
2071 (mapconcat 'identity pythonpath path-separator
)))
2073 (defun python-shell-calculate-process-environment ()
2074 "Calculate `process-environment' or `tramp-remote-process-environment'.
2075 Prepends `python-shell-process-environment', sets extra
2076 pythonpaths from `python-shell-extra-pythonpaths' and sets a few
2077 virtualenv related vars. If `default-directory' points to a
2078 remote host, the returned value is intended for
2079 `tramp-remote-process-environment'."
2080 (let* ((remote-p (file-remote-p default-directory
))
2081 (process-environment (if remote-p
2082 tramp-remote-process-environment
2083 process-environment
))
2084 (virtualenv (when python-shell-virtualenv-root
2085 (directory-file-name python-shell-virtualenv-root
))))
2086 (dolist (env python-shell-process-environment
)
2087 (pcase-let ((`(,key
,value
) (split-string env
"=")))
2088 (setenv key value
)))
2089 (when python-shell-unbuffered
2090 (setenv "PYTHONUNBUFFERED" "1"))
2091 (when python-shell-extra-pythonpaths
2092 (setenv "PYTHONPATH" (python-shell-calculate-pythonpath)))
2093 (if (not virtualenv
)
2095 (setenv "PYTHONHOME" nil
)
2096 (setenv "VIRTUAL_ENV" virtualenv
))
2097 process-environment
))
2099 (defun python-shell-calculate-exec-path ()
2100 "Calculate `exec-path'.
2101 Prepends `python-shell-exec-path' and adds the binary directory
2102 for virtualenv if `python-shell-virtualenv-root' is set. If
2103 `default-directory' points to a remote host, the returned value
2104 appends `python-shell-remote-exec-path' instead of `exec-path'."
2105 (let ((new-path (copy-sequence
2106 (if (file-remote-p default-directory
)
2107 python-shell-remote-exec-path
2109 (python-shell--add-to-path-with-priority
2110 new-path python-shell-exec-path
)
2111 (if (not python-shell-virtualenv-root
)
2113 (python-shell--add-to-path-with-priority
2115 (list (expand-file-name "bin" python-shell-virtualenv-root
)))
2118 (defun python-shell-tramp-refresh-remote-path (vec paths
)
2119 "Update VEC's remote-path giving PATHS priority."
2120 (let ((remote-path (tramp-get-connection-property vec
"remote-path" nil
)))
2122 (python-shell--add-to-path-with-priority remote-path paths
)
2123 (tramp-set-connection-property vec
"remote-path" remote-path
)
2124 (tramp-set-remote-path vec
))))
2126 (defun python-shell-tramp-refresh-process-environment (vec env
)
2127 "Update VEC's process environment with ENV."
2128 ;; Stolen from `tramp-open-connection-setup-interactive-shell'.
2129 (let ((env (append (when (fboundp #'tramp-get-remote-locale
)
2130 ;; Emacs<24.4 compat.
2131 (list (tramp-get-remote-locale vec
)))
2132 (copy-sequence env
)))
2133 (tramp-end-of-heredoc
2134 (if (boundp 'tramp-end-of-heredoc
)
2135 tramp-end-of-heredoc
2136 (md5 tramp-end-of-output
)))
2139 (setq item
(split-string (car env
) "=" 'omit
))
2140 (setcdr item
(mapconcat 'identity
(cdr item
) "="))
2141 (if (and (stringp (cdr item
)) (not (string-equal (cdr item
) "")))
2142 (push (format "%s %s" (car item
) (cdr item
)) vars
)
2143 (push (car item
) unset
))
2144 (setq env
(cdr env
)))
2148 (format "while read var val; do export $var=$val; done <<'%s'\n%s\n%s"
2149 tramp-end-of-heredoc
2150 (mapconcat 'identity vars
"\n")
2151 tramp-end-of-heredoc
)
2155 vec
(format "unset %s" (mapconcat 'identity unset
" ")) t
))))
2157 (defmacro python-shell-with-environment
(&rest body
)
2158 "Modify shell environment during execution of BODY.
2159 Temporarily sets `process-environment' and `exec-path' during
2160 execution of body. If `default-directory' points to a remote
2161 machine then modifies `tramp-remote-process-environment' and
2162 `python-shell-remote-exec-path' instead."
2163 (declare (indent 0) (debug (body)))
2164 (let ((vec (make-symbol "vec")))
2167 (when (file-remote-p default-directory
)
2169 (tramp-dissect-file-name default-directory
'noexpand
))))
2170 (process-environment
2173 (python-shell-calculate-process-environment)))
2177 (python-shell-calculate-exec-path)))
2178 (tramp-remote-process-environment
2180 (python-shell-calculate-process-environment)
2181 tramp-remote-process-environment
)))
2182 (when (tramp-get-connection-process ,vec
)
2183 ;; For already existing connections, the new exec path must
2184 ;; be re-set, otherwise it won't take effect. One example
2185 ;; of such case is when remote dir-locals are read and
2186 ;; *then* subprocesses are triggered within the same
2188 (python-shell-tramp-refresh-remote-path
2189 ,vec
(python-shell-calculate-exec-path))
2190 ;; The `tramp-remote-process-environment' variable is only
2191 ;; effective when the started process is an interactive
2192 ;; shell, otherwise (like in the case of processes started
2193 ;; with `process-file') the environment is not changed.
2194 ;; This makes environment modifications effective
2196 (python-shell-tramp-refresh-process-environment
2197 ,vec tramp-remote-process-environment
))
2198 ,(macroexp-progn body
)))))
2200 (defvar python-shell--prompt-calculated-input-regexp nil
2201 "Calculated input prompt regexp for inferior python shell.
2202 Do not set this variable directly, instead use
2203 `python-shell-prompt-set-calculated-regexps'.")
2205 (defvar python-shell--prompt-calculated-output-regexp nil
2206 "Calculated output prompt regexp for inferior python shell.
2207 Do not set this variable directly, instead use
2208 `python-shell-set-prompt-regexp'.")
2210 (defun python-shell-prompt-detect ()
2211 "Detect prompts for the current `python-shell-interpreter'.
2212 When prompts can be retrieved successfully from the
2213 `python-shell-interpreter' run with
2214 `python-shell-interpreter-interactive-arg', returns a list of
2215 three elements, where the first two are input prompts and the
2216 last one is an output prompt. When no prompts can be detected
2217 and `python-shell-prompt-detect-failure-warning' is non-nil,
2218 shows a warning with instructions to avoid hangs and returns nil.
2219 When `python-shell-prompt-detect-enabled' is nil avoids any
2220 detection and just returns nil."
2221 (when python-shell-prompt-detect-enabled
2222 (python-shell-with-environment
2223 (let* ((code (concat
2225 "ps = [getattr(sys, 'ps%s' % i, '') for i in range(1,4)]\n"
2226 ;; JSON is built manually for compatibility
2227 "ps_json = '\\n[\"%s\", \"%s\", \"%s\"]\\n' % tuple(ps)\n"
2230 (interpreter python-shell-interpreter
)
2231 (interpreter-arg python-shell-interpreter-interactive-arg
)
2234 ;; TODO: improve error handling by using
2235 ;; `condition-case' and displaying the error message to
2236 ;; the user in the no-prompts warning.
2238 (let ((code-file (python-shell--save-temp-file code
)))
2239 ;; Use `process-file' as it is remote-host friendly.
2247 (delete-file code-file
)))
2251 (dolist (line (split-string output
"\n" t
))
2253 ;; Check if current line is a valid JSON array
2254 (and (string= (substring line
0 2) "[\"")
2256 ;; Return prompts as a list, not vector
2257 (append (json-read-from-string line
) nil
)))))
2258 ;; The list must contain 3 strings, where the first
2259 ;; is the input prompt, the second is the block
2260 ;; prompt and the last one is the output prompt. The
2261 ;; input prompt is the only one that can't be empty.
2262 (when (and (= (length res
) 3)
2263 (cl-every #'stringp res
)
2264 (not (string= (car res
) "")))
2265 (throw 'prompts res
))))
2267 (when (and (not prompts
)
2268 python-shell-prompt-detect-failure-warning
)
2270 '(python python-shell-prompt-regexp
)
2273 "Python shell prompts cannot be detected.\n"
2274 "If your emacs session hangs when starting python shells\n"
2275 "recover with `keyboard-quit' and then try fixing the\n"
2276 "interactive flag for your interpreter by adjusting the\n"
2277 "`python-shell-interpreter-interactive-arg' or add regexps\n"
2278 "matching shell prompts in the directory-local friendly vars:\n"
2279 " + `python-shell-prompt-regexp'\n"
2280 " + `python-shell-prompt-block-regexp'\n"
2281 " + `python-shell-prompt-output-regexp'\n"
2282 "Or alternatively in:\n"
2283 " + `python-shell-prompt-input-regexps'\n"
2284 " + `python-shell-prompt-output-regexps'")))
2287 (defun python-shell-prompt-validate-regexps ()
2288 "Validate all user provided regexps for prompts.
2289 Signals `user-error' if any of these vars contain invalid
2290 regexps: `python-shell-prompt-regexp',
2291 `python-shell-prompt-block-regexp',
2292 `python-shell-prompt-pdb-regexp',
2293 `python-shell-prompt-output-regexp',
2294 `python-shell-prompt-input-regexps',
2295 `python-shell-prompt-output-regexps'."
2296 (dolist (symbol (list 'python-shell-prompt-input-regexps
2297 'python-shell-prompt-output-regexps
2298 'python-shell-prompt-regexp
2299 'python-shell-prompt-block-regexp
2300 'python-shell-prompt-pdb-regexp
2301 'python-shell-prompt-output-regexp
))
2302 (dolist (regexp (let ((regexps (symbol-value symbol
)))
2306 (when (not (python-util-valid-regexp-p regexp
))
2307 (user-error "Invalid regexp %s in `%s'"
2310 (defun python-shell-prompt-set-calculated-regexps ()
2311 "Detect and set input and output prompt regexps.
2312 Build and set the values for `python-shell-input-prompt-regexp'
2313 and `python-shell-output-prompt-regexp' using the values from
2314 `python-shell-prompt-regexp', `python-shell-prompt-block-regexp',
2315 `python-shell-prompt-pdb-regexp',
2316 `python-shell-prompt-output-regexp',
2317 `python-shell-prompt-input-regexps',
2318 `python-shell-prompt-output-regexps' and detected prompts from
2319 `python-shell-prompt-detect'."
2320 (when (not (and python-shell--prompt-calculated-input-regexp
2321 python-shell--prompt-calculated-output-regexp
))
2322 (let* ((detected-prompts (python-shell-prompt-detect))
2324 (output-prompts nil
)
2328 (mapconcat #'identity
2331 (let ((length-a (length a
))
2332 (length-b (length b
)))
2333 (if (= length-a length-b
)
2335 (> (length a
) (length b
))))))
2338 ;; Validate ALL regexps
2339 (python-shell-prompt-validate-regexps)
2340 ;; Collect all user defined input prompts
2341 (dolist (prompt (append python-shell-prompt-input-regexps
2342 (list python-shell-prompt-regexp
2343 python-shell-prompt-block-regexp
2344 python-shell-prompt-pdb-regexp
)))
2345 (cl-pushnew prompt input-prompts
:test
#'string
=))
2346 ;; Collect all user defined output prompts
2347 (dolist (prompt (cons python-shell-prompt-output-regexp
2348 python-shell-prompt-output-regexps
))
2349 (cl-pushnew prompt output-prompts
:test
#'string
=))
2350 ;; Collect detected prompts if any
2351 (when detected-prompts
2352 (dolist (prompt (butlast detected-prompts
))
2353 (setq prompt
(regexp-quote prompt
))
2354 (cl-pushnew prompt input-prompts
:test
#'string
=))
2355 (cl-pushnew (regexp-quote
2356 (car (last detected-prompts
)))
2357 output-prompts
:test
#'string
=))
2358 ;; Set input and output prompt regexps from collected prompts
2359 (setq python-shell--prompt-calculated-input-regexp
2360 (funcall build-regexp input-prompts
)
2361 python-shell--prompt-calculated-output-regexp
2362 (funcall build-regexp output-prompts
)))))
2364 (defun python-shell-get-process-name (dedicated)
2365 "Calculate the appropriate process name for inferior Python process.
2366 If DEDICATED is t returns a string with the form
2367 `python-shell-buffer-name'[`buffer-name'] else returns the value
2368 of `python-shell-buffer-name'."
2370 (format "%s[%s]" python-shell-buffer-name
(buffer-name))
2371 python-shell-buffer-name
))
2373 (defun python-shell-internal-get-process-name ()
2374 "Calculate the appropriate process name for Internal Python process.
2375 The name is calculated from `python-shell-global-buffer-name' and
2377 (format "%s[%s]" python-shell-internal-buffer-name
(buffer-name)))
2379 (defun python-shell-calculate-command ()
2380 "Calculate the string used to execute the inferior Python process."
2382 ;; `python-shell-make-comint' expects to be able to
2383 ;; `split-string-and-unquote' the result of this function.
2384 (combine-and-quote-strings (list python-shell-interpreter
))
2385 python-shell-interpreter-args
))
2387 (define-obsolete-function-alias
2388 'python-shell-parse-command
2389 #'python-shell-calculate-command
"25.1")
2391 (defvar python-shell--package-depth
10)
2393 (defun python-shell-package-enable (directory package
)
2394 "Add DIRECTORY parent to $PYTHONPATH and enable PACKAGE."
2396 (let* ((dir (expand-file-name
2397 (read-directory-name
2399 (file-name-directory
2400 (or (buffer-file-name) default-directory
)))))
2401 (name (completing-read
2403 (python-util-list-packages
2404 dir python-shell--package-depth
))))
2406 (python-shell-send-string
2409 "import os.path;import sys;"
2410 "sys.path.append(os.path.dirname(os.path.dirname('''%s''')));"
2411 "__package__ = '''%s''';"
2413 directory package package
)
2414 (python-shell-get-process)))
2416 (defun python-shell-accept-process-output (process &optional timeout regexp
)
2417 "Accept PROCESS output with TIMEOUT until REGEXP is found.
2418 Optional argument TIMEOUT is the timeout argument to
2419 `accept-process-output' calls. Optional argument REGEXP
2420 overrides the regexp to match the end of output, defaults to
2421 `comint-prompt-regexp.'. Returns non-nil when output was
2424 This utility is useful in situations where the output may be
2425 received in chunks, since `accept-process-output' gives no
2426 guarantees they will be grabbed in a single call. An example use
2427 case for this would be the CPython shell start-up, where the
2428 banner and the initial prompt are received separately."
2429 (let ((regexp (or regexp comint-prompt-regexp
)))
2432 (when (not (accept-process-output process timeout
))
2435 regexp
(car (python-util-comint-last-prompt)))
2436 (throw 'found t
))))))
2438 (defun python-shell-comint-end-of-output-p (output)
2439 "Return non-nil if OUTPUT is ends with input prompt."
2441 ;; XXX: It seems on macOS an extra carriage return is attached
2442 ;; at the end of output, this handles that too.
2445 ;; Remove initial caret from calculated regexp
2446 (replace-regexp-in-string
2447 (rx string-start ?^
) ""
2448 python-shell--prompt-calculated-input-regexp
)
2452 (define-obsolete-function-alias
2453 'python-comint-output-filter-function
2454 'ansi-color-filter-apply
2457 (defun python-comint-postoutput-scroll-to-bottom (output)
2458 "Faster version of `comint-postoutput-scroll-to-bottom'.
2459 Avoids `recenter' calls until OUTPUT is completely sent."
2460 (when (and (not (string= "" output
))
2461 (python-shell-comint-end-of-output-p
2462 (ansi-color-filter-apply output
)))
2463 (comint-postoutput-scroll-to-bottom output
))
2466 (defvar python-shell--parent-buffer nil
)
2468 (defmacro python-shell-with-shell-buffer
(&rest body
)
2469 "Execute the forms in BODY with the shell buffer temporarily current.
2470 Signals an error if no shell buffer is available for current buffer."
2471 (declare (indent 0) (debug t
))
2472 (let ((shell-process (make-symbol "shell-process")))
2473 `(let ((,shell-process
(python-shell-get-process-or-error)))
2474 (with-current-buffer (process-buffer ,shell-process
)
2477 (defvar python-shell--font-lock-buffer nil
)
2479 (defun python-shell-font-lock-get-or-create-buffer ()
2480 "Get or create a font-lock buffer for current inferior process."
2481 (python-shell-with-shell-buffer
2482 (if python-shell--font-lock-buffer
2483 python-shell--font-lock-buffer
2485 (process-name (get-buffer-process (current-buffer)))))
2486 (generate-new-buffer
2487 (format " *%s-font-lock*" process-name
))))))
2489 (defun python-shell-font-lock-kill-buffer ()
2490 "Kill the font-lock buffer safely."
2491 (when (and python-shell--font-lock-buffer
2492 (buffer-live-p python-shell--font-lock-buffer
))
2493 (kill-buffer python-shell--font-lock-buffer
)
2494 (when (derived-mode-p 'inferior-python-mode
)
2495 (setq python-shell--font-lock-buffer nil
))))
2497 (defmacro python-shell-font-lock-with-font-lock-buffer
(&rest body
)
2498 "Execute the forms in BODY in the font-lock buffer.
2499 The value returned is the value of the last form in BODY. See
2500 also `with-current-buffer'."
2501 (declare (indent 0) (debug t
))
2502 `(python-shell-with-shell-buffer
2503 (save-current-buffer
2504 (when (not (and python-shell--font-lock-buffer
2505 (get-buffer python-shell--font-lock-buffer
)))
2506 (setq python-shell--font-lock-buffer
2507 (python-shell-font-lock-get-or-create-buffer)))
2508 (set-buffer python-shell--font-lock-buffer
)
2509 (when (not font-lock-mode
)
2511 (set (make-local-variable 'delay-mode-hooks
) t
)
2512 (let ((python-indent-guess-indent-offset nil
))
2513 (when (not (derived-mode-p 'python-mode
))
2517 (defun python-shell-font-lock-cleanup-buffer ()
2518 "Cleanup the font-lock buffer.
2519 Provided as a command because this might be handy if something
2520 goes wrong and syntax highlighting in the shell gets messed up."
2522 (python-shell-with-shell-buffer
2523 (python-shell-font-lock-with-font-lock-buffer
2526 (defun python-shell-font-lock-comint-output-filter-function (output)
2527 "Clean up the font-lock buffer after any OUTPUT."
2528 (if (and (not (string= "" output
))
2529 ;; Is end of output and is not just a prompt.
2531 (python-shell-comint-end-of-output-p
2532 (ansi-color-filter-apply output
))
2534 ;; If output is other than an input prompt then "real" output has
2535 ;; been received and the font-lock buffer must be cleaned up.
2536 (python-shell-font-lock-cleanup-buffer)
2537 ;; Otherwise just add a newline.
2538 (python-shell-font-lock-with-font-lock-buffer
2539 (goto-char (point-max))
2543 (defun python-shell-font-lock-post-command-hook ()
2544 "Fontifies current line in shell buffer."
2545 (let ((prompt-end (cdr (python-util-comint-last-prompt))))
2546 (when (and prompt-end
(> (point) prompt-end
)
2547 (process-live-p (get-buffer-process (current-buffer))))
2548 (let* ((input (buffer-substring-no-properties
2549 prompt-end
(point-max)))
2550 (deactivate-mark nil
)
2551 (start-pos prompt-end
)
2552 (buffer-undo-list t
)
2553 (font-lock-buffer-pos nil
)
2555 (python-shell-font-lock-with-font-lock-buffer
2556 (delete-region (line-beginning-position)
2558 (setq font-lock-buffer-pos
(point))
2560 ;; Ensure buffer is fontified, keeping it
2561 ;; compatible with Emacs < 24.4.
2562 (if (fboundp 'font-lock-ensure
)
2563 (funcall 'font-lock-ensure
)
2564 (font-lock-default-fontify-buffer))
2565 (buffer-substring font-lock-buffer-pos
2567 (replacement-length (length replacement
))
2569 ;; Inject text properties to get input fontified.
2570 (while (not (= i replacement-length
))
2571 (let* ((plist (text-properties-at i replacement
))
2572 (next-change (or (next-property-change i replacement
)
2573 replacement-length
))
2574 (plist (let ((face (plist-get plist
'face
)))
2577 ;; Replace FACE text properties with
2578 ;; FONT-LOCK-FACE so input is fontified.
2579 (plist-put plist
'face nil
)
2580 (plist-put plist
'font-lock-face face
)))))
2581 (set-text-properties
2582 (+ start-pos i
) (+ start-pos next-change
) plist
)
2583 (setq i next-change
)))))))
2585 (defun python-shell-font-lock-turn-on (&optional msg
)
2586 "Turn on shell font-lock.
2587 With argument MSG show activation message."
2589 (python-shell-with-shell-buffer
2590 (python-shell-font-lock-kill-buffer)
2591 (set (make-local-variable 'python-shell--font-lock-buffer
) nil
)
2592 (add-hook 'post-command-hook
2593 #'python-shell-font-lock-post-command-hook nil
'local
)
2594 (add-hook 'kill-buffer-hook
2595 #'python-shell-font-lock-kill-buffer nil
'local
)
2596 (add-hook 'comint-output-filter-functions
2597 #'python-shell-font-lock-comint-output-filter-function
2600 (message "Shell font-lock is enabled"))))
2602 (defun python-shell-font-lock-turn-off (&optional msg
)
2603 "Turn off shell font-lock.
2604 With argument MSG show deactivation message."
2606 (python-shell-with-shell-buffer
2607 (python-shell-font-lock-kill-buffer)
2608 (when (python-util-comint-last-prompt)
2609 ;; Cleanup current fontification
2610 (remove-text-properties
2611 (cdr (python-util-comint-last-prompt))
2613 '(face nil font-lock-face nil
)))
2614 (set (make-local-variable 'python-shell--font-lock-buffer
) nil
)
2615 (remove-hook 'post-command-hook
2616 #'python-shell-font-lock-post-command-hook
'local
)
2617 (remove-hook 'kill-buffer-hook
2618 #'python-shell-font-lock-kill-buffer
'local
)
2619 (remove-hook 'comint-output-filter-functions
2620 #'python-shell-font-lock-comint-output-filter-function
2623 (message "Shell font-lock is disabled"))))
2625 (defun python-shell-font-lock-toggle (&optional msg
)
2626 "Toggle font-lock for shell.
2627 With argument MSG show activation/deactivation message."
2629 (python-shell-with-shell-buffer
2630 (set (make-local-variable 'python-shell-font-lock-enable
)
2631 (not python-shell-font-lock-enable
))
2632 (if python-shell-font-lock-enable
2633 (python-shell-font-lock-turn-on msg
)
2634 (python-shell-font-lock-turn-off msg
))
2635 python-shell-font-lock-enable
))
2637 (defvar python-shell--first-prompt-received-output-buffer nil
)
2638 (defvar python-shell--first-prompt-received nil
)
2640 (defcustom python-shell-first-prompt-hook nil
2641 "Hook run upon first (non-pdb) shell prompt detection.
2642 This is the place for shell setup functions that need to wait for
2643 output. Since the first prompt is ensured, this helps the
2644 current process to not hang waiting for output by safeguarding
2645 interactive actions can be performed. This is useful to safely
2646 attach setup code for long-running processes that eventually
2652 (defun python-shell-comint-watch-for-first-prompt-output-filter (output)
2653 "Run `python-shell-first-prompt-hook' when first prompt is found in OUTPUT."
2654 (when (not python-shell--first-prompt-received
)
2655 (set (make-local-variable 'python-shell--first-prompt-received-output-buffer
)
2656 (concat python-shell--first-prompt-received-output-buffer
2657 (ansi-color-filter-apply output
)))
2658 (when (python-shell-comint-end-of-output-p
2659 python-shell--first-prompt-received-output-buffer
)
2661 (concat python-shell-prompt-pdb-regexp
(rx eos
))
2662 (or python-shell--first-prompt-received-output-buffer
""))
2663 ;; Skip pdb prompts and reset the buffer.
2664 (setq python-shell--first-prompt-received-output-buffer nil
)
2665 (set (make-local-variable 'python-shell--first-prompt-received
) t
)
2666 (setq python-shell--first-prompt-received-output-buffer nil
)
2667 (with-current-buffer (current-buffer)
2668 (let ((inhibit-quit nil
))
2669 (run-hooks 'python-shell-first-prompt-hook
))))))
2672 ;; Used to hold user interactive overrides to
2673 ;; `python-shell-interpreter' and `python-shell-interpreter-args' that
2674 ;; will be made buffer-local by `inferior-python-mode':
2675 (defvar python-shell--interpreter
)
2676 (defvar python-shell--interpreter-args
)
2678 (define-derived-mode inferior-python-mode comint-mode
"Inferior Python"
2679 "Major mode for Python inferior process.
2680 Runs a Python interpreter as a subprocess of Emacs, with Python
2681 I/O through an Emacs buffer. Variables `python-shell-interpreter'
2682 and `python-shell-interpreter-args' control which Python
2683 interpreter is run. Variables
2684 `python-shell-prompt-regexp',
2685 `python-shell-prompt-output-regexp',
2686 `python-shell-prompt-block-regexp',
2687 `python-shell-font-lock-enable',
2688 `python-shell-completion-setup-code',
2689 `python-shell-completion-string-code',
2690 `python-eldoc-setup-code', `python-eldoc-string-code',
2691 `python-ffap-setup-code' and `python-ffap-string-code' can
2692 customize this mode for different Python interpreters.
2694 This mode resets `comint-output-filter-functions' locally, so you
2695 may want to re-add custom functions to it using the
2696 `inferior-python-mode-hook'.
2698 You can also add additional setup code to be run at
2699 initialization of the interpreter via `python-shell-setup-codes'
2702 \(Type \\[describe-mode] in the process buffer for a list of commands.)"
2703 (when python-shell--parent-buffer
2704 (python-util-clone-local-variables python-shell--parent-buffer
))
2705 (set (make-local-variable 'indent-tabs-mode
) nil
)
2706 ;; Users can interactively override default values for
2707 ;; `python-shell-interpreter' and `python-shell-interpreter-args'
2708 ;; when calling `run-python'. This ensures values let-bound in
2709 ;; `python-shell-make-comint' are locally set if needed.
2710 (set (make-local-variable 'python-shell-interpreter
)
2711 (or python-shell--interpreter python-shell-interpreter
))
2712 (set (make-local-variable 'python-shell-interpreter-args
)
2713 (or python-shell--interpreter-args python-shell-interpreter-args
))
2714 (set (make-local-variable 'python-shell--prompt-calculated-input-regexp
) nil
)
2715 (set (make-local-variable 'python-shell--prompt-calculated-output-regexp
) nil
)
2716 (python-shell-prompt-set-calculated-regexps)
2717 (setq comint-prompt-regexp python-shell--prompt-calculated-input-regexp
)
2718 (set (make-local-variable 'comint-prompt-read-only
) t
)
2719 (setq mode-line-process
'(":%s"))
2720 (set (make-local-variable 'comint-output-filter-functions
)
2721 '(ansi-color-process-output
2722 python-shell-comint-watch-for-first-prompt-output-filter
2723 python-pdbtrack-comint-output-filter-function
2724 python-comint-postoutput-scroll-to-bottom
))
2725 (set (make-local-variable 'compilation-error-regexp-alist
)
2726 python-shell-compilation-regexp-alist
)
2727 (add-hook 'completion-at-point-functions
2728 #'python-shell-completion-at-point nil
'local
)
2729 (define-key inferior-python-mode-map
"\t"
2730 'python-shell-completion-complete-or-indent
)
2731 (make-local-variable 'python-pdbtrack-buffers-to-kill
)
2732 (make-local-variable 'python-pdbtrack-tracked-buffer
)
2733 (make-local-variable 'python-shell-internal-last-output
)
2734 (when python-shell-font-lock-enable
2735 (python-shell-font-lock-turn-on))
2736 (compilation-shell-minor-mode 1))
2738 (defun python-shell-make-comint (cmd proc-name
&optional show internal
)
2739 "Create a Python shell comint buffer.
2740 CMD is the Python command to be executed and PROC-NAME is the
2741 process name the comint buffer will get. After the comint buffer
2742 is created the `inferior-python-mode' is activated. When
2743 optional argument SHOW is non-nil the buffer is shown. When
2744 optional argument INTERNAL is non-nil this process is run on a
2745 buffer with a name that starts with a space, following the Emacs
2746 convention for temporary/internal buffers, and also makes sure
2747 the user is not queried for confirmation when the process is
2750 (python-shell-with-environment
2751 (let* ((proc-buffer-name
2752 (format (if (not internal
) "*%s*" " *%s*") proc-name
)))
2753 (when (not (comint-check-proc proc-buffer-name
))
2754 (let* ((cmdlist (split-string-and-unquote cmd
))
2755 (interpreter (car cmdlist
))
2756 (args (cdr cmdlist
))
2757 (buffer (apply #'make-comint-in-buffer proc-name proc-buffer-name
2758 interpreter nil args
))
2759 (python-shell--parent-buffer (current-buffer))
2760 (process (get-buffer-process buffer
))
2761 ;; Users can override the interpreter and args
2762 ;; interactively when calling `run-python', let-binding
2763 ;; these allows having the new right values in all
2764 ;; setup code that is done in `inferior-python-mode',
2765 ;; which is important, especially for prompt detection.
2766 (python-shell--interpreter interpreter
)
2767 (python-shell--interpreter-args
2768 (mapconcat #'identity args
" ")))
2769 (with-current-buffer buffer
2770 (inferior-python-mode))
2771 (when show
(display-buffer buffer
))
2772 (and internal
(set-process-query-on-exit-flag process nil
))))
2773 proc-buffer-name
))))
2776 (defun run-python (&optional cmd dedicated show
)
2777 "Run an inferior Python process.
2779 Argument CMD defaults to `python-shell-calculate-command' return
2780 value. When called interactively with `prefix-arg', it allows
2781 the user to edit such value and choose whether the interpreter
2782 should be DEDICATED for the current buffer. When numeric prefix
2783 arg is other than 0 or 4 do not SHOW.
2785 For a given buffer and same values of DEDICATED, if a process is
2786 already running for it, it will do nothing. This means that if
2787 the current buffer is using a global process, the user is still
2788 able to switch it to use a dedicated one.
2790 Runs the hook `inferior-python-mode-hook' after
2791 `comint-mode-hook' is run. (Type \\[describe-mode] in the
2792 process buffer for a list of commands.)"
2794 (if current-prefix-arg
2796 (read-shell-command "Run Python: " (python-shell-calculate-command))
2797 (y-or-n-p "Make dedicated process? ")
2798 (= (prefix-numeric-value current-prefix-arg
) 4))
2799 (list (python-shell-calculate-command) nil t
)))
2801 (python-shell-make-comint
2802 (or cmd
(python-shell-calculate-command))
2803 (python-shell-get-process-name dedicated
) show
)))
2805 (defun run-python-internal ()
2806 "Run an inferior Internal Python process.
2807 Input and output via buffer named after
2808 `python-shell-internal-buffer-name' and what
2809 `python-shell-internal-get-process-name' returns.
2811 This new kind of shell is intended to be used for generic
2812 communication related to defined configurations; the main
2813 difference with global or dedicated shells is that these ones are
2814 attached to a configuration, not a buffer. This means that can
2815 be used for example to retrieve the sys.path and other stuff,
2816 without messing with user shells. Note that
2817 `python-shell-font-lock-enable' and `inferior-python-mode-hook'
2818 are set to nil for these shells, so setup codes are not sent at
2820 (let ((python-shell-font-lock-enable nil
)
2821 (inferior-python-mode-hook nil
))
2823 (python-shell-make-comint
2824 (python-shell-calculate-command)
2825 (python-shell-internal-get-process-name) nil t
))))
2827 (defun python-shell-get-buffer ()
2828 "Return inferior Python buffer for current buffer.
2829 If current buffer is in `inferior-python-mode', return it."
2830 (if (derived-mode-p 'inferior-python-mode
)
2832 (let* ((dedicated-proc-name (python-shell-get-process-name t
))
2833 (dedicated-proc-buffer-name (format "*%s*" dedicated-proc-name
))
2834 (global-proc-name (python-shell-get-process-name nil
))
2835 (global-proc-buffer-name (format "*%s*" global-proc-name
))
2836 (dedicated-running (comint-check-proc dedicated-proc-buffer-name
))
2837 (global-running (comint-check-proc global-proc-buffer-name
)))
2838 ;; Always prefer dedicated
2839 (or (and dedicated-running dedicated-proc-buffer-name
)
2840 (and global-running global-proc-buffer-name
)))))
2842 (defun python-shell-get-process ()
2843 "Return inferior Python process for current buffer."
2844 (get-buffer-process (python-shell-get-buffer)))
2846 (defun python-shell-get-process-or-error (&optional interactivep
)
2847 "Return inferior Python process for current buffer or signal error.
2848 When argument INTERACTIVEP is non-nil, use `user-error' instead
2849 of `error' with a user-friendly message."
2850 (or (python-shell-get-process)
2853 "Start a Python process first with `%s' or `%s'."
2854 (substitute-command-keys "\\[run-python]")
2858 #'run-python overriding-local-map t
)))
2860 "No inferior Python process running."))))
2862 (defun python-shell-get-or-create-process (&optional cmd dedicated show
)
2863 "Get or create an inferior Python process for current buffer and return it.
2864 Arguments CMD, DEDICATED and SHOW are those of `run-python' and
2865 are used to start the shell. If those arguments are not
2866 provided, `run-python' is called interactively and the user will
2867 be asked for their values."
2868 (let ((shell-process (python-shell-get-process)))
2869 (when (not shell-process
)
2871 ;; XXX: Refactor code such that calling `run-python'
2872 ;; interactively is not needed anymore.
2873 (call-interactively 'run-python
)
2874 (run-python cmd dedicated show
)))
2875 (or shell-process
(python-shell-get-process))))
2878 #'python-shell-get-or-create-process
2879 "Instead call `python-shell-get-process' and create one if returns nil."
2882 (defvar python-shell-internal-buffer nil
2883 "Current internal shell buffer for the current buffer.
2884 This is really not necessary at all for the code to work but it's
2885 there for compatibility with CEDET.")
2887 (defvar python-shell-internal-last-output nil
2888 "Last output captured by the internal shell.
2889 This is really not necessary at all for the code to work but it's
2890 there for compatibility with CEDET.")
2892 (defun python-shell-internal-get-or-create-process ()
2893 "Get or create an inferior Internal Python process."
2894 (let ((proc-name (python-shell-internal-get-process-name)))
2895 (if (process-live-p proc-name
)
2896 (get-process proc-name
)
2897 (run-python-internal))))
2899 (define-obsolete-function-alias
2900 'python-proc
'python-shell-internal-get-or-create-process
"24.3")
2902 (define-obsolete-variable-alias
2903 'python-buffer
'python-shell-internal-buffer
"24.3")
2905 (define-obsolete-variable-alias
2906 'python-preoutput-result
'python-shell-internal-last-output
"24.3")
2908 (defun python-shell--save-temp-file (string)
2909 (let* ((temporary-file-directory
2910 (if (file-remote-p default-directory
)
2911 (concat (file-remote-p default-directory
) "/tmp")
2912 temporary-file-directory
))
2913 (temp-file-name (make-temp-file "py"))
2914 (coding-system-for-write (python-info-encoding)))
2915 (with-temp-file temp-file-name
2917 (delete-trailing-whitespace))
2920 (defun python-shell-send-string (string &optional process msg
)
2921 "Send STRING to inferior Python PROCESS.
2922 When optional argument MSG is non-nil, forces display of a
2923 user-friendly message if there's no process running; defaults to
2924 t when called interactively."
2926 (list (read-string "Python command: ") nil t
))
2927 (let ((process (or process
(python-shell-get-process-or-error msg
))))
2928 (if (string-match ".\n+." string
) ;Multiline.
2929 (let* ((temp-file-name (python-shell--save-temp-file string
))
2930 (file-name (or (buffer-file-name) temp-file-name
)))
2931 (python-shell-send-file file-name process temp-file-name t
))
2932 (comint-send-string process string
)
2933 (when (or (not (string-match "\n\\'" string
))
2934 (string-match "\n[ \t].*\n?\\'" string
))
2935 (comint-send-string process
"\n")))))
2937 (defvar python-shell-output-filter-in-progress nil
)
2938 (defvar python-shell-output-filter-buffer nil
)
2940 (defun python-shell-output-filter (string)
2941 "Filter used in `python-shell-send-string-no-output' to grab output.
2942 STRING is the output received to this point from the process.
2943 This filter saves received output from the process in
2944 `python-shell-output-filter-buffer' and stops receiving it after
2945 detecting a prompt at the end of the buffer."
2947 string
(ansi-color-filter-apply string
)
2948 python-shell-output-filter-buffer
2949 (concat python-shell-output-filter-buffer string
))
2950 (when (python-shell-comint-end-of-output-p
2951 python-shell-output-filter-buffer
)
2952 ;; Output ends when `python-shell-output-filter-buffer' contains
2953 ;; the prompt attached at the end of it.
2954 (setq python-shell-output-filter-in-progress nil
2955 python-shell-output-filter-buffer
2956 (substring python-shell-output-filter-buffer
2957 0 (match-beginning 0)))
2959 python-shell--prompt-calculated-output-regexp
2960 python-shell-output-filter-buffer
)
2961 ;; Some shells, like IPython might append a prompt before the
2962 ;; output, clean that.
2963 (setq python-shell-output-filter-buffer
2964 (substring python-shell-output-filter-buffer
(match-end 0)))))
2967 (defun python-shell-send-string-no-output (string &optional process
)
2968 "Send STRING to PROCESS and inhibit output.
2970 (let ((process (or process
(python-shell-get-process-or-error)))
2971 (comint-preoutput-filter-functions
2972 '(python-shell-output-filter))
2973 (python-shell-output-filter-in-progress t
)
2977 (python-shell-send-string string process
)
2978 (while python-shell-output-filter-in-progress
2979 ;; `python-shell-output-filter' takes care of setting
2980 ;; `python-shell-output-filter-in-progress' to NIL after it
2981 ;; detects end of output.
2982 (accept-process-output process
))
2984 python-shell-output-filter-buffer
2985 (setq python-shell-output-filter-buffer nil
)))
2986 (with-current-buffer (process-buffer process
)
2987 (comint-interrupt-subjob)))))
2989 (defun python-shell-internal-send-string (string)
2990 "Send STRING to the Internal Python interpreter.
2991 Returns the output. See `python-shell-send-string-no-output'."
2992 ;; XXX Remove `python-shell-internal-last-output' once CEDET is
2993 ;; updated to support this new mode.
2994 (setq python-shell-internal-last-output
2995 (python-shell-send-string-no-output
2996 ;; Makes this function compatible with the old
2997 ;; python-send-receive. (At least for CEDET).
2998 (replace-regexp-in-string "_emacs_out +" "" string
)
2999 (python-shell-internal-get-or-create-process))))
3001 (define-obsolete-function-alias
3002 'python-send-receive
'python-shell-internal-send-string
"24.3")
3004 (define-obsolete-function-alias
3005 'python-send-string
'python-shell-internal-send-string
"24.3")
3007 (defun python-shell-buffer-substring (start end
&optional nomain
)
3008 "Send buffer substring from START to END formatted for shell.
3009 This is a wrapper over `buffer-substring' that takes care of
3010 different transformations for the code sent to be evaluated in
3012 1. When optional argument NOMAIN is non-nil everything under an
3013 \"if __name__ == \\='__main__\\='\" block will be removed.
3014 2. When a subregion of the buffer is sent, it takes care of
3015 appending extra empty lines so tracebacks are correct.
3016 3. When the region sent is a substring of the current buffer, a
3017 coding cookie is added.
3018 4. Wraps indented regions under an \"if True:\" block so the
3019 interpreter evaluates them correctly."
3020 (let* ((start (save-excursion
3021 ;; Normalize start to the line beginning position.
3023 (line-beginning-position)))
3024 (substring (buffer-substring-no-properties start end
))
3025 (starts-at-point-min-p (save-restriction
3027 (= (point-min) start
)))
3028 (encoding (python-info-encoding))
3029 (toplevel-p (zerop (save-excursion
3031 (python-util-forward-comment 1)
3032 (current-indentation))))
3033 (fillstr (when (not starts-at-point-min-p
)
3035 (format "# -*- coding: %s -*-\n" encoding
)
3037 ;; Subtract 2 because of the coding cookie.
3038 (- (line-number-at-pos start
) 2) ?
\n)))))
3044 (goto-char (point-min))
3045 (when (not toplevel-p
)
3047 (delete-region (point) (line-end-position)))
3049 (let* ((if-name-main-start-end
3052 (when (python-nav-if-name-main)
3054 (progn (python-nav-forward-sexp-safe)
3055 ;; Include ending newline
3058 ;; Oh destructuring bind, how I miss you.
3059 (if-name-main-start (car if-name-main-start-end
))
3060 (if-name-main-end (cdr if-name-main-start-end
))
3061 (fillstr (make-string
3062 (- (line-number-at-pos if-name-main-end
)
3063 (line-number-at-pos if-name-main-start
)) ?
\n)))
3064 (when if-name-main-start-end
3065 (goto-char if-name-main-start
)
3066 (delete-region if-name-main-start if-name-main-end
)
3068 ;; Ensure there's only one coding cookie in the generated string.
3069 (goto-char (point-min))
3070 (when (looking-at-p (python-rx coding-cookie
))
3072 (when (looking-at-p (python-rx coding-cookie
))
3074 (line-beginning-position) (line-end-position))))
3075 (buffer-substring-no-properties (point-min) (point-max)))))
3077 (defun python-shell-send-region (start end
&optional send-main msg
)
3078 "Send the region delimited by START and END to inferior Python process.
3079 When optional argument SEND-MAIN is non-nil, allow execution of
3080 code inside blocks delimited by \"if __name__== \\='__main__\\=':\".
3081 When called interactively SEND-MAIN defaults to nil, unless it's
3082 called with prefix argument. When optional argument MSG is
3083 non-nil, forces display of a user-friendly message if there's no
3084 process running; defaults to t when called interactively."
3086 (list (region-beginning) (region-end) current-prefix-arg t
))
3087 (let* ((string (python-shell-buffer-substring start end
(not send-main
)))
3088 (process (python-shell-get-process-or-error msg
))
3089 (original-string (buffer-substring-no-properties start end
))
3090 (_ (string-match "\\`\n*\\(.*\\)" original-string
)))
3091 (message "Sent: %s..." (match-string 1 original-string
))
3092 (python-shell-send-string string process
)))
3094 (defun python-shell-send-buffer (&optional send-main msg
)
3095 "Send the entire buffer to inferior Python process.
3096 When optional argument SEND-MAIN is non-nil, allow execution of
3097 code inside blocks delimited by \"if __name__== \\='__main__\\=':\".
3098 When called interactively SEND-MAIN defaults to nil, unless it's
3099 called with prefix argument. When optional argument MSG is
3100 non-nil, forces display of a user-friendly message if there's no
3101 process running; defaults to t when called interactively."
3102 (interactive (list current-prefix-arg t
))
3105 (python-shell-send-region (point-min) (point-max) send-main msg
)))
3107 (defun python-shell-send-defun (&optional arg msg
)
3108 "Send the current defun to inferior Python process.
3109 When argument ARG is non-nil do not include decorators. When
3110 optional argument MSG is non-nil, forces display of a
3111 user-friendly message if there's no process running; defaults to
3112 t when called interactively."
3113 (interactive (list current-prefix-arg t
))
3115 (python-shell-send-region
3118 (while (and (or (python-nav-beginning-of-defun)
3119 (beginning-of-line 1))
3120 (> (current-indentation) 0)))
3122 (while (and (forward-line -
1)
3123 (looking-at (python-rx decorator
))))
3127 (or (python-nav-end-of-defun)
3133 (defun python-shell-send-file (file-name &optional process temp-file-name
3135 "Send FILE-NAME to inferior Python PROCESS.
3136 If TEMP-FILE-NAME is passed then that file is used for processing
3137 instead, while internally the shell will continue to use
3138 FILE-NAME. If TEMP-FILE-NAME and DELETE are non-nil, then
3139 TEMP-FILE-NAME is deleted after evaluation is performed. When
3140 optional argument MSG is non-nil, forces display of a
3141 user-friendly message if there's no process running; defaults to
3142 t when called interactively."
3145 (read-file-name "File to send: ") ; file-name
3147 nil
; temp-file-name
3150 (let* ((process (or process
(python-shell-get-process-or-error msg
)))
3151 (encoding (with-temp-buffer
3152 (insert-file-contents
3153 (or temp-file-name file-name
))
3154 (python-info-encoding)))
3155 (file-name (expand-file-name (file-local-name file-name
)))
3156 (temp-file-name (when temp-file-name
3158 (file-local-name temp-file-name
)))))
3159 (python-shell-send-string
3162 "import codecs, os;"
3163 "__pyfile = codecs.open('''%s''', encoding='''%s''');"
3164 "__code = __pyfile.read().encode('''%s''');"
3166 (when (and delete temp-file-name
)
3167 (format "os.remove('''%s''');" temp-file-name
))
3168 "exec(compile(__code, '''%s''', 'exec'));")
3169 (or temp-file-name file-name
) encoding encoding file-name
)
3172 (defun python-shell-switch-to-shell (&optional msg
)
3173 "Switch to inferior Python process buffer.
3174 When optional argument MSG is non-nil, forces display of a
3175 user-friendly message if there's no process running; defaults to
3176 t when called interactively."
3179 (process-buffer (python-shell-get-process-or-error msg
)) nil t
))
3181 (defun python-shell-send-setup-code ()
3182 "Send all setup code for shell.
3183 This function takes the list of setup code to send from the
3184 `python-shell-setup-codes' list."
3185 (when python-shell-setup-codes
3186 (let ((process (python-shell-get-process))
3190 (cond ((stringp elt
) elt
)
3191 ((symbolp elt
) (symbol-value elt
))
3193 python-shell-setup-codes
3194 "\n\nprint ('python.el: sent setup code')"))))
3195 (python-shell-send-string code process
)
3196 (python-shell-accept-process-output process
))))
3198 (add-hook 'python-shell-first-prompt-hook
3199 #'python-shell-send-setup-code
)
3202 ;;; Shell completion
3204 (defcustom python-shell-completion-setup-code
3206 def __PYTHON_EL_get_completions(text):
3217 import builtins as __builtin__
3218 builtins = dir(__builtin__)
3220 is_ipython = ('__IPYTHON__' in builtins or
3221 '__IPYTHON__active' in builtins)
3222 splits = text.split()
3223 is_module = splits and splits[0] in ('from', 'import')
3225 if is_ipython and is_module:
3226 from IPython.core.completerlib import module_completion
3227 completions = module_completion(text.strip())
3228 elif is_ipython and '__IP' in builtins:
3229 completions = __IP.complete(text)
3230 elif is_ipython and 'get_ipython' in builtins:
3231 completions = get_ipython().Completer.all_completions(text)
3233 # Try to reuse current completer.
3234 completer = readline.get_completer()
3236 # importing rlcompleter sets the completer, use it as a
3237 # last resort to avoid breaking customizations.
3239 completer = readline.get_completer()
3240 if getattr(completer, 'PYTHON_EL_WRAPPED', False):
3241 completer.print_mode = False
3244 completion = completer(text, i)
3248 completions.append(completion)
3252 if getattr(completer, 'PYTHON_EL_WRAPPED', False):
3253 completer.print_mode = True
3255 "Code used to setup completion in inferior Python processes."
3259 (defcustom python-shell-completion-string-code
3260 "';'.join(__PYTHON_EL_get_completions('''%s'''))"
3261 "Python code used to get a string of completions separated by semicolons.
3262 The string passed to the function is the current python name or
3263 the full statement in the case of imports."
3267 (define-obsolete-variable-alias
3268 'python-shell-completion-module-string-code
3269 'python-shell-completion-string-code
3271 "Completion string code must also autocomplete modules.")
3273 (define-obsolete-variable-alias
3274 'python-shell-completion-pdb-string-code
3275 'python-shell-completion-string-code
3277 "Completion string code must work for (i)pdb.")
3279 (defcustom python-shell-completion-native-disabled-interpreters
3280 ;; PyPy's readline cannot handle some escape sequences yet.
3282 "List of disabled interpreters.
3283 When a match is found, native completion is disabled."
3285 :type
'(repeat string
))
3287 (defcustom python-shell-completion-native-enable t
3288 "Enable readline based native completion."
3292 (defcustom python-shell-completion-native-output-timeout
5.0
3293 "Time in seconds to wait for completion output before giving up."
3297 (defcustom python-shell-completion-native-try-output-timeout
1.0
3298 "Time in seconds to wait for *trying* native completion output."
3302 (defvar python-shell-completion-native-redirect-buffer
3303 " *Python completions redirect*"
3304 "Buffer to be used to redirect output of readline commands.")
3306 (defun python-shell-completion-native-interpreter-disabled-p ()
3307 "Return non-nil if interpreter has native completion disabled."
3308 (when python-shell-completion-native-disabled-interpreters
3310 (regexp-opt python-shell-completion-native-disabled-interpreters
)
3311 (file-name-nondirectory python-shell-interpreter
))))
3313 (defun python-shell-completion-native-try ()
3314 "Return non-nil if can trigger native completion."
3315 (let ((python-shell-completion-native-enable t
)
3316 (python-shell-completion-native-output-timeout
3317 python-shell-completion-native-try-output-timeout
))
3318 (python-shell-completion-native-get-completions
3319 (get-buffer-process (current-buffer))
3322 (defun python-shell-completion-native-setup ()
3323 "Try to setup native completion, return non-nil on success."
3324 (let ((process (python-shell-get-process)))
3325 (with-current-buffer (process-buffer process
)
3326 (python-shell-send-string "
3327 def __PYTHON_EL_native_completion_setup():
3335 import builtins as __builtin__
3337 builtins = dir(__builtin__)
3338 is_ipython = ('__IPYTHON__' in builtins or
3339 '__IPYTHON__active' in builtins)
3341 class __PYTHON_EL_Completer:
3342 '''Completer wrapper that prints candidates to stdout.
3344 It wraps an existing completer function and changes its behavior so
3345 that the user input is unchanged and real candidates are printed to
3348 Returned candidates are '0__dummy_completion__' and
3349 '1__dummy_completion__' in that order ('0__dummy_completion__' is
3350 returned repeatedly until all possible candidates are consumed).
3352 The real candidates are printed to stdout so that they can be
3353 easily retrieved through comint output redirect trickery.
3356 PYTHON_EL_WRAPPED = True
3358 def __init__(self, completer):
3359 self.completer = completer
3360 self.last_completion = None
3361 self.print_mode = True
3363 def __call__(self, text, state):
3365 # Set the first dummy completion.
3366 self.last_completion = None
3367 completion = '0__dummy_completion__'
3369 completion = self.completer(text, state - 1)
3372 if self.last_completion != '1__dummy_completion__':
3373 # When no more completions are available, returning a
3374 # dummy with non-sharing prefix allow ensuring output
3375 # while preventing changes to current input.
3376 # Coincidentally it's also the end of output.
3377 completion = '1__dummy_completion__'
3378 elif completion.endswith('('):
3379 # Remove parens on callables as it breaks completion on
3380 # arguments (e.g. str(Ari<tab>)).
3381 completion = completion[:-1]
3382 self.last_completion = completion
3385 '0__dummy_completion__', '1__dummy_completion__'):
3388 # For every non-dummy completion, return a repeated dummy
3389 # one and print the real candidate so it can be retrieved
3390 # by comint output filters.
3393 return '0__dummy_completion__'
3399 completer = readline.get_completer()
3402 # Used as last resort to avoid breaking customizations.
3404 completer = readline.get_completer()
3406 if completer and not getattr(completer, 'PYTHON_EL_WRAPPED', False):
3407 # Wrap the existing completer function only once.
3408 new_completer = __PYTHON_EL_Completer(completer)
3410 readline.set_completer(new_completer)
3412 # Try both initializations to cope with all IPython versions.
3413 # This works fine for IPython 3.x but not for earlier:
3414 readline.set_completer(new_completer)
3415 # IPython<3 hacks readline such that `readline.set_completer`
3416 # won't work. This workaround injects the new completer
3417 # function into the existing instance directly:
3418 instance = getattr(completer, 'im_self', completer.__self__)
3419 instance.rlcomplete = new_completer
3421 if readline.__doc__ and 'libedit' in readline.__doc__:
3422 readline.parse_and_bind('bind ^I rl_complete')
3424 readline.parse_and_bind('tab: complete')
3425 # Require just one tab to send output.
3426 readline.parse_and_bind('set show-all-if-ambiguous on')
3428 print ('python.el: native completion setup loaded')
3430 print ('python.el: native completion setup failed')
3432 __PYTHON_EL_native_completion_setup()" process
)
3434 (python-shell-accept-process-output
3435 process python-shell-completion-native-try-output-timeout
)
3438 (regexp-quote "python.el: native completion setup loaded") nil t
1)))
3439 (python-shell-completion-native-try)))))
3441 (defun python-shell-completion-native-turn-off (&optional msg
)
3442 "Turn off shell native completions.
3443 With argument MSG show deactivation message."
3445 (python-shell-with-shell-buffer
3446 (set (make-local-variable 'python-shell-completion-native-enable
) nil
)
3448 (message "Shell native completion is disabled, using fallback"))))
3450 (defun python-shell-completion-native-turn-on (&optional msg
)
3451 "Turn on shell native completions.
3452 With argument MSG show deactivation message."
3454 (python-shell-with-shell-buffer
3455 (set (make-local-variable 'python-shell-completion-native-enable
) t
)
3456 (python-shell-completion-native-turn-on-maybe msg
)))
3458 (defun python-shell-completion-native-turn-on-maybe (&optional msg
)
3459 "Turn on native completions if enabled and available.
3460 With argument MSG show activation/deactivation message."
3462 (python-shell-with-shell-buffer
3463 (when python-shell-completion-native-enable
3465 ((python-shell-completion-native-interpreter-disabled-p)
3466 (python-shell-completion-native-turn-off msg
))
3467 ((python-shell-completion-native-setup)
3469 (message "Shell native completion is enabled.")))
3471 '(python python-shell-completion-native-turn-on-maybe
)
3474 "Your `python-shell-interpreter' doesn't seem to "
3475 "support readline, yet `python-shell-completion-native' "
3476 (format "was t and %S is not part of the "
3477 (file-name-nondirectory python-shell-interpreter
))
3478 "`python-shell-completion-native-disabled-interpreters' "
3479 "list. Native completions have been disabled locally. "))
3480 (python-shell-completion-native-turn-off msg
))))))
3482 (defun python-shell-completion-native-turn-on-maybe-with-msg ()
3483 "Like `python-shell-completion-native-turn-on-maybe' but force messages."
3484 (python-shell-completion-native-turn-on-maybe t
))
3486 (add-hook 'python-shell-first-prompt-hook
3487 #'python-shell-completion-native-turn-on-maybe-with-msg
)
3489 (defun python-shell-completion-native-toggle (&optional msg
)
3490 "Toggle shell native completion.
3491 With argument MSG show activation/deactivation message."
3493 (python-shell-with-shell-buffer
3494 (if python-shell-completion-native-enable
3495 (python-shell-completion-native-turn-off msg
)
3496 (python-shell-completion-native-turn-on msg
))
3497 python-shell-completion-native-enable
))
3499 (defun python-shell-completion-native-get-completions (process import input
)
3500 "Get completions using native readline for PROCESS.
3501 When IMPORT is non-nil takes precedence over INPUT for
3503 (with-current-buffer (process-buffer process
)
3504 (let* ((input (or import input
))
3505 (original-filter-fn (process-filter process
))
3506 (redirect-buffer (get-buffer-create
3507 python-shell-completion-native-redirect-buffer
))
3509 (new-input (concat input trigger
))
3512 (+ (- (point-max) (comint-bol)) (length new-input
))))
3513 (delete-line-command (make-string input-length ?
\b))
3514 (input-to-send (concat new-input delete-line-command
)))
3515 ;; Ensure restoring the process filter, even if the user quits
3516 ;; or there's some other error.
3518 (with-current-buffer redirect-buffer
3519 ;; Cleanup the redirect buffer
3521 ;; Mimic `comint-redirect-send-command', unfortunately it
3522 ;; can't be used here because it expects a newline in the
3523 ;; command and that's exactly what we are trying to avoid.
3524 (let ((comint-redirect-echo-input nil
)
3525 (comint-redirect-completed nil
)
3526 (comint-redirect-perform-sanity-check nil
)
3527 (comint-redirect-insert-matching-regexp t
)
3528 (comint-redirect-finished-regexp
3529 "1__dummy_completion__[[:space:]]*\n")
3530 (comint-redirect-output-buffer redirect-buffer
))
3531 ;; Compatibility with Emacs 24.x. Comint changed and
3532 ;; now `comint-redirect-filter' gets 3 args. This
3533 ;; checks which version of `comint-redirect-filter' is
3534 ;; in use based on its args and uses `apply-partially'
3535 ;; to make it up for the 3 args case.
3537 (help-function-arglist 'comint-redirect-filter
)) 3)
3539 process
(apply-partially
3540 #'comint-redirect-filter original-filter-fn
))
3541 (set-process-filter process
#'comint-redirect-filter
))
3542 (process-send-string process input-to-send
)
3543 ;; Grab output until our dummy completion used as
3544 ;; output end marker is found.
3545 (when (python-shell-accept-process-output
3546 process python-shell-completion-native-output-timeout
3547 comint-redirect-finished-regexp
)
3548 (re-search-backward "0__dummy_completion__" nil t
)
3549 (cl-remove-duplicates
3551 (buffer-substring-no-properties
3552 (line-beginning-position) (point-min))
3553 "[ \f\t\n\r\v()]+" t
)
3555 (set-process-filter process original-filter-fn
)))))
3557 (defun python-shell-completion-get-completions (process import input
)
3558 "Do completion at point using PROCESS for IMPORT or INPUT.
3559 When IMPORT is non-nil takes precedence over INPUT for
3561 (setq input
(or import input
))
3562 (with-current-buffer (process-buffer process
)
3564 (python-util-strip-string
3565 (python-shell-send-string-no-output
3567 (concat python-shell-completion-setup-code
3568 "\nprint (" python-shell-completion-string-code
")")
3570 (when (> (length completions
) 2)
3571 (split-string completions
3572 "^'\\|^\"\\|;\\|'$\\|\"$" t
)))))
3574 (defun python-shell-completion-at-point (&optional process
)
3575 "Function for `completion-at-point-functions' in `inferior-python-mode'.
3576 Optional argument PROCESS forces completions to be retrieved
3577 using that one instead of current buffer's process."
3578 (setq process
(or process
(get-buffer-process (current-buffer))))
3579 (let* ((line-start (if (derived-mode-p 'inferior-python-mode
)
3580 ;; Working on a shell buffer: use prompt end.
3581 (cdr (python-util-comint-last-prompt))
3582 (line-beginning-position)))
3584 (when (string-match-p
3585 (rx (* space
) word-start
(or "from" "import") word-end space
)
3586 (buffer-substring-no-properties line-start
(point)))
3587 (buffer-substring-no-properties line-start
(point))))
3590 (if (not (re-search-backward
3592 (or whitespace open-paren close-paren string-delimiter
))
3596 (forward-char (length (match-string-no-properties 0)))
3600 (with-current-buffer (process-buffer process
)
3601 (python-util-comint-last-prompt)))
3603 (with-current-buffer (process-buffer process
)
3604 (when prompt-boundaries
3605 (buffer-substring-no-properties
3606 (car prompt-boundaries
) (cdr prompt-boundaries
)))))
3608 (with-current-buffer (process-buffer process
)
3609 (cond ((or (null prompt
)
3610 (< (point) (cdr prompt-boundaries
)))
3612 ((or (not python-shell-completion-native-enable
)
3613 ;; Even if native completion is enabled, for
3614 ;; pdb interaction always use the fallback
3615 ;; mechanism since the completer is changed.
3616 ;; Also, since pdb interaction is single-line
3617 ;; based, this is enough.
3618 (string-match-p python-shell-prompt-pdb-regexp prompt
))
3619 #'python-shell-completion-get-completions
)
3620 (t #'python-shell-completion-native-get-completions
)))))
3622 (completion-table-dynamic
3625 process import-statement
)))))
3627 (define-obsolete-function-alias
3628 'python-shell-completion-complete-at-point
3629 'python-shell-completion-at-point
3632 (defun python-shell-completion-complete-or-indent ()
3633 "Complete or indent depending on the context.
3634 If content before pointer is all whitespace, indent.
3635 If not try to complete."
3637 (if (string-match "^[[:space:]]*$"
3638 (buffer-substring (comint-line-beginning-position)
3640 (indent-for-tab-command)
3641 (completion-at-point)))
3644 ;;; PDB Track integration
3646 (defcustom python-pdbtrack-activate t
3647 "Non-nil makes Python shell enable pdbtracking."
3652 (defcustom python-pdbtrack-stacktrace-info-regexp
3653 "> \\([^\"(<]+\\)(\\([0-9]+\\))\\([?a-zA-Z0-9_<>]+\\)()"
3654 "Regular expression matching stacktrace information.
3655 Used to extract the current line and module being inspected."
3660 (defvar python-pdbtrack-tracked-buffer nil
3661 "Variable containing the value of the current tracked buffer.
3662 Never set this variable directly, use
3663 `python-pdbtrack-set-tracked-buffer' instead.")
3665 (defvar python-pdbtrack-buffers-to-kill nil
3666 "List of buffers to be deleted after tracking finishes.")
3668 (defun python-pdbtrack-set-tracked-buffer (file-name)
3669 "Set the buffer for FILE-NAME as the tracked buffer.
3670 Internally it uses the `python-pdbtrack-tracked-buffer' variable.
3671 Returns the tracked buffer."
3672 (let* ((file-name-prospect (concat (file-remote-p default-directory
)
3674 (file-buffer (get-file-buffer file-name-prospect
)))
3676 (setq python-pdbtrack-tracked-buffer file-buffer
)
3678 ((file-exists-p file-name-prospect
)
3679 (setq file-buffer
(find-file-noselect file-name-prospect
)))
3680 ((and (not (equal file-name file-name-prospect
))
3681 (file-exists-p file-name
))
3682 ;; Fallback to a locally available copy of the file.
3683 (setq file-buffer
(find-file-noselect file-name-prospect
))))
3684 (when (not (member file-buffer python-pdbtrack-buffers-to-kill
))
3685 (add-to-list 'python-pdbtrack-buffers-to-kill file-buffer
)))
3688 (defun python-pdbtrack-comint-output-filter-function (output)
3689 "Move overlay arrow to current pdb line in tracked buffer.
3690 Argument OUTPUT is a string with the output from the comint process."
3691 (when (and python-pdbtrack-activate
(not (string= output
"")))
3692 (let* ((full-output (ansi-color-filter-apply
3693 (buffer-substring comint-last-input-end
(point-max))))
3697 (insert full-output
)
3698 ;; When the debugger encounters a pdb.set_trace()
3699 ;; command, it prints a single stack frame. Sometimes
3700 ;; it prints a bit of extra information about the
3701 ;; arguments of the present function. When ipdb
3702 ;; encounters an exception, it prints the _entire_ stack
3703 ;; trace. To handle all of these cases, we want to find
3704 ;; the _last_ stack frame printed in the most recent
3705 ;; batch of output, then jump to the corresponding
3706 ;; file/line number.
3707 (goto-char (point-max))
3708 (when (re-search-backward python-pdbtrack-stacktrace-info-regexp nil t
)
3709 (setq line-number
(string-to-number
3710 (match-string-no-properties 2)))
3711 (match-string-no-properties 1)))))
3712 (if (and file-name line-number
)
3713 (let* ((tracked-buffer
3714 (python-pdbtrack-set-tracked-buffer file-name
))
3715 (shell-buffer (current-buffer))
3716 (tracked-buffer-window (get-buffer-window tracked-buffer
))
3717 (tracked-buffer-line-pos))
3718 (with-current-buffer tracked-buffer
3719 (set (make-local-variable 'overlay-arrow-string
) "=>")
3720 (set (make-local-variable 'overlay-arrow-position
) (make-marker))
3721 (setq tracked-buffer-line-pos
(progn
3722 (goto-char (point-min))
3723 (forward-line (1- line-number
))
3725 (when tracked-buffer-window
3727 tracked-buffer-window tracked-buffer-line-pos
))
3728 (set-marker overlay-arrow-position tracked-buffer-line-pos
))
3729 (pop-to-buffer tracked-buffer
)
3730 (switch-to-buffer-other-window shell-buffer
))
3731 (when python-pdbtrack-tracked-buffer
3732 (with-current-buffer python-pdbtrack-tracked-buffer
3733 (set-marker overlay-arrow-position nil
))
3734 (mapc #'(lambda (buffer)
3735 (ignore-errors (kill-buffer buffer
)))
3736 python-pdbtrack-buffers-to-kill
)
3737 (setq python-pdbtrack-tracked-buffer nil
3738 python-pdbtrack-buffers-to-kill nil
)))))
3742 ;;; Symbol completion
3744 (defun python-completion-at-point ()
3745 "Function for `completion-at-point-functions' in `python-mode'.
3746 For this to work as best as possible you should call
3747 `python-shell-send-buffer' from time to time so context in
3748 inferior Python process is updated properly."
3749 (let ((process (python-shell-get-process)))
3751 (python-shell-completion-at-point process
))))
3753 (define-obsolete-function-alias
3754 'python-completion-complete-at-point
3755 'python-completion-at-point
3761 (defcustom python-fill-comment-function
'python-fill-comment
3762 "Function to fill comments.
3763 This is the function used by `python-fill-paragraph' to
3768 (defcustom python-fill-string-function
'python-fill-string
3769 "Function to fill strings.
3770 This is the function used by `python-fill-paragraph' to
3775 (defcustom python-fill-decorator-function
'python-fill-decorator
3776 "Function to fill decorators.
3777 This is the function used by `python-fill-paragraph' to
3782 (defcustom python-fill-paren-function
'python-fill-paren
3783 "Function to fill parens.
3784 This is the function used by `python-fill-paragraph' to
3789 (defcustom python-fill-docstring-style
'pep-257
3790 "Style used to fill docstrings.
3791 This affects `python-fill-string' behavior with regards to
3792 triple quotes positioning.
3794 Possible values are `django', `onetwo', `pep-257', `pep-257-nn',
3795 `symmetric', and nil. A value of nil won't care about quotes
3796 position and will treat docstrings a normal string, any other
3797 value may result in one of the following docstring styles:
3802 Process foo, return bar.
3806 Process foo, return bar.
3808 If processing fails throw ProcessingError.
3813 \"\"\"Process foo, return bar.\"\"\"
3816 Process foo, return bar.
3818 If processing fails throw ProcessingError.
3824 \"\"\"Process foo, return bar.\"\"\"
3826 \"\"\"Process foo, return bar.
3828 If processing fails throw ProcessingError.
3834 \"\"\"Process foo, return bar.\"\"\"
3836 \"\"\"Process foo, return bar.
3838 If processing fails throw ProcessingError.
3843 \"\"\"Process foo, return bar.\"\"\"
3846 Process foo, return bar.
3848 If processing fails throw ProcessingError.
3851 (const :tag
"Don't format docstrings" nil
)
3852 (const :tag
"Django's coding standards style." django
)
3853 (const :tag
"One newline and start and Two at end style." onetwo
)
3854 (const :tag
"PEP-257 with 2 newlines at end of string." pep-257
)
3855 (const :tag
"PEP-257 with 1 newline at end of string." pep-257-nn
)
3856 (const :tag
"Symmetric style." symmetric
))
3859 (memq val
'(django onetwo pep-257 pep-257-nn symmetric nil
))))
3861 (defun python-fill-paragraph (&optional justify
)
3862 "`fill-paragraph-function' handling multi-line strings and possibly comments.
3863 If any of the current line is in or at the end of a multi-line string,
3864 fill the string or the paragraph of it that point is in, preserving
3865 the string's indentation.
3866 Optional argument JUSTIFY defines if the paragraph should be justified."
3871 ((python-syntax-context 'comment
)
3872 (funcall python-fill-comment-function justify
))
3873 ;; Strings/Docstrings
3874 ((save-excursion (or (python-syntax-context 'string
)
3875 (equal (string-to-syntax "|")
3876 (syntax-after (point)))))
3877 (funcall python-fill-string-function justify
))
3879 ((equal (char-after (save-excursion
3880 (python-nav-beginning-of-statement))) ?
@)
3881 (funcall python-fill-decorator-function justify
))
3883 ((or (python-syntax-context 'paren
)
3884 (looking-at (python-rx open-paren
))
3886 (skip-syntax-forward "^(" (line-end-position))
3887 (looking-at (python-rx open-paren
))))
3888 (funcall python-fill-paren-function justify
))
3891 (defun python-fill-comment (&optional justify
)
3892 "Comment fill function for `python-fill-paragraph'.
3893 JUSTIFY should be used (if applicable) as in `fill-paragraph'."
3894 (fill-comment-paragraph justify
))
3896 (defun python-fill-string (&optional justify
)
3897 "String fill function for `python-fill-paragraph'.
3898 JUSTIFY should be used (if applicable) as in `fill-paragraph'."
3899 (let* ((str-start-pos
3902 (or (python-syntax-context 'string
)
3903 (and (equal (string-to-syntax "|")
3904 (syntax-after (point)))
3906 (num-quotes (python-syntax-count-quotes
3907 (char-after str-start-pos
) str-start-pos
))
3910 (goto-char (+ str-start-pos num-quotes
))
3911 (or (re-search-forward (rx (syntax string-delimiter
)) nil t
)
3912 (goto-char (point-max)))
3915 ;; Docstring styles may vary for oneliners and multi-liners.
3916 (> (count-matches "\n" str-start-pos str-end-pos
) 0))
3918 (pcase python-fill-docstring-style
3919 ;; delimiters-style is a cons cell with the form
3920 ;; (START-NEWLINES . END-NEWLINES). When any of the sexps
3921 ;; is NIL means to not add any newlines for start or end
3922 ;; of docstring. See `python-fill-docstring-style' for a
3923 ;; graphic idea of each style.
3924 (`django
(cons 1 1))
3925 (`onetwo
(and multi-line-p
(cons 1 2)))
3926 (`pep-257
(and multi-line-p
(cons nil
2)))
3927 (`pep-257-nn
(and multi-line-p
(cons nil
1)))
3928 (`symmetric
(and multi-line-p
(cons 1 1)))))
3929 (fill-paragraph-function))
3931 (narrow-to-region str-start-pos str-end-pos
)
3932 (fill-paragraph justify
))
3934 (when (and (python-info-docstring-p) python-fill-docstring-style
)
3935 ;; Add the number of newlines indicated by the selected style
3936 ;; at the start of the docstring.
3937 (goto-char (+ str-start-pos num-quotes
))
3938 (delete-region (point) (progn
3939 (skip-syntax-forward "> ")
3941 (and (car delimiters-style
)
3942 (or (newline (car delimiters-style
)) t
)
3943 ;; Indent only if a newline is added.
3944 (indent-according-to-mode))
3945 ;; Add the number of newlines indicated by the selected style
3946 ;; at the end of the docstring.
3947 (goto-char (if (not (= str-end-pos
(point-max)))
3948 (- str-end-pos num-quotes
)
3950 (delete-region (point) (progn
3951 (skip-syntax-backward "> ")
3953 (and (cdr delimiters-style
)
3954 ;; Add newlines only if string ends.
3955 (not (= str-end-pos
(point-max)))
3956 (or (newline (cdr delimiters-style
)) t
)
3957 ;; Again indent only if a newline is added.
3958 (indent-according-to-mode))))) t
)
3960 (defun python-fill-decorator (&optional _justify
)
3961 "Decorator fill function for `python-fill-paragraph'.
3962 JUSTIFY should be used (if applicable) as in `fill-paragraph'."
3965 (defun python-fill-paren (&optional justify
)
3966 "Paren fill function for `python-fill-paragraph'.
3967 JUSTIFY should be used (if applicable) as in `fill-paragraph'."
3969 (narrow-to-region (progn
3970 (while (python-syntax-context 'paren
)
3971 (goto-char (1- (point))))
3972 (line-beginning-position))
3974 (when (not (python-syntax-context 'paren
))
3976 (when (not (python-syntax-context 'paren
))
3977 (skip-syntax-backward "^)")))
3978 (while (and (python-syntax-context 'paren
)
3980 (goto-char (1+ (point))))
3982 (let ((paragraph-start "\f\\|[ \t]*$")
3983 (paragraph-separate ",")
3984 (fill-paragraph-function))
3985 (goto-char (point-min))
3986 (fill-paragraph justify
))
3989 (python-indent-line)
3990 (goto-char (line-end-position))))
3996 (defcustom python-skeleton-autoinsert nil
3997 "Non-nil means template skeletons will be automagically inserted.
3998 This happens when pressing \"if<SPACE>\", for example, to prompt for
4004 (define-obsolete-variable-alias
4005 'python-use-skeletons
'python-skeleton-autoinsert
"24.3")
4007 (defvar python-skeleton-available
'()
4008 "Internal list of available skeletons.")
4010 (define-abbrev-table 'python-mode-skeleton-abbrev-table
()
4011 "Abbrev table for Python mode skeletons."
4013 ;; Allow / inside abbrevs.
4014 :regexp
"\\(?:^\\|[^/]\\)\\<\\([[:word:]/]+\\)\\W*"
4015 ;; Only expand in code.
4016 :enable-function
(lambda ()
4018 (not (python-syntax-comment-or-string-p))
4019 python-skeleton-autoinsert
)))
4021 (defmacro python-skeleton-define
(name doc
&rest skel
)
4022 "Define a `python-mode' skeleton using NAME DOC and SKEL.
4023 The skeleton will be bound to python-skeleton-NAME and will
4024 be added to `python-mode-skeleton-abbrev-table'."
4025 (declare (indent 2))
4026 (let* ((name (symbol-name name
))
4027 (function-name (intern (concat "python-skeleton-" name
))))
4029 (define-abbrev python-mode-skeleton-abbrev-table
4030 ,name
"" ',function-name
:system t
)
4031 (setq python-skeleton-available
4032 (cons ',function-name python-skeleton-available
))
4033 (define-skeleton ,function-name
4035 (format "Insert %s statement." name
))
4038 (define-abbrev-table 'python-mode-abbrev-table
()
4039 "Abbrev table for Python mode."
4040 :parents
(list python-mode-skeleton-abbrev-table
))
4042 (defmacro python-define-auxiliary-skeleton
(name &optional doc
&rest skel
)
4043 "Define a `python-mode' auxiliary skeleton using NAME DOC and SKEL.
4044 The skeleton will be bound to python-skeleton-NAME."
4045 (declare (indent 2))
4046 (let* ((name (symbol-name name
))
4047 (function-name (intern (concat "python-skeleton--" name
)))
4048 (msg (funcall (if (fboundp 'format-message
) #'format-message
#'format
)
4049 "Add `%s' clause? " name
)))
4052 `(< ,(format "%s:" name
) \n \n
4054 `(define-skeleton ,function-name
4056 (format "Auxiliary skeleton for %s statement." name
))
4058 (unless (y-or-n-p ,msg
)
4062 (python-define-auxiliary-skeleton else
)
4064 (python-define-auxiliary-skeleton except
)
4066 (python-define-auxiliary-skeleton finally
)
4068 (python-skeleton-define if nil
4072 ("other condition, %s: "
4076 '(python-skeleton--else) | ^
)
4078 (python-skeleton-define while nil
4082 '(python-skeleton--else) | ^
)
4084 (python-skeleton-define for nil
4088 '(python-skeleton--else) | ^
)
4090 (python-skeleton-define import nil
4091 "Import from module: "
4092 "from " str
& " " | -
5
4094 ("Identifier: " str
", ") -
2 \n _
)
4096 (python-skeleton-define try nil
4102 "except " str
":" \n
4105 '(python-skeleton--except)
4106 '(python-skeleton--else)
4107 '(python-skeleton--finally) | ^
)
4109 (python-skeleton-define def nil
4111 "def " str
"(" ("Parameter, %s: "
4112 (unless (equal ?\
( (char-before)) ", ")
4114 "\"\"\"" -
"\"\"\"" \n
4117 (python-skeleton-define class nil
4119 "class " str
"(" ("Inheritance, %s: "
4120 (unless (equal ?\
( (char-before)) ", ")
4124 "\"\"\"" -
"\"\"\"" \n
4127 (defun python-skeleton-add-menu-items ()
4128 "Add menu items to Python->Skeletons menu."
4129 (let ((skeletons (sort python-skeleton-available
'string
<)))
4130 (dolist (skeleton skeletons
)
4132 nil
'("Python" "Skeletons")
4134 "Insert %s" (nth 2 (split-string (symbol-name skeleton
) "-")))
4139 (defcustom python-ffap-setup-code
4141 def __FFAP_get_module_path(objstr):
4145 # NameError exceptions are delayed until this point.
4147 module = inspect.getmodule(obj)
4148 filename = module.__file__
4149 ext = os.path.splitext(filename)[1]
4150 if ext in ('.pyc', '.pyo'):
4151 # Point to the source file.
4152 filename = filename[:-1]
4153 if os.path.exists(filename):
4158 "Python code to get a module path."
4162 (defcustom python-ffap-string-code
4163 "__FFAP_get_module_path('''%s''')"
4164 "Python code used to get a string with the path of a module."
4168 (defun python-ffap-module-path (module)
4169 "Function for `ffap-alist' to return path for MODULE."
4171 (and (derived-mode-p 'inferior-python-mode
)
4172 (get-buffer-process (current-buffer)))
4173 (python-shell-get-process))))
4177 (python-shell-send-string-no-output
4179 python-ffap-setup-code
4180 "\nprint (" (format python-ffap-string-code module
) ")")
4182 (unless (zerop (length module-file
))
4183 (python-util-strip-string module-file
))))))
4187 (eval-after-load "ffap"
4189 (push '(python-mode . python-ffap-module-path
) ffap-alist
)
4190 (push '(inferior-python-mode . python-ffap-module-path
) ffap-alist
)))
4195 (defcustom python-check-command
4196 (or (executable-find "pyflakes")
4197 (executable-find "epylint")
4198 "install pyflakes, pylint or something else")
4199 "Command used to check a Python file."
4203 (defcustom python-check-buffer-name
4204 "*Python check: %s*"
4205 "Buffer name used for check commands."
4209 (defvar python-check-custom-command nil
4211 ;; XXX: Avoid `defvar-local' for compat with Emacs<24.3
4212 (make-variable-buffer-local 'python-check-custom-command
)
4214 (defun python-check (command)
4215 "Check a Python file (default current buffer's file).
4216 Runs COMMAND, a shell command, as if by `compile'.
4217 See `python-check-command' for the default."
4219 (list (read-string "Check command: "
4220 (or python-check-custom-command
4221 (concat python-check-command
" "
4222 (shell-quote-argument
4224 (let ((name (buffer-file-name)))
4226 (file-name-nondirectory name
)))
4228 (setq python-check-custom-command command
)
4229 (save-some-buffers (not compilation-ask-about-save
) nil
)
4230 (python-shell-with-environment
4231 (compilation-start command nil
4233 (format python-check-buffer-name command
)))))
4238 (defcustom python-eldoc-setup-code
4239 "def __PYDOC_get_help(obj):
4243 str_type = basestring
4246 if isinstance(obj, str_type):
4247 obj = eval(obj, globals())
4248 doc = inspect.getdoc(obj)
4249 if not doc and callable(obj):
4251 if inspect.isclass(obj) and hasattr(obj, '__init__'):
4252 target = obj.__init__
4258 args = inspect.formatargspec(
4259 *inspect.getargspec(target)
4262 doc = '{objtype} {name}{args}'.format(
4263 objtype=objtype, name=name, args=args
4266 doc = doc.splitlines()[0]
4270 "Python code to setup documentation retrieval."
4274 (defcustom python-eldoc-string-code
4275 "__PYDOC_get_help('''%s''')"
4276 "Python code used to get a string with the documentation of an object."
4280 (defun python-eldoc--get-symbol-at-point ()
4281 "Get the current symbol for eldoc.
4282 Returns the current symbol handling point within arguments."
4284 (let ((start (python-syntax-context 'paren
)))
4289 (memq (char-syntax (char-after)) '(?\ ?-
)))
4290 ;; Try to adjust to closest symbol if not in one.
4291 (python-util-forward-comment -
1)))
4292 (python-info-current-symbol t
)))
4294 (defun python-eldoc--get-doc-at-point (&optional force-input force-process
)
4295 "Internal implementation to get documentation at point.
4296 If not FORCE-INPUT is passed then what `python-eldoc--get-symbol-at-point'
4297 returns will be used. If not FORCE-PROCESS is passed what
4298 `python-shell-get-process' returns is used."
4299 (let ((process (or force-process
(python-shell-get-process))))
4301 (let* ((input (or force-input
4302 (python-eldoc--get-symbol-at-point)))
4305 ;; Prevent resizing the echo area when iPython is
4306 ;; enabled. Bug#18794.
4307 (python-util-strip-string
4308 (python-shell-send-string-no-output
4310 python-eldoc-setup-code
4311 "\nprint(" (format python-eldoc-string-code input
) ")")
4313 (unless (zerop (length docstring
))
4316 (defvar-local python-eldoc-get-doc t
4317 "Non-nil means eldoc should fetch the documentation
4318 automatically. Set to nil by `python-eldoc-function' if
4319 `python-eldoc-function-timeout-permanent' is non-nil and
4320 `python-eldoc-function' times out.")
4322 (defcustom python-eldoc-function-timeout
1
4323 "Timeout for `python-eldoc-function' in seconds."
4328 (defcustom python-eldoc-function-timeout-permanent t
4329 "Non-nil means that when `python-eldoc-function' times out
4330 `python-eldoc-get-doc' will be set to nil"
4335 (defun python-eldoc-function ()
4336 "`eldoc-documentation-function' for Python.
4337 For this to work as best as possible you should call
4338 `python-shell-send-buffer' from time to time so context in
4339 inferior Python process is updated properly.
4341 If `python-eldoc-function-timeout' seconds elapse before this
4342 function returns then if
4343 `python-eldoc-function-timeout-permanent' is non-nil
4344 `python-eldoc-get-doc' will be set to nil and eldoc will no
4345 longer return the documentation at the point automatically.
4347 Set `python-eldoc-get-doc' to t to reenable eldoc documentation
4349 (when python-eldoc-get-doc
4350 (with-timeout (python-eldoc-function-timeout
4351 (if python-eldoc-function-timeout-permanent
4353 (message "Eldoc echo-area display muted in this buffer, see `python-eldoc-function'")
4354 (setq python-eldoc-get-doc nil
))
4355 (message "`python-eldoc-function' timed out, see `python-eldoc-function-timeout'")))
4356 (python-eldoc--get-doc-at-point))))
4358 (defun python-eldoc-at-point (symbol)
4359 "Get help on SYMBOL using `help'.
4360 Interactively, prompt for symbol."
4362 (let ((symbol (python-eldoc--get-symbol-at-point))
4363 (enable-recursive-minibuffers t
))
4364 (list (read-string (if symbol
4365 (format "Describe symbol (default %s): " symbol
)
4366 "Describe symbol: ")
4368 (message (python-eldoc--get-doc-at-point symbol
)))
4370 (defun python-describe-at-point (symbol process
)
4371 (interactive (list (python-info-current-symbol)
4372 (python-shell-get-process)))
4373 (comint-send-string process
(concat "help('" symbol
"')\n")))
4378 (defun python-hideshow-forward-sexp-function (arg)
4379 "Python specific `forward-sexp' function for `hs-minor-mode'.
4380 Argument ARG is ignored."
4381 arg
; Shut up, byte compiler.
4382 (python-nav-end-of-defun)
4383 (unless (python-info-current-line-empty-p)
4389 (defvar python-imenu-format-item-label-function
4390 'python-imenu-format-item-label
4391 "Imenu function used to format an item label.
4392 It must be a function with two arguments: TYPE and NAME.")
4394 (defvar python-imenu-format-parent-item-label-function
4395 'python-imenu-format-parent-item-label
4396 "Imenu function used to format a parent item label.
4397 It must be a function with two arguments: TYPE and NAME.")
4399 (defvar python-imenu-format-parent-item-jump-label-function
4400 'python-imenu-format-parent-item-jump-label
4401 "Imenu function used to format a parent jump item label.
4402 It must be a function with two arguments: TYPE and NAME.")
4404 (defun python-imenu-format-item-label (type name
)
4405 "Return Imenu label for single node using TYPE and NAME."
4406 (format "%s (%s)" name type
))
4408 (defun python-imenu-format-parent-item-label (type name
)
4409 "Return Imenu label for parent node using TYPE and NAME."
4410 (format "%s..." (python-imenu-format-item-label type name
)))
4412 (defun python-imenu-format-parent-item-jump-label (type _name
)
4413 "Return Imenu label for parent node jump using TYPE and NAME."
4414 (if (string= type
"class")
4415 "*class definition*"
4416 "*function definition*"))
4418 (defun python-imenu--put-parent (type name pos tree
)
4419 "Add the parent with TYPE, NAME and POS to TREE."
4421 (funcall python-imenu-format-item-label-function type name
))
4423 (funcall python-imenu-format-parent-item-jump-label-function type name
)))
4426 (cons label
(cons (cons jump-label pos
) tree
)))))
4428 (defun python-imenu--build-tree (&optional min-indent prev-indent tree
)
4429 "Recursively build the tree of nested definitions of a node.
4430 Arguments MIN-INDENT, PREV-INDENT and TREE are internal and should
4431 not be passed explicitly unless you know what you are doing."
4432 (setq min-indent
(or min-indent
0)
4433 prev-indent
(or prev-indent python-indent-offset
))
4434 (let* ((pos (python-nav-backward-defun))
4436 (name (when (and pos
(looking-at python-nav-beginning-of-defun-regexp
))
4437 (let ((split (split-string (match-string-no-properties 0))))
4438 (setq type
(car split
))
4441 (funcall python-imenu-format-item-label-function type name
)))
4442 (indent (current-indentation))
4443 (children-indent-limit (+ python-indent-offset min-indent
)))
4445 ;; Nothing found, probably near to bobp.
4447 ((<= indent min-indent
)
4448 ;; The current indentation points that this is a parent
4449 ;; node, add it to the tree and stop recursing.
4450 (python-imenu--put-parent type name pos tree
))
4452 (python-imenu--build-tree
4455 (if (<= indent children-indent-limit
)
4456 ;; This lies within the children indent offset range,
4457 ;; so it's a normal child of its parent (i.e., not
4458 ;; a child of a child).
4459 (cons (cons label pos
) tree
)
4460 ;; Oh no, a child of a child?! Fear not, we
4461 ;; know how to roll. We recursively parse these by
4462 ;; swapping prev-indent and min-indent plus adding this
4463 ;; newly found item to a fresh subtree. This works, I
4466 (python-imenu--build-tree
4467 prev-indent indent
(list (cons label pos
)))
4470 (defun python-imenu-create-index ()
4471 "Return tree Imenu alist for the current Python buffer.
4472 Change `python-imenu-format-item-label-function',
4473 `python-imenu-format-parent-item-label-function',
4474 `python-imenu-format-parent-item-jump-label-function' to
4475 customize how labels are formatted."
4476 (goto-char (point-max))
4479 (while (setq tree
(python-imenu--build-tree))
4480 (setq index
(cons tree index
)))
4483 (defun python-imenu-create-flat-index (&optional alist prefix
)
4484 "Return flat outline of the current Python buffer for Imenu.
4485 Optional argument ALIST is the tree to be flattened; when nil
4486 `python-imenu-build-index' is used with
4487 `python-imenu-format-parent-item-jump-label-function'
4488 `python-imenu-format-parent-item-label-function'
4489 `python-imenu-format-item-label-function' set to
4490 (lambda (type name) name)
4491 Optional argument PREFIX is used in recursive calls and should
4492 not be passed explicitly.
4499 (\"decorator\" . 173)
4502 (\"wrapped_f\" . 393))))
4508 (\"decorator\" . 173)
4509 (\"decorator.wrap\" . 353)
4510 (\"decorator.wrapped_f\" . 393))"
4511 ;; Inspired by imenu--flatten-index-alist removed in revno 21853.
4516 (let ((name (if prefix
4517 (concat prefix
"." (car item
))
4520 (cond ((or (numberp pos
) (markerp pos
))
4521 (list (cons name pos
)))
4524 (cons name
(cdar pos
))
4525 (python-imenu-create-flat-index (cddr item
) name
))))))
4527 (let* ((fn (lambda (_type name
) name
))
4528 (python-imenu-format-item-label-function fn
)
4529 (python-imenu-format-parent-item-label-function fn
)
4530 (python-imenu-format-parent-item-jump-label-function fn
))
4531 (python-imenu-create-index))))))
4536 (defun python-info-current-defun (&optional include-type
)
4537 "Return name of surrounding function with Python compatible dotty syntax.
4538 Optional argument INCLUDE-TYPE indicates to include the type of the defun.
4539 This function can be used as the value of `add-log-current-defun-function'
4540 since it returns nil if point is not inside a defun."
4546 (starting-indentation (current-indentation))
4547 (starting-pos (point))
4552 (while (python-nav-beginning-of-defun 1)
4553 (when (save-match-data
4555 (or (not last-indent
)
4556 (< (current-indentation) last-indent
))
4560 ;; If this is the first run, we may add
4561 ;; the current defun at point.
4562 (setq first-run nil
)
4563 (goto-char starting-pos
)
4564 (python-nav-beginning-of-statement)
4565 (beginning-of-line 1)
4567 python-nav-beginning-of-defun-regexp
)))
4571 (+ (current-indentation)
4572 python-indent-offset
)))
4573 (if (< starting-indentation min-indent
)
4574 ;; If the starting indentation is not
4575 ;; within the min defun indent make the
4578 ;; Else go to the end of defun and add
4579 ;; up the current indentation to the
4581 (python-nav-end-of-defun)
4583 (if (>= (current-indentation) min-indent
)
4584 (1+ (current-indentation))
4586 (save-match-data (setq last-indent
(current-indentation)))
4587 (if (or (not include-type
) type
)
4588 (setq names
(cons (match-string-no-properties 1) names
))
4589 (let ((match (split-string (match-string-no-properties 0))))
4590 (setq type
(car match
))
4591 (setq names
(cons (cadr match
) names
)))))
4592 ;; Stop searching ASAP.
4593 (and (= (current-indentation) 0) (throw 'exit t
))))
4595 (concat (and type
(format "%s " type
))
4596 (mapconcat 'identity names
".")))))))
4598 (defun python-info-current-symbol (&optional replace-self
)
4599 "Return current symbol using dotty syntax.
4600 With optional argument REPLACE-SELF convert \"self\" to current
4603 (and (not (python-syntax-comment-or-string-p))
4604 (with-syntax-table python-dotty-syntax-table
4605 (let ((sym (symbol-at-point)))
4607 (substring-no-properties (symbol-name sym
))))))))
4609 (if (not replace-self
)
4611 (let ((current-defun (python-info-current-defun)))
4612 (if (not current-defun
)
4614 (replace-regexp-in-string
4615 (python-rx line-start word-start
"self" word-end ?.
)
4617 (mapconcat 'identity
4618 (butlast (split-string current-defun
"\\."))
4622 (defun python-info-statement-starts-block-p ()
4623 "Return non-nil if current statement opens a block."
4625 (python-nav-beginning-of-statement)
4626 (looking-at (python-rx block-start
))))
4628 (defun python-info-statement-ends-block-p ()
4629 "Return non-nil if point is at end of block."
4630 (let ((end-of-block-pos (save-excursion
4631 (python-nav-end-of-block)))
4632 (end-of-statement-pos (save-excursion
4633 (python-nav-end-of-statement))))
4634 (and end-of-block-pos end-of-statement-pos
4635 (= end-of-block-pos end-of-statement-pos
))))
4637 (defun python-info-beginning-of-statement-p ()
4638 "Return non-nil if point is at beginning of statement."
4639 (= (point) (save-excursion
4640 (python-nav-beginning-of-statement)
4643 (defun python-info-end-of-statement-p ()
4644 "Return non-nil if point is at end of statement."
4645 (= (point) (save-excursion
4646 (python-nav-end-of-statement)
4649 (defun python-info-beginning-of-block-p ()
4650 "Return non-nil if point is at beginning of block."
4651 (and (python-info-beginning-of-statement-p)
4652 (python-info-statement-starts-block-p)))
4654 (defun python-info-end-of-block-p ()
4655 "Return non-nil if point is at end of block."
4656 (and (python-info-end-of-statement-p)
4657 (python-info-statement-ends-block-p)))
4659 (define-obsolete-function-alias
4660 'python-info-closing-block
4661 'python-info-dedenter-opening-block-position
"24.4")
4663 (defun python-info-dedenter-opening-block-position ()
4664 "Return the point of the closest block the current line closes.
4665 Returns nil if point is not on a dedenter statement or no opening
4666 block can be detected. The latter case meaning current file is
4667 likely an invalid python file."
4668 (let ((positions (python-info-dedenter-opening-block-positions))
4669 (indentation (current-indentation))
4671 (while (and (not position
)
4674 (goto-char (car positions
))
4675 (if (<= (current-indentation) indentation
)
4676 (setq position
(car positions
))
4677 (setq positions
(cdr positions
)))))
4680 (defun python-info-dedenter-opening-block-positions ()
4681 "Return points of blocks the current line may close sorted by closer.
4682 Returns nil if point is not on a dedenter statement or no opening
4683 block can be detected. The latter case meaning current file is
4684 likely an invalid python file."
4686 (let ((dedenter-pos (python-info-dedenter-statement-p)))
4688 (goto-char dedenter-pos
)
4689 (let* ((pairs '(("elif" "elif" "if")
4690 ("else" "if" "elif" "except" "for" "while")
4691 ("except" "except" "try")
4692 ("finally" "else" "except" "try")))
4693 (dedenter (match-string-no-properties 0))
4694 (possible-opening-blocks (cdr (assoc-string dedenter pairs
)))
4695 (collected-indentations)
4698 (while (python-nav--syntactically
4700 (re-search-backward (python-rx block-start
) nil t
))
4702 (let ((indentation (current-indentation)))
4703 (when (and (not (memq indentation collected-indentations
))
4704 (or (not collected-indentations
)
4705 (< indentation
(apply #'min collected-indentations
))))
4706 (setq collected-indentations
4707 (cons indentation collected-indentations
))
4708 (when (member (match-string-no-properties 0)
4709 possible-opening-blocks
)
4710 (setq opening-blocks
(cons (point) opening-blocks
))))
4711 (when (zerop indentation
)
4712 (throw 'exit nil
)))))
4714 (nreverse opening-blocks
))))))
4716 (define-obsolete-function-alias
4717 'python-info-closing-block-message
4718 'python-info-dedenter-opening-block-message
"24.4")
4720 (defun python-info-dedenter-opening-block-message ()
4721 "Message the first line of the block the current statement closes."
4722 (let ((point (python-info-dedenter-opening-block-position)))
4726 (message "Closes %s" (save-excursion
4729 (point) (line-end-position))))))))
4731 (defun python-info-dedenter-statement-p ()
4732 "Return point if current statement is a dedenter.
4733 Sets `match-data' to the keyword that starts the dedenter
4736 (python-nav-beginning-of-statement)
4737 (when (and (not (python-syntax-context-type))
4738 (looking-at (python-rx dedenter
)))
4741 (defun python-info-line-ends-backslash-p (&optional line-number
)
4742 "Return non-nil if current line ends with backslash.
4743 With optional argument LINE-NUMBER, check that line instead."
4748 (python-util-goto-line line-number
))
4749 (while (and (not (eobp))
4750 (goto-char (line-end-position))
4751 (python-syntax-context 'paren
)
4752 (not (equal (char-before (point)) ?
\\)))
4754 (when (equal (char-before) ?
\\)
4757 (defun python-info-beginning-of-backslash (&optional line-number
)
4758 "Return the point where the backslashed line start.
4759 Optional argument LINE-NUMBER forces the line number to check against."
4764 (python-util-goto-line line-number
))
4765 (when (python-info-line-ends-backslash-p)
4766 (while (save-excursion
4767 (goto-char (line-beginning-position))
4768 (python-syntax-context 'paren
))
4770 (back-to-indentation)
4773 (defun python-info-continuation-line-p ()
4774 "Check if current line is continuation of another.
4775 When current line is continuation of another return the point
4776 where the continued line ends."
4780 (let* ((context-type (progn
4781 (back-to-indentation)
4782 (python-syntax-context-type)))
4783 (line-start (line-number-at-pos))
4784 (context-start (when context-type
4785 (python-syntax-context context-type
))))
4786 (cond ((equal context-type
'paren
)
4787 ;; Lines inside a paren are always a continuation line
4788 ;; (except the first one).
4789 (python-util-forward-comment -
1)
4791 ((member context-type
'(string comment
))
4792 ;; move forward an roll again
4793 (goto-char context-start
)
4794 (python-util-forward-comment)
4795 (python-info-continuation-line-p))
4797 ;; Not within a paren, string or comment, the only way
4798 ;; we are dealing with a continuation line is that
4799 ;; previous line contains a backslash, and this can
4800 ;; only be the previous line from current
4801 (back-to-indentation)
4802 (python-util-forward-comment -
1)
4803 (when (and (equal (1- line-start
) (line-number-at-pos))
4804 (python-info-line-ends-backslash-p))
4805 (point-marker))))))))
4807 (defun python-info-block-continuation-line-p ()
4808 "Return non-nil if current line is a continuation of a block."
4810 (when (python-info-continuation-line-p)
4812 (back-to-indentation)
4813 (when (looking-at (python-rx block-start
))
4816 (defun python-info-assignment-statement-p (&optional current-line-only
)
4817 "Check if current line is an assignment.
4818 With argument CURRENT-LINE-ONLY is non-nil, don't follow any
4819 continuations, just check the if current line is an assignment."
4822 (if current-line-only
4823 (back-to-indentation)
4824 (python-nav-beginning-of-statement))
4826 (re-search-forward (python-rx not-simple-operator
4828 (group not-simple-operator
))
4829 (line-end-position) t
)
4832 ;; The assignment operator should not be inside a string.
4833 (backward-char (length (match-string-no-properties 1)))
4834 (setq found
(not (python-syntax-context-type)))))
4836 (skip-syntax-forward " ")
4839 ;; TODO: rename to clarify this is only for the first continuation
4840 ;; line or remove it and move its body to `python-indent-context'.
4841 (defun python-info-assignment-continuation-line-p ()
4842 "Check if current line is the first continuation of an assignment.
4843 When current line is continuation of another with an assignment
4844 return the point of the first non-blank character after the
4847 (when (python-info-continuation-line-p)
4849 (python-info-assignment-statement-p t
))))
4851 (defun python-info-looking-at-beginning-of-defun (&optional syntax-ppss
)
4852 "Check if point is at `beginning-of-defun' using SYNTAX-PPSS."
4853 (and (not (python-syntax-context-type (or syntax-ppss
(syntax-ppss))))
4855 (beginning-of-line 1)
4856 (looking-at python-nav-beginning-of-defun-regexp
))))
4858 (defun python-info-current-line-comment-p ()
4859 "Return non-nil if current line is a comment line."
4861 (or (char-after (+ (line-beginning-position) (current-indentation))) ?_
)
4864 (defun python-info-current-line-empty-p ()
4865 "Return non-nil if current line is empty, ignoring whitespace."
4867 (beginning-of-line 1)
4869 (python-rx line-start
(* whitespace
)
4870 (group (* not-newline
))
4871 (* whitespace
) line-end
))
4872 (string-equal "" (match-string-no-properties 1))))
4874 (defun python-info-docstring-p (&optional syntax-ppss
)
4875 "Return non-nil if point is in a docstring.
4876 When optional argument SYNTAX-PPSS is given, use that instead of
4877 point's current `syntax-ppss'."
4878 ;;; https://www.python.org/dev/peps/pep-0257/#what-is-a-docstring
4880 (when (and syntax-ppss
(python-syntax-context 'string syntax-ppss
))
4881 (goto-char (nth 8 syntax-ppss
)))
4882 (python-nav-beginning-of-statement)
4884 (indentation (current-indentation))
4885 (backward-sexp-point)
4886 (re (concat "[uU]?[rR]?"
4887 (python-rx string-delimiter
))))
4889 (not (python-info-assignment-statement-p))
4891 ;; Allow up to two consecutive docstrings only.
4894 (let (last-backward-sexp-point)
4895 (while (save-excursion
4896 (python-nav-backward-sexp)
4897 (setq backward-sexp-point
(point))
4898 (and (= indentation
(current-indentation))
4899 ;; Make sure we're always moving point.
4900 ;; If we get stuck in the same position
4901 ;; on consecutive loop iterations,
4903 (prog1 (not (eql last-backward-sexp-point
4904 backward-sexp-point
))
4905 (setq last-backward-sexp-point
4906 backward-sexp-point
))
4908 (concat "[uU]?[rR]?"
4909 (python-rx string-delimiter
)))))
4910 ;; Previous sexp was a string, restore point.
4911 (goto-char backward-sexp-point
)
4914 (python-util-forward-comment -
1)
4915 (python-nav-beginning-of-statement)
4917 ((python-info-assignment-statement-p) t
)
4918 ((python-info-looking-at-beginning-of-defun))
4921 (defun python-info-encoding-from-cookie ()
4922 "Detect current buffer's encoding from its coding cookie.
4923 Returns the encoding as a symbol."
4924 (let ((first-two-lines
4928 (goto-char (point-min))
4930 (buffer-substring-no-properties
4933 (when (string-match (python-rx coding-cookie
) first-two-lines
)
4934 (intern (match-string-no-properties 1 first-two-lines
)))))
4936 (defun python-info-encoding ()
4937 "Return encoding for file.
4938 Try `python-info-encoding-from-cookie', if none is found then
4940 ;; If no encoding is defined, then it's safe to use UTF-8: Python 2
4941 ;; uses ASCII as default while Python 3 uses UTF-8. This means that
4942 ;; in the worst case scenario python.el will make things work for
4943 ;; Python 2 files with unicode data and no encoding defined.
4944 (or (python-info-encoding-from-cookie)
4948 ;;; Utility functions
4950 (defun python-util-goto-line (line-number)
4951 "Move point to LINE-NUMBER."
4952 (goto-char (point-min))
4953 (forward-line (1- line-number
)))
4955 ;; Stolen from org-mode
4956 (defun python-util-clone-local-variables (from-buffer &optional regexp
)
4957 "Clone local variables from FROM-BUFFER.
4958 Optional argument REGEXP selects variables to clone and defaults
4962 (and (symbolp (car pair
))
4963 (string-match (or regexp
"^python-")
4964 (symbol-name (car pair
)))
4965 (set (make-local-variable (car pair
))
4967 (buffer-local-variables from-buffer
)))
4969 (defvar comint-last-prompt-overlay
) ; Shut up, byte compiler.
4971 (defun python-util-comint-last-prompt ()
4972 "Return comint last prompt overlay start and end.
4973 This is for compatibility with Emacs < 24.4."
4974 (cond ((bound-and-true-p comint-last-prompt-overlay
)
4975 (cons (overlay-start comint-last-prompt-overlay
)
4976 (overlay-end comint-last-prompt-overlay
)))
4977 ((bound-and-true-p comint-last-prompt
)
4981 (defun python-util-forward-comment (&optional direction
)
4982 "Python mode specific version of `forward-comment'.
4983 Optional argument DIRECTION defines the direction to move to."
4984 (let ((comment-start (python-syntax-context 'comment
))
4985 (factor (if (< (or direction
0) 0)
4989 (goto-char comment-start
))
4990 (forward-comment factor
)))
4992 (defun python-util-list-directories (directory &optional predicate max-depth
)
4993 "List DIRECTORY subdirs, filtered by PREDICATE and limited by MAX-DEPTH.
4994 Argument PREDICATE defaults to `identity' and must be a function
4995 that takes one argument (a full path) and returns non-nil for
4996 allowed files. When optional argument MAX-DEPTH is non-nil, stop
4997 searching when depth is reached, else don't limit."
4998 (let* ((dir (expand-file-name directory
))
4999 (dir-length (length dir
))
5000 (predicate (or predicate
#'identity
))
5001 (to-scan (list dir
))
5004 (let ((current-dir (car to-scan
)))
5005 (when (funcall predicate current-dir
)
5006 (setq tally
(cons current-dir tally
)))
5007 (setq to-scan
(append (cdr to-scan
)
5008 (python-util-list-files
5009 current-dir
#'file-directory-p
)
5011 (when (and max-depth
5013 (length (split-string
5014 (substring current-dir dir-length
)
5016 (setq to-scan nil
))))
5019 (defun python-util-list-files (dir &optional predicate
)
5020 "List files in DIR, filtering with PREDICATE.
5021 Argument PREDICATE defaults to `identity' and must be a function
5022 that takes one argument (a full path) and returns non-nil for
5024 (let ((dir-name (file-name-as-directory dir
)))
5026 (mapcar (lambda (file-name)
5027 (let ((full-file-name (expand-file-name file-name dir-name
)))
5029 (not (member file-name
'("." "..")))
5030 (funcall (or predicate
#'identity
) full-file-name
))
5031 (list full-file-name
))))
5032 (directory-files dir-name
)))))
5034 (defun python-util-list-packages (dir &optional max-depth
)
5035 "List packages in DIR, limited by MAX-DEPTH.
5036 When optional argument MAX-DEPTH is non-nil, stop searching when
5037 depth is reached, else don't limit."
5038 (let* ((dir (expand-file-name dir
))
5039 (parent-dir (file-name-directory
5040 (directory-file-name
5041 (file-name-directory
5042 (file-name-as-directory dir
)))))
5043 (subpath-length (length parent-dir
)))
5046 (replace-regexp-in-string
5047 (rx (or ?
\\ ?
/)) "." (substring file-name subpath-length
)))
5048 (python-util-list-directories
5049 (directory-file-name dir
)
5051 (file-exists-p (expand-file-name "__init__.py" dir
)))
5054 (defun python-util-popn (lst n
)
5055 "Return LST first N elements.
5056 N should be an integer, when negative its opposite is used.
5057 When N is bigger than the length of LST, the list is
5059 (let* ((n (min (abs n
)))
5065 (setq acc
(cons (car lst
) acc
)
5070 (defun python-util-strip-string (string)
5071 "Strip STRING whitespace and newlines from end and beginning."
5072 (replace-regexp-in-string
5073 (rx (or (: string-start
(* (any whitespace ?
\r ?
\n)))
5074 (: (* (any whitespace ?
\r ?
\n)) string-end
)))
5078 (defun python-util-valid-regexp-p (regexp)
5079 "Return non-nil if REGEXP is valid."
5080 (ignore-errors (string-match regexp
"") t
))
5083 (defun python-electric-pair-string-delimiter ()
5084 (when (and electric-pair-mode
5085 (memq last-command-event
'(?
\" ?
\'))
5087 (while (eq (char-before (- (point) count
)) last-command-event
)
5090 (eq (char-after) last-command-event
))
5091 (save-excursion (insert (make-string 2 last-command-event
)))))
5093 (defvar electric-indent-inhibit
)
5096 (define-derived-mode python-mode prog-mode
"Python"
5097 "Major mode for editing Python files.
5099 \\{python-mode-map}"
5100 (set (make-local-variable 'tab-width
) 8)
5101 (set (make-local-variable 'indent-tabs-mode
) nil
)
5103 (set (make-local-variable 'comment-start
) "# ")
5104 (set (make-local-variable 'comment-start-skip
) "#+\\s-*")
5106 (set (make-local-variable 'parse-sexp-lookup-properties
) t
)
5107 (set (make-local-variable 'parse-sexp-ignore-comments
) t
)
5109 (set (make-local-variable 'forward-sexp-function
)
5110 'python-nav-forward-sexp
)
5112 (set (make-local-variable 'font-lock-defaults
)
5113 '(python-font-lock-keywords
5115 (font-lock-syntactic-face-function
5116 . python-font-lock-syntactic-face-function
)))
5118 (set (make-local-variable 'syntax-propertize-function
)
5119 python-syntax-propertize-function
)
5121 (set (make-local-variable 'indent-line-function
)
5122 #'python-indent-line-function
)
5123 (set (make-local-variable 'indent-region-function
) #'python-indent-region
)
5124 ;; Because indentation is not redundant, we cannot safely reindent code.
5125 (set (make-local-variable 'electric-indent-inhibit
) t
)
5126 (set (make-local-variable 'electric-indent-chars
)
5127 (cons ?
: electric-indent-chars
))
5129 ;; Add """ ... """ pairing to electric-pair-mode.
5130 (add-hook 'post-self-insert-hook
5131 #'python-electric-pair-string-delimiter
'append t
)
5133 (set (make-local-variable 'paragraph-start
) "\\s-*$")
5134 (set (make-local-variable 'fill-paragraph-function
)
5135 #'python-fill-paragraph
)
5137 (set (make-local-variable 'beginning-of-defun-function
)
5138 #'python-nav-beginning-of-defun
)
5139 (set (make-local-variable 'end-of-defun-function
)
5140 #'python-nav-end-of-defun
)
5142 (add-hook 'completion-at-point-functions
5143 #'python-completion-at-point nil
'local
)
5145 (add-hook 'post-self-insert-hook
5146 #'python-indent-post-self-insert-function
'append
'local
)
5148 (set (make-local-variable 'imenu-create-index-function
)
5149 #'python-imenu-create-index
)
5151 (set (make-local-variable 'add-log-current-defun-function
)
5152 #'python-info-current-defun
)
5154 (add-hook 'which-func-functions
#'python-info-current-defun
nil t
)
5156 (set (make-local-variable 'skeleton-further-elements
)
5158 (< '(backward-delete-char-untabify (min python-indent-offset
5160 (^
'(- (1+ (current-indentation))))))
5162 (if (null eldoc-documentation-function
)
5164 (set (make-local-variable 'eldoc-documentation-function
)
5165 #'python-eldoc-function
)
5166 (add-function :before-until
(local 'eldoc-documentation-function
)
5167 #'python-eldoc-function
))
5170 'hs-special-modes-alist
5172 "\\s-*\\_<\\(?:def\\|class\\)\\_>"
5173 ;; Use the empty string as end regexp so it doesn't default to
5174 ;; "\\s)". This way parens at end of defun are properly hidden.
5177 python-hideshow-forward-sexp-function
5180 (set (make-local-variable 'outline-regexp
)
5181 (python-rx (* space
) block-start
))
5182 (set (make-local-variable 'outline-heading-end-regexp
) ":[^\n]*\n")
5183 (set (make-local-variable 'outline-level
)
5185 "`outline-level' function for Python mode."
5186 (1+ (/ (current-indentation) python-indent-offset
))))
5188 (set (make-local-variable 'prettify-symbols-alist
)
5189 python--prettify-symbols-alist
)
5191 (python-skeleton-add-menu-items)
5193 (make-local-variable 'python-shell-internal-buffer
)
5195 (when python-indent-guess-indent-offset
5196 (python-indent-guess-indent-offset)))
5202 ;; indent-tabs-mode: nil
5205 ;;; python.el ends here