* progmodes/python.el (inferior-python-mode)
[bpt/emacs.git] / lisp / progmodes / python.el
1 ;;; python.el --- Python's flying circus support for Emacs
2
3 ;; Copyright (C) 2003-2012 Free Software Foundation, Inc.
4
5 ;; Author: Fabián E. Gallina <fabian@anue.biz>
6 ;; URL: https://github.com/fgallina/python.el
7 ;; Version: 0.24.2
8 ;; Maintainer: FSF
9 ;; Created: Jul 2010
10 ;; Keywords: languages
11
12 ;; This file is part of GNU Emacs.
13
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published
16 ;; by the Free Software Foundation, either version 3 of the License,
17 ;; or (at your option) any later version.
18
19 ;; GNU Emacs is distributed in the hope that it will be useful, but
20 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 ;; General Public License for more details.
23
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26
27 ;;; Commentary:
28
29 ;; Major mode for editing Python files with some fontification and
30 ;; indentation bits extracted from original Dave Love's python.el
31 ;; found in GNU/Emacs.
32
33 ;; Implements Syntax highlighting, Indentation, Movement, Shell
34 ;; interaction, Shell completion, Shell virtualenv support, Pdb
35 ;; tracking, Symbol completion, Skeletons, FFAP, Code Check, Eldoc,
36 ;; imenu.
37
38 ;; Syntax highlighting: Fontification of code is provided and supports
39 ;; python's triple quoted strings properly.
40
41 ;; Indentation: Automatic indentation with indentation cycling is
42 ;; provided, it allows you to navigate different available levels of
43 ;; indentation by hitting <tab> several times. Also when inserting a
44 ;; colon the `python-indent-electric-colon' command is invoked and
45 ;; causes the current line to be dedented automatically if needed.
46
47 ;; Movement: `beginning-of-defun' and `end-of-defun' functions are
48 ;; properly implemented. There are also specialized
49 ;; `forward-sentence' and `backward-sentence' replacements called
50 ;; `python-nav-forward-block', `python-nav-backward-block'
51 ;; respectively which navigate between beginning of blocks of code.
52 ;; Extra functions `python-nav-forward-statement',
53 ;; `python-nav-backward-statement',
54 ;; `python-nav-beginning-of-statement', `python-nav-end-of-statement',
55 ;; `python-nav-beginning-of-block' and `python-nav-end-of-block' are
56 ;; included but no bound to any key. At last but not least the
57 ;; specialized `python-nav-forward-sexp' allows easy
58 ;; navigation between code blocks.
59
60 ;; Shell interaction: is provided and allows you to execute easily any
61 ;; block of code of your current buffer in an inferior Python process.
62
63 ;; Shell completion: hitting tab will try to complete the current
64 ;; word. Shell completion is implemented in a manner that if you
65 ;; change the `python-shell-interpreter' to any other (for example
66 ;; IPython) it should be easy to integrate another way to calculate
67 ;; completions. You just need to specify your custom
68 ;; `python-shell-completion-setup-code' and
69 ;; `python-shell-completion-string-code'.
70
71 ;; Here is a complete example of the settings you would use for
72 ;; iPython 0.11:
73
74 ;; (setq
75 ;; python-shell-interpreter "ipython"
76 ;; python-shell-interpreter-args ""
77 ;; python-shell-prompt-regexp "In \\[[0-9]+\\]: "
78 ;; python-shell-prompt-output-regexp "Out\\[[0-9]+\\]: "
79 ;; python-shell-completion-setup-code
80 ;; "from IPython.core.completerlib import module_completion"
81 ;; python-shell-completion-module-string-code
82 ;; "';'.join(module_completion('''%s'''))\n"
83 ;; python-shell-completion-string-code
84 ;; "';'.join(get_ipython().Completer.all_completions('''%s'''))\n")
85
86 ;; For iPython 0.10 everything would be the same except for
87 ;; `python-shell-completion-string-code' and
88 ;; `python-shell-completion-module-string-code':
89
90 ;; (setq python-shell-completion-string-code
91 ;; "';'.join(__IP.complete('''%s'''))\n"
92 ;; python-shell-completion-module-string-code "")
93
94 ;; Unfortunately running iPython on Windows needs some more tweaking.
95 ;; The way you must set `python-shell-interpreter' and
96 ;; `python-shell-interpreter-args' is as follows:
97
98 ;; (setq
99 ;; python-shell-interpreter "C:\\Python27\\python.exe"
100 ;; python-shell-interpreter-args
101 ;; "-i C:\\Python27\\Scripts\\ipython-script.py")
102
103 ;; That will spawn the iPython process correctly (Of course you need
104 ;; to modify the paths according to your system).
105
106 ;; Please note that the default completion system depends on the
107 ;; readline module, so if you are using some Operating System that
108 ;; bundles Python without it (like Windows) just install the
109 ;; pyreadline from http://ipython.scipy.org/moin/PyReadline/Intro and
110 ;; you should be good to go.
111
112 ;; Shell virtualenv support: The shell also contains support for
113 ;; virtualenvs and other special environment modifications thanks to
114 ;; `python-shell-process-environment' and `python-shell-exec-path'.
115 ;; These two variables allows you to modify execution paths and
116 ;; environment variables to make easy for you to setup virtualenv rules
117 ;; or behavior modifications when running shells. Here is an example
118 ;; of how to make shell processes to be run using the /path/to/env/
119 ;; virtualenv:
120
121 ;; (setq python-shell-process-environment
122 ;; (list
123 ;; (format "PATH=%s" (mapconcat
124 ;; 'identity
125 ;; (reverse
126 ;; (cons (getenv "PATH")
127 ;; '("/path/to/env/bin/")))
128 ;; ":"))
129 ;; "VIRTUAL_ENV=/path/to/env/"))
130 ;; (python-shell-exec-path . ("/path/to/env/bin/"))
131
132 ;; Since the above is cumbersome and can be programmatically
133 ;; calculated, the variable `python-shell-virtualenv-path' is
134 ;; provided. When this variable is set with the path of the
135 ;; virtualenv to use, `process-environment' and `exec-path' get proper
136 ;; values in order to run shells inside the specified virtualenv. So
137 ;; the following will achieve the same as the previous example:
138
139 ;; (setq python-shell-virtualenv-path "/path/to/env/")
140
141 ;; Also the `python-shell-extra-pythonpaths' variable have been
142 ;; introduced as simple way of adding paths to the PYTHONPATH without
143 ;; affecting existing values.
144
145 ;; Pdb tracking: when you execute a block of code that contains some
146 ;; call to pdb (or ipdb) it will prompt the block of code and will
147 ;; follow the execution of pdb marking the current line with an arrow.
148
149 ;; Symbol completion: you can complete the symbol at point. It uses
150 ;; the shell completion in background so you should run
151 ;; `python-shell-send-buffer' from time to time to get better results.
152
153 ;; Skeletons: 6 skeletons are provided for simple inserting of class,
154 ;; def, for, if, try and while. These skeletons are integrated with
155 ;; dabbrev. If you have `dabbrev-mode' activated and
156 ;; `python-skeleton-autoinsert' is set to t, then whenever you type
157 ;; the name of any of those defined and hit SPC, they will be
158 ;; automatically expanded.
159
160 ;; FFAP: You can find the filename for a given module when using ffap
161 ;; out of the box. This feature needs an inferior python shell
162 ;; running.
163
164 ;; Code check: Check the current file for errors with `python-check'
165 ;; using the program defined in `python-check-command'.
166
167 ;; Eldoc: returns documentation for object at point by using the
168 ;; inferior python subprocess to inspect its documentation. As you
169 ;; might guessed you should run `python-shell-send-buffer' from time
170 ;; to time to get better results too.
171
172 ;; imenu: This mode supports imenu in its most basic form, letting it
173 ;; build the necessary alist via `imenu-default-create-index-function'
174 ;; by having set `imenu-extract-index-name-function' to
175 ;; `python-info-current-defun'.
176
177 ;; If you used python-mode.el you probably will miss auto-indentation
178 ;; when inserting newlines. To achieve the same behavior you have
179 ;; two options:
180
181 ;; 1) Use GNU/Emacs' standard binding for `newline-and-indent': C-j.
182
183 ;; 2) Add the following hook in your .emacs:
184
185 ;; (add-hook 'python-mode-hook
186 ;; #'(lambda ()
187 ;; (define-key python-mode-map "\C-m" 'newline-and-indent)))
188
189 ;; I'd recommend the first one since you'll get the same behavior for
190 ;; all modes out-of-the-box.
191
192 ;;; Installation:
193
194 ;; Add this to your .emacs:
195
196 ;; (add-to-list 'load-path "/folder/containing/file")
197 ;; (require 'python)
198
199 ;;; TODO:
200
201 ;;; Code:
202
203 (require 'ansi-color)
204 (require 'comint)
205
206 (eval-when-compile
207 (require 'cl)
208 ;; Avoid compiler warnings
209 (defvar view-return-to-alist)
210 (defvar compilation-error-regexp-alist)
211 (defvar outline-heading-end-regexp))
212
213 (autoload 'comint-mode "comint")
214
215 ;;;###autoload
216 (add-to-list 'auto-mode-alist (cons (purecopy "\\.py\\'") 'python-mode))
217 ;;;###autoload
218 (add-to-list 'interpreter-mode-alist (cons (purecopy "python") 'python-mode))
219
220 (defgroup python nil
221 "Python Language's flying circus support for Emacs."
222 :group 'languages
223 :version "23.2"
224 :link '(emacs-commentary-link "python"))
225
226 \f
227 ;;; Bindings
228
229 (defvar python-mode-map
230 (let ((map (make-sparse-keymap)))
231 ;; Movement
232 (substitute-key-definition 'backward-sentence
233 'python-nav-backward-block
234 map global-map)
235 (substitute-key-definition 'forward-sentence
236 'python-nav-forward-block
237 map global-map)
238 (define-key map "\C-c\C-j" 'imenu)
239 ;; Indent specific
240 (define-key map "\177" 'python-indent-dedent-line-backspace)
241 (define-key map (kbd "<backtab>") 'python-indent-dedent-line)
242 (define-key map "\C-c<" 'python-indent-shift-left)
243 (define-key map "\C-c>" 'python-indent-shift-right)
244 (define-key map ":" 'python-indent-electric-colon)
245 ;; Skeletons
246 (define-key map "\C-c\C-tc" 'python-skeleton-class)
247 (define-key map "\C-c\C-td" 'python-skeleton-def)
248 (define-key map "\C-c\C-tf" 'python-skeleton-for)
249 (define-key map "\C-c\C-ti" 'python-skeleton-if)
250 (define-key map "\C-c\C-tt" 'python-skeleton-try)
251 (define-key map "\C-c\C-tw" 'python-skeleton-while)
252 ;; Shell interaction
253 (define-key map "\C-c\C-p" 'run-python)
254 (define-key map "\C-c\C-s" 'python-shell-send-string)
255 (define-key map "\C-c\C-r" 'python-shell-send-region)
256 (define-key map "\C-\M-x" 'python-shell-send-defun)
257 (define-key map "\C-c\C-c" 'python-shell-send-buffer)
258 (define-key map "\C-c\C-l" 'python-shell-send-file)
259 (define-key map "\C-c\C-z" 'python-shell-switch-to-shell)
260 ;; Some util commands
261 (define-key map "\C-c\C-v" 'python-check)
262 (define-key map "\C-c\C-f" 'python-eldoc-at-point)
263 ;; Utilities
264 (substitute-key-definition 'complete-symbol 'completion-at-point
265 map global-map)
266 (easy-menu-define python-menu map "Python Mode menu"
267 `("Python"
268 :help "Python-specific Features"
269 ["Shift region left" python-indent-shift-left :active mark-active
270 :help "Shift region left by a single indentation step"]
271 ["Shift region right" python-indent-shift-right :active mark-active
272 :help "Shift region right by a single indentation step"]
273 "-"
274 ["Start of def/class" beginning-of-defun
275 :help "Go to start of outermost definition around point"]
276 ["End of def/class" end-of-defun
277 :help "Go to end of definition around point"]
278 ["Mark def/class" mark-defun
279 :help "Mark outermost definition around point"]
280 ["Jump to def/class" imenu
281 :help "Jump to a class or function definition"]
282 "--"
283 ("Skeletons")
284 "---"
285 ["Start interpreter" run-python
286 :help "Run inferior Python process in a separate buffer"]
287 ["Switch to shell" python-shell-switch-to-shell
288 :help "Switch to running inferior Python process"]
289 ["Eval string" python-shell-send-string
290 :help "Eval string in inferior Python session"]
291 ["Eval buffer" python-shell-send-buffer
292 :help "Eval buffer in inferior Python session"]
293 ["Eval region" python-shell-send-region
294 :help "Eval region in inferior Python session"]
295 ["Eval defun" python-shell-send-defun
296 :help "Eval defun in inferior Python session"]
297 ["Eval file" python-shell-send-file
298 :help "Eval file in inferior Python session"]
299 ["Debugger" pdb :help "Run pdb under GUD"]
300 "----"
301 ["Check file" python-check
302 :help "Check file for errors"]
303 ["Help on symbol" python-eldoc-at-point
304 :help "Get help on symbol at point"]
305 ["Complete symbol" completion-at-point
306 :help "Complete symbol before point"]))
307 map)
308 "Keymap for `python-mode'.")
309
310 \f
311 ;;; Python specialized rx
312
313 (eval-when-compile
314 (defconst python-rx-constituents
315 `((block-start . ,(rx symbol-start
316 (or "def" "class" "if" "elif" "else" "try"
317 "except" "finally" "for" "while" "with")
318 symbol-end))
319 (decorator . ,(rx line-start (* space) ?@ (any letter ?_)
320 (* (any word ?_))))
321 (defun . ,(rx symbol-start (or "def" "class") symbol-end))
322 (if-name-main . ,(rx line-start "if" (+ space) "__name__"
323 (+ space) "==" (+ space)
324 (any ?' ?\") "__main__" (any ?' ?\")
325 (* space) ?:))
326 (symbol-name . ,(rx (any letter ?_) (* (any word ?_))))
327 (open-paren . ,(rx (or "{" "[" "(")))
328 (close-paren . ,(rx (or "}" "]" ")")))
329 (simple-operator . ,(rx (any ?+ ?- ?/ ?& ?^ ?~ ?| ?* ?< ?> ?= ?%)))
330 ;; FIXME: rx should support (not simple-operator).
331 (not-simple-operator . ,(rx
332 (not
333 (any ?+ ?- ?/ ?& ?^ ?~ ?| ?* ?< ?> ?= ?%))))
334 ;; FIXME: Use regexp-opt.
335 (operator . ,(rx (or "+" "-" "/" "&" "^" "~" "|" "*" "<" ">"
336 "=" "%" "**" "//" "<<" ">>" "<=" "!="
337 "==" ">=" "is" "not")))
338 ;; FIXME: Use regexp-opt.
339 (assignment-operator . ,(rx (or "=" "+=" "-=" "*=" "/=" "//=" "%=" "**="
340 ">>=" "<<=" "&=" "^=" "|="))))
341 "Additional Python specific sexps for `python-rx'"))
342
343 (defmacro python-rx (&rest regexps)
344 "Python mode specialized rx macro.
345 This variant of `rx' supports common python named REGEXPS."
346 (let ((rx-constituents (append python-rx-constituents rx-constituents)))
347 (cond ((null regexps)
348 (error "No regexp"))
349 ((cdr regexps)
350 (rx-to-string `(and ,@regexps) t))
351 (t
352 (rx-to-string (car regexps) t)))))
353
354 \f
355 ;;; Font-lock and syntax
356
357 (defun python-syntax-context (type &optional syntax-ppss)
358 "Return non-nil if point is on TYPE using SYNTAX-PPSS.
359 TYPE can be `comment', `string' or `paren'. It returns the start
360 character address of the specified TYPE."
361 (let ((ppss (or syntax-ppss (syntax-ppss))))
362 (case type
363 (comment (and (nth 4 ppss) (nth 8 ppss)))
364 (string (and (not (nth 4 ppss)) (nth 8 ppss)))
365 (paren (nth 1 ppss))
366 (t nil))))
367
368 (defun python-syntax-context-type (&optional syntax-ppss)
369 "Return the context type using SYNTAX-PPSS.
370 The type returned can be `comment', `string' or `paren'."
371 (let ((ppss (or syntax-ppss (syntax-ppss))))
372 (cond
373 ((nth 8 ppss) (if (nth 4 ppss) 'comment 'string))
374 ((nth 1 ppss) 'paren))))
375
376 (defsubst python-syntax-comment-or-string-p ()
377 "Return non-nil if point is inside 'comment or 'string."
378 (nth 8 (syntax-ppss)))
379
380 (define-obsolete-function-alias
381 'python-info-ppss-context #'python-syntax-context "24.3")
382
383 (define-obsolete-function-alias
384 'python-info-ppss-context-type #'python-syntax-context-type "24.3")
385
386 (define-obsolete-function-alias
387 'python-info-ppss-comment-or-string-p
388 #'python-syntax-comment-or-string-p "24.3")
389
390 (defvar python-font-lock-keywords
391 ;; Keywords
392 `(,(rx symbol-start
393 (or
394 "and" "del" "from" "not" "while" "as" "elif" "global" "or" "with"
395 "assert" "else" "if" "pass" "yield" "break" "except" "import" "class"
396 "in" "raise" "continue" "finally" "is" "return" "def" "for" "lambda"
397 "try"
398 ;; Python 2:
399 "print" "exec"
400 ;; Python 3:
401 ;; False, None, and True are listed as keywords on the Python 3
402 ;; documentation, but since they also qualify as constants they are
403 ;; fontified like that in order to keep font-lock consistent between
404 ;; Python versions.
405 "nonlocal"
406 ;; Extra:
407 "self")
408 symbol-end)
409 ;; functions
410 (,(rx symbol-start "def" (1+ space) (group (1+ (or word ?_))))
411 (1 font-lock-function-name-face))
412 ;; classes
413 (,(rx symbol-start "class" (1+ space) (group (1+ (or word ?_))))
414 (1 font-lock-type-face))
415 ;; Constants
416 (,(rx symbol-start
417 (or
418 "Ellipsis" "False" "None" "NotImplemented" "True" "__debug__"
419 ;; copyright, license, credits, quit and exit are added by the site
420 ;; module and they are not intended to be used in programs
421 "copyright" "credits" "exit" "license" "quit")
422 symbol-end) . font-lock-constant-face)
423 ;; Decorators.
424 (,(rx line-start (* (any " \t")) (group "@" (1+ (or word ?_))
425 (0+ "." (1+ (or word ?_)))))
426 (1 font-lock-type-face))
427 ;; Builtin Exceptions
428 (,(rx symbol-start
429 (or
430 "ArithmeticError" "AssertionError" "AttributeError" "BaseException"
431 "DeprecationWarning" "EOFError" "EnvironmentError" "Exception"
432 "FloatingPointError" "FutureWarning" "GeneratorExit" "IOError"
433 "ImportError" "ImportWarning" "IndexError" "KeyError"
434 "KeyboardInterrupt" "LookupError" "MemoryError" "NameError"
435 "NotImplementedError" "OSError" "OverflowError"
436 "PendingDeprecationWarning" "ReferenceError" "RuntimeError"
437 "RuntimeWarning" "StopIteration" "SyntaxError" "SyntaxWarning"
438 "SystemError" "SystemExit" "TypeError" "UnboundLocalError"
439 "UnicodeDecodeError" "UnicodeEncodeError" "UnicodeError"
440 "UnicodeTranslateError" "UnicodeWarning" "UserWarning" "VMSError"
441 "ValueError" "Warning" "WindowsError" "ZeroDivisionError"
442 ;; Python 2:
443 "StandardError"
444 ;; Python 3:
445 "BufferError" "BytesWarning" "IndentationError" "ResourceWarning"
446 "TabError")
447 symbol-end) . font-lock-type-face)
448 ;; Builtins
449 (,(rx symbol-start
450 (or
451 "abs" "all" "any" "bin" "bool" "callable" "chr" "classmethod"
452 "compile" "complex" "delattr" "dict" "dir" "divmod" "enumerate"
453 "eval" "filter" "float" "format" "frozenset" "getattr" "globals"
454 "hasattr" "hash" "help" "hex" "id" "input" "int" "isinstance"
455 "issubclass" "iter" "len" "list" "locals" "map" "max" "memoryview"
456 "min" "next" "object" "oct" "open" "ord" "pow" "print" "property"
457 "range" "repr" "reversed" "round" "set" "setattr" "slice" "sorted"
458 "staticmethod" "str" "sum" "super" "tuple" "type" "vars" "zip"
459 "__import__"
460 ;; Python 2:
461 "basestring" "cmp" "execfile" "file" "long" "raw_input" "reduce"
462 "reload" "unichr" "unicode" "xrange" "apply" "buffer" "coerce"
463 "intern"
464 ;; Python 3:
465 "ascii" "bytearray" "bytes" "exec"
466 ;; Extra:
467 "__all__" "__doc__" "__name__" "__package__")
468 symbol-end) . font-lock-builtin-face)
469 ;; assignments
470 ;; support for a = b = c = 5
471 (,(lambda (limit)
472 (let ((re (python-rx (group (+ (any word ?. ?_)))
473 (? ?\[ (+ (not (any ?\]))) ?\]) (* space)
474 assignment-operator)))
475 (when (re-search-forward re limit t)
476 (while (and (python-syntax-context 'paren)
477 (re-search-forward re limit t)))
478 (if (and (not (python-syntax-context 'paren))
479 (not (equal (char-after (point-marker)) ?=)))
480 t
481 (set-match-data nil)))))
482 (1 font-lock-variable-name-face nil nil))
483 ;; support for a, b, c = (1, 2, 3)
484 (,(lambda (limit)
485 (let ((re (python-rx (group (+ (any word ?. ?_))) (* space)
486 (* ?, (* space) (+ (any word ?. ?_)) (* space))
487 ?, (* space) (+ (any word ?. ?_)) (* space)
488 assignment-operator)))
489 (when (and (re-search-forward re limit t)
490 (goto-char (nth 3 (match-data))))
491 (while (and (python-syntax-context 'paren)
492 (re-search-forward re limit t))
493 (goto-char (nth 3 (match-data))))
494 (if (not (python-syntax-context 'paren))
495 t
496 (set-match-data nil)))))
497 (1 font-lock-variable-name-face nil nil))))
498
499 (defconst python-syntax-propertize-function
500 (syntax-propertize-rules
501 ((rx
502 (and
503 ;; Match even number of backslashes.
504 (or (not (any ?\\ ?\' ?\")) point
505 ;; Quotes might be preceded by a escaped quote.
506 (and (or (not (any ?\\)) point) ?\\
507 (* ?\\ ?\\) (any ?\' ?\")))
508 (* ?\\ ?\\)
509 ;; Match single or triple quotes of any kind.
510 (group (or "\"" "\"\"\"" "'" "'''"))))
511 (0 (ignore (python-syntax-stringify))))))
512
513 (defsubst python-syntax-count-quotes (quote-char &optional point limit)
514 "Count number of quotes around point (max is 3).
515 QUOTE-CHAR is the quote char to count. Optional argument POINT is
516 the point where scan starts (defaults to current point) and LIMIT
517 is used to limit the scan."
518 (let ((i 0))
519 (while (and (< i 3)
520 (or (not limit) (< (+ point i) limit))
521 (eq (char-after (+ point i)) quote-char))
522 (incf i))
523 i))
524
525 (defun python-syntax-stringify ()
526 "Put `syntax-table' property correctly on single/triple quotes."
527 (let* ((num-quotes (length (match-string-no-properties 1)))
528 (ppss (prog2
529 (backward-char num-quotes)
530 (syntax-ppss)
531 (forward-char num-quotes)))
532 (string-start (and (not (nth 4 ppss)) (nth 8 ppss)))
533 (quote-starting-pos (- (point) num-quotes))
534 (quote-ending-pos (point))
535 (num-closing-quotes
536 (and string-start
537 (python-syntax-count-quotes
538 (char-before) string-start quote-starting-pos))))
539 (cond ((and string-start (= num-closing-quotes 0))
540 ;; This set of quotes doesn't match the string starting
541 ;; kind. Do nothing.
542 nil)
543 ((not string-start)
544 ;; This set of quotes delimit the start of a string.
545 (put-text-property quote-starting-pos (1+ quote-starting-pos)
546 'syntax-table (string-to-syntax "|")))
547 ((= num-quotes num-closing-quotes)
548 ;; This set of quotes delimit the end of a string.
549 (put-text-property (1- quote-ending-pos) quote-ending-pos
550 'syntax-table (string-to-syntax "|")))
551 ((> num-quotes num-closing-quotes)
552 ;; This may only happen whenever a triple quote is closing
553 ;; a single quoted string. Add string delimiter syntax to
554 ;; all three quotes.
555 (put-text-property quote-starting-pos quote-ending-pos
556 'syntax-table (string-to-syntax "|"))))))
557
558 (defvar python-mode-syntax-table
559 (let ((table (make-syntax-table)))
560 ;; Give punctuation syntax to ASCII that normally has symbol
561 ;; syntax or has word syntax and isn't a letter.
562 (let ((symbol (string-to-syntax "_"))
563 (sst (standard-syntax-table)))
564 (dotimes (i 128)
565 (unless (= i ?_)
566 (if (equal symbol (aref sst i))
567 (modify-syntax-entry i "." table)))))
568 (modify-syntax-entry ?$ "." table)
569 (modify-syntax-entry ?% "." table)
570 ;; exceptions
571 (modify-syntax-entry ?# "<" table)
572 (modify-syntax-entry ?\n ">" table)
573 (modify-syntax-entry ?' "\"" table)
574 (modify-syntax-entry ?` "$" table)
575 table)
576 "Syntax table for Python files.")
577
578 (defvar python-dotty-syntax-table
579 (let ((table (make-syntax-table python-mode-syntax-table)))
580 (modify-syntax-entry ?. "w" table)
581 (modify-syntax-entry ?_ "w" table)
582 table)
583 "Dotty syntax table for Python files.
584 It makes underscores and dots word constituent chars.")
585
586 \f
587 ;;; Indentation
588
589 (defcustom python-indent-offset 4
590 "Default indentation offset for Python."
591 :group 'python
592 :type 'integer
593 :safe 'integerp)
594
595 (defcustom python-indent-guess-indent-offset t
596 "Non-nil tells Python mode to guess `python-indent-offset' value."
597 :type 'boolean
598 :group 'python
599 :safe 'booleanp)
600
601 (define-obsolete-variable-alias
602 'python-indent 'python-indent-offset "24.3")
603
604 (define-obsolete-variable-alias
605 'python-guess-indent 'python-indent-guess-indent-offset "24.3")
606
607 (defvar python-indent-current-level 0
608 "Current indentation level `python-indent-line-function' is using.")
609
610 (defvar python-indent-levels '(0)
611 "Levels of indentation available for `python-indent-line-function'.")
612
613 (defvar python-indent-dedenters '("else" "elif" "except" "finally")
614 "List of words that should be dedented.
615 These make `python-indent-calculate-indentation' subtract the value of
616 `python-indent-offset'.")
617
618 (defun python-indent-guess-indent-offset ()
619 "Guess and set `python-indent-offset' for the current buffer."
620 (interactive)
621 (save-excursion
622 (save-restriction
623 (widen)
624 (goto-char (point-min))
625 (let ((block-end))
626 (while (and (not block-end)
627 (re-search-forward
628 (python-rx line-start block-start) nil t))
629 (when (and
630 (not (python-syntax-context-type))
631 (progn
632 (goto-char (line-end-position))
633 (python-util-forward-comment -1)
634 (if (equal (char-before) ?:)
635 t
636 (forward-line 1)
637 (when (python-info-block-continuation-line-p)
638 (while (and (python-info-continuation-line-p)
639 (not (eobp)))
640 (forward-line 1))
641 (python-util-forward-comment -1)
642 (when (equal (char-before) ?:)
643 t)))))
644 (setq block-end (point-marker))))
645 (let ((indentation
646 (when block-end
647 (goto-char block-end)
648 (python-util-forward-comment)
649 (current-indentation))))
650 (if indentation
651 (setq python-indent-offset indentation)
652 (message "Can't guess python-indent-offset, using defaults: %s"
653 python-indent-offset)))))))
654
655 (defun python-indent-context ()
656 "Get information on indentation context.
657 Context information is returned with a cons with the form:
658 \(STATUS . START)
659
660 Where status can be any of the following symbols:
661 * inside-paren: If point in between (), {} or []
662 * inside-string: If point is inside a string
663 * after-backslash: Previous line ends in a backslash
664 * after-beginning-of-block: Point is after beginning of block
665 * after-line: Point is after normal line
666 * no-indent: Point is at beginning of buffer or other special case
667 START is the buffer position where the sexp starts."
668 (save-restriction
669 (widen)
670 (let ((ppss (save-excursion (beginning-of-line) (syntax-ppss)))
671 (start))
672 (cons
673 (cond
674 ;; Beginning of buffer
675 ((save-excursion
676 (goto-char (line-beginning-position))
677 (bobp))
678 'no-indent)
679 ;; Inside string
680 ((setq start (python-syntax-context 'string ppss))
681 'inside-string)
682 ;; Inside a paren
683 ((setq start (python-syntax-context 'paren ppss))
684 'inside-paren)
685 ;; After backslash
686 ((setq start (when (not (or (python-syntax-context 'string ppss)
687 (python-syntax-context 'comment ppss)))
688 (let ((line-beg-pos (line-beginning-position)))
689 (when (python-info-line-ends-backslash-p
690 (1- line-beg-pos))
691 (- line-beg-pos 2)))))
692 'after-backslash)
693 ;; After beginning of block
694 ((setq start (save-excursion
695 (when (progn
696 (back-to-indentation)
697 (python-util-forward-comment -1)
698 (equal (char-before) ?:))
699 ;; Move to the first block start that's not in within
700 ;; a string, comment or paren and that's not a
701 ;; continuation line.
702 (while (and (re-search-backward
703 (python-rx block-start) nil t)
704 (or
705 (python-syntax-context-type)
706 (python-info-continuation-line-p))))
707 (when (looking-at (python-rx block-start))
708 (point-marker)))))
709 'after-beginning-of-block)
710 ;; After normal line
711 ((setq start (save-excursion
712 (back-to-indentation)
713 (skip-chars-backward (rx (or whitespace ?\n)))
714 (python-nav-beginning-of-statement)
715 (point-marker)))
716 'after-line)
717 ;; Do not indent
718 (t 'no-indent))
719 start))))
720
721 (defun python-indent-calculate-indentation ()
722 "Calculate correct indentation offset for the current line."
723 (let* ((indentation-context (python-indent-context))
724 (context-status (car indentation-context))
725 (context-start (cdr indentation-context)))
726 (save-restriction
727 (widen)
728 (save-excursion
729 (case context-status
730 ('no-indent 0)
731 ;; When point is after beginning of block just add one level
732 ;; of indentation relative to the context-start
733 ('after-beginning-of-block
734 (goto-char context-start)
735 (+ (current-indentation) python-indent-offset))
736 ;; When after a simple line just use previous line
737 ;; indentation, in the case current line starts with a
738 ;; `python-indent-dedenters' de-indent one level.
739 ('after-line
740 (-
741 (save-excursion
742 (goto-char context-start)
743 (current-indentation))
744 (if (progn
745 (back-to-indentation)
746 (looking-at (regexp-opt python-indent-dedenters)))
747 python-indent-offset
748 0)))
749 ;; When inside of a string, do nothing. just use the current
750 ;; indentation. XXX: perhaps it would be a good idea to
751 ;; invoke standard text indentation here
752 ('inside-string
753 (goto-char context-start)
754 (current-indentation))
755 ;; After backslash we have several possibilities.
756 ('after-backslash
757 (cond
758 ;; Check if current line is a dot continuation. For this
759 ;; the current line must start with a dot and previous
760 ;; line must contain a dot too.
761 ((save-excursion
762 (back-to-indentation)
763 (when (looking-at "\\.")
764 ;; If after moving one line back point is inside a paren it
765 ;; needs to move back until it's not anymore
766 (while (prog2
767 (forward-line -1)
768 (and (not (bobp))
769 (python-syntax-context 'paren))))
770 (goto-char (line-end-position))
771 (while (and (re-search-backward
772 "\\." (line-beginning-position) t)
773 (python-syntax-context-type)))
774 (if (and (looking-at "\\.")
775 (not (python-syntax-context-type)))
776 ;; The indentation is the same column of the
777 ;; first matching dot that's not inside a
778 ;; comment, a string or a paren
779 (current-column)
780 ;; No dot found on previous line, just add another
781 ;; indentation level.
782 (+ (current-indentation) python-indent-offset)))))
783 ;; Check if prev line is a block continuation
784 ((let ((block-continuation-start
785 (python-info-block-continuation-line-p)))
786 (when block-continuation-start
787 ;; If block-continuation-start is set jump to that
788 ;; marker and use first column after the block start
789 ;; as indentation value.
790 (goto-char block-continuation-start)
791 (re-search-forward
792 (python-rx block-start (* space))
793 (line-end-position) t)
794 (current-column))))
795 ;; Check if current line is an assignment continuation
796 ((let ((assignment-continuation-start
797 (python-info-assignment-continuation-line-p)))
798 (when assignment-continuation-start
799 ;; If assignment-continuation is set jump to that
800 ;; marker and use first column after the assignment
801 ;; operator as indentation value.
802 (goto-char assignment-continuation-start)
803 (current-column))))
804 (t
805 (forward-line -1)
806 (goto-char (python-info-beginning-of-backslash))
807 (if (save-excursion
808 (and
809 (forward-line -1)
810 (goto-char
811 (or (python-info-beginning-of-backslash) (point)))
812 (python-info-line-ends-backslash-p)))
813 ;; The two previous lines ended in a backslash so we must
814 ;; respect previous line indentation.
815 (current-indentation)
816 ;; What happens here is that we are dealing with the second
817 ;; line of a backslash continuation, in that case we just going
818 ;; to add one indentation level.
819 (+ (current-indentation) python-indent-offset)))))
820 ;; When inside a paren there's a need to handle nesting
821 ;; correctly
822 ('inside-paren
823 (cond
824 ;; If current line closes the outermost open paren use the
825 ;; current indentation of the context-start line.
826 ((save-excursion
827 (skip-syntax-forward "\s" (line-end-position))
828 (when (and (looking-at (regexp-opt '(")" "]" "}")))
829 (progn
830 (forward-char 1)
831 (not (python-syntax-context 'paren))))
832 (goto-char context-start)
833 (current-indentation))))
834 ;; If open paren is contained on a line by itself add another
835 ;; indentation level, else look for the first word after the
836 ;; opening paren and use it's column position as indentation
837 ;; level.
838 ((let* ((content-starts-in-newline)
839 (indent
840 (save-excursion
841 (if (setq content-starts-in-newline
842 (progn
843 (goto-char context-start)
844 (forward-char)
845 (save-restriction
846 (narrow-to-region
847 (line-beginning-position)
848 (line-end-position))
849 (python-util-forward-comment))
850 (looking-at "$")))
851 (+ (current-indentation) python-indent-offset)
852 (current-column)))))
853 ;; Adjustments
854 (cond
855 ;; If current line closes a nested open paren de-indent one
856 ;; level.
857 ((progn
858 (back-to-indentation)
859 (looking-at (regexp-opt '(")" "]" "}"))))
860 (- indent python-indent-offset))
861 ;; If the line of the opening paren that wraps the current
862 ;; line starts a block add another level of indentation to
863 ;; follow new pep8 recommendation. See: http://ur1.ca/5rojx
864 ((save-excursion
865 (when (and content-starts-in-newline
866 (progn
867 (goto-char context-start)
868 (back-to-indentation)
869 (looking-at (python-rx block-start))))
870 (+ indent python-indent-offset))))
871 (t indent)))))))))))
872
873 (defun python-indent-calculate-levels ()
874 "Calculate `python-indent-levels' and reset `python-indent-current-level'."
875 (let* ((indentation (python-indent-calculate-indentation))
876 (remainder (% indentation python-indent-offset))
877 (steps (/ (- indentation remainder) python-indent-offset)))
878 (setq python-indent-levels (list 0))
879 (dotimes (step steps)
880 (push (* python-indent-offset (1+ step)) python-indent-levels))
881 (when (not (eq 0 remainder))
882 (push (+ (* python-indent-offset steps) remainder) python-indent-levels))
883 (setq python-indent-levels (nreverse python-indent-levels))
884 (setq python-indent-current-level (1- (length python-indent-levels)))))
885
886 (defun python-indent-toggle-levels ()
887 "Toggle `python-indent-current-level' over `python-indent-levels'."
888 (setq python-indent-current-level (1- python-indent-current-level))
889 (when (< python-indent-current-level 0)
890 (setq python-indent-current-level (1- (length python-indent-levels)))))
891
892 (defun python-indent-line (&optional force-toggle)
893 "Internal implementation of `python-indent-line-function'.
894 Uses the offset calculated in
895 `python-indent-calculate-indentation' and available levels
896 indicated by the variable `python-indent-levels' to set the
897 current indentation.
898
899 When the variable `last-command' is equal to
900 `indent-for-tab-command' or FORCE-TOGGLE is non-nil it cycles
901 levels indicated in the variable `python-indent-levels' by
902 setting the current level in the variable
903 `python-indent-current-level'.
904
905 When the variable `last-command' is not equal to
906 `indent-for-tab-command' and FORCE-TOGGLE is nil it calculates
907 possible indentation levels and saves it in the variable
908 `python-indent-levels'. Afterwards it sets the variable
909 `python-indent-current-level' correctly so offset is equal
910 to (`nth' `python-indent-current-level' `python-indent-levels')"
911 (or
912 (and (or (and (eq this-command 'indent-for-tab-command)
913 (eq last-command this-command))
914 force-toggle)
915 (not (equal python-indent-levels '(0)))
916 (or (python-indent-toggle-levels) t))
917 (python-indent-calculate-levels))
918 (let* ((starting-pos (point-marker))
919 (indent-ending-position
920 (+ (line-beginning-position) (current-indentation)))
921 (follow-indentation-p
922 (or (bolp)
923 (and (<= (line-beginning-position) starting-pos)
924 (>= indent-ending-position starting-pos))))
925 (next-indent (nth python-indent-current-level python-indent-levels)))
926 (unless (= next-indent (current-indentation))
927 (beginning-of-line)
928 (delete-horizontal-space)
929 (indent-to next-indent)
930 (goto-char starting-pos))
931 (and follow-indentation-p (back-to-indentation)))
932 (python-info-closing-block-message))
933
934 (defun python-indent-line-function ()
935 "`indent-line-function' for Python mode.
936 See `python-indent-line' for details."
937 (python-indent-line))
938
939 (defun python-indent-dedent-line ()
940 "De-indent current line."
941 (interactive "*")
942 (when (and (not (python-syntax-comment-or-string-p))
943 (<= (point-marker) (save-excursion
944 (back-to-indentation)
945 (point-marker)))
946 (> (current-column) 0))
947 (python-indent-line t)
948 t))
949
950 (defun python-indent-dedent-line-backspace (arg)
951 "De-indent current line.
952 Argument ARG is passed to `backward-delete-char-untabify' when
953 point is not in between the indentation."
954 (interactive "*p")
955 (when (not (python-indent-dedent-line))
956 (backward-delete-char-untabify arg)))
957 (put 'python-indent-dedent-line-backspace 'delete-selection 'supersede)
958
959 (defun python-indent-region (start end)
960 "Indent a python region automagically.
961
962 Called from a program, START and END specify the region to indent."
963 (let ((deactivate-mark nil))
964 (save-excursion
965 (goto-char end)
966 (setq end (point-marker))
967 (goto-char start)
968 (or (bolp) (forward-line 1))
969 (while (< (point) end)
970 (or (and (bolp) (eolp))
971 (let (word)
972 (forward-line -1)
973 (back-to-indentation)
974 (setq word (current-word))
975 (forward-line 1)
976 (when (and word
977 ;; Don't mess with strings, unless it's the
978 ;; enclosing set of quotes.
979 (or (not (python-syntax-context 'string))
980 (eq
981 (syntax-after
982 (+ (1- (point))
983 (current-indentation)
984 (python-syntax-count-quotes (char-after) (point))))
985 (string-to-syntax "|"))))
986 (beginning-of-line)
987 (delete-horizontal-space)
988 (indent-to (python-indent-calculate-indentation)))))
989 (forward-line 1))
990 (move-marker end nil))))
991
992 (defun python-indent-shift-left (start end &optional count)
993 "Shift lines contained in region START END by COUNT columns to the left.
994 COUNT defaults to `python-indent-offset'. If region isn't
995 active, the current line is shifted. The shifted region includes
996 the lines in which START and END lie. An error is signaled if
997 any lines in the region are indented less than COUNT columns."
998 (interactive
999 (if mark-active
1000 (list (region-beginning) (region-end) current-prefix-arg)
1001 (list (line-beginning-position) (line-end-position) current-prefix-arg)))
1002 (if count
1003 (setq count (prefix-numeric-value count))
1004 (setq count python-indent-offset))
1005 (when (> count 0)
1006 (let ((deactivate-mark nil))
1007 (save-excursion
1008 (goto-char start)
1009 (while (< (point) end)
1010 (if (and (< (current-indentation) count)
1011 (not (looking-at "[ \t]*$")))
1012 (error "Can't shift all lines enough"))
1013 (forward-line))
1014 (indent-rigidly start end (- count))))))
1015
1016 (add-to-list 'debug-ignored-errors "^Can't shift all lines enough")
1017
1018 (defun python-indent-shift-right (start end &optional count)
1019 "Shift lines contained in region START END by COUNT columns to the left.
1020 COUNT defaults to `python-indent-offset'. If region isn't
1021 active, the current line is shifted. The shifted region includes
1022 the lines in which START and END lie."
1023 (interactive
1024 (if mark-active
1025 (list (region-beginning) (region-end) current-prefix-arg)
1026 (list (line-beginning-position) (line-end-position) current-prefix-arg)))
1027 (let ((deactivate-mark nil))
1028 (if count
1029 (setq count (prefix-numeric-value count))
1030 (setq count python-indent-offset))
1031 (indent-rigidly start end count)))
1032
1033 (defun python-indent-electric-colon (arg)
1034 "Insert a colon and maybe de-indent the current line.
1035 With numeric ARG, just insert that many colons. With
1036 \\[universal-argument], just insert a single colon."
1037 (interactive "*P")
1038 (self-insert-command (if (not (integerp arg)) 1 arg))
1039 (when (and (not arg)
1040 (eolp)
1041 (not (equal ?: (char-after (- (point-marker) 2))))
1042 (not (python-syntax-comment-or-string-p)))
1043 (let ((indentation (current-indentation))
1044 (calculated-indentation (python-indent-calculate-indentation)))
1045 (python-info-closing-block-message)
1046 (when (> indentation calculated-indentation)
1047 (save-excursion
1048 (indent-line-to calculated-indentation)
1049 (when (not (python-info-closing-block-message))
1050 (indent-line-to indentation)))))))
1051 (put 'python-indent-electric-colon 'delete-selection t)
1052
1053 (defun python-indent-post-self-insert-function ()
1054 "Adjust closing paren line indentation after a char is added.
1055 This function is intended to be added to the
1056 `post-self-insert-hook.' If a line renders a paren alone, after
1057 adding a char before it, the line will be re-indented
1058 automatically if needed."
1059 (when (and (eq (char-before) last-command-event)
1060 (not (bolp))
1061 (memq (char-after) '(?\) ?\] ?\})))
1062 (save-excursion
1063 (goto-char (line-beginning-position))
1064 ;; If after going to the beginning of line the point
1065 ;; is still inside a paren it's ok to do the trick
1066 (when (python-syntax-context 'paren)
1067 (let ((indentation (python-indent-calculate-indentation)))
1068 (when (< (current-indentation) indentation)
1069 (indent-line-to indentation)))))))
1070
1071 \f
1072 ;;; Navigation
1073
1074 (defvar python-nav-beginning-of-defun-regexp
1075 (python-rx line-start (* space) defun (+ space) (group symbol-name))
1076 "Regexp matching class or function definition.
1077 The name of the defun should be grouped so it can be retrieved
1078 via `match-string'.")
1079
1080 (defun python-nav-beginning-of-defun (&optional arg)
1081 "Move point to `beginning-of-defun'.
1082 With positive ARG move search backwards. With negative do the
1083 same but forward. When ARG is nil or 0 defaults to 1. This is
1084 the main part of `python-beginning-of-defun-function'. Return
1085 non-nil if point is moved to `beginning-of-defun'."
1086 (when (or (null arg) (= arg 0)) (setq arg 1))
1087 (let* ((re-search-fn (if (> arg 0)
1088 #'re-search-backward
1089 #'re-search-forward))
1090 (line-beg-pos (line-beginning-position))
1091 (line-content-start (+ line-beg-pos (current-indentation)))
1092 (pos (point-marker))
1093 (found
1094 (progn
1095 (when (and (< arg 0)
1096 (python-info-looking-at-beginning-of-defun))
1097 (end-of-line 1))
1098 (while (and (funcall re-search-fn
1099 python-nav-beginning-of-defun-regexp nil t)
1100 (python-syntax-context-type)))
1101 (and (python-info-looking-at-beginning-of-defun)
1102 (or (not (= (line-number-at-pos pos)
1103 (line-number-at-pos)))
1104 (and (>= (point) line-beg-pos)
1105 (<= (point) line-content-start)
1106 (> pos line-content-start)))))))
1107 (if found
1108 (or (beginning-of-line 1) t)
1109 (and (goto-char pos) nil))))
1110
1111 (defun python-beginning-of-defun-function (&optional arg)
1112 "Move point to the beginning of def or class.
1113 With positive ARG move that number of functions backwards. With
1114 negative do the same but forward. When ARG is nil or 0 defaults
1115 to 1. Return non-nil if point is moved to `beginning-of-defun'."
1116 (when (or (null arg) (= arg 0)) (setq arg 1))
1117 (let ((found))
1118 (cond ((and (eq this-command 'mark-defun)
1119 (python-info-looking-at-beginning-of-defun)))
1120 (t
1121 (dotimes (i (if (> arg 0) arg (- arg)))
1122 (when (and (python-nav-beginning-of-defun arg)
1123 (not found))
1124 (setq found t)))))
1125 found))
1126
1127 (defun python-end-of-defun-function ()
1128 "Move point to the end of def or class.
1129 Returns nil if point is not in a def or class."
1130 (interactive)
1131 (let ((beg-defun-indent))
1132 (when (or (python-info-looking-at-beginning-of-defun)
1133 (python-beginning-of-defun-function 1)
1134 (python-beginning-of-defun-function -1))
1135 (setq beg-defun-indent (current-indentation))
1136 (forward-line 1)
1137 ;; Go as forward as possible
1138 (while (and (or
1139 (python-nav-beginning-of-defun -1)
1140 (and (goto-char (point-max)) nil))
1141 (> (current-indentation) beg-defun-indent)))
1142 (beginning-of-line 1)
1143 ;; Go as backwards as possible
1144 (while (and (forward-line -1)
1145 (not (bobp))
1146 (or (not (current-word))
1147 (equal (char-after (+ (point) (current-indentation))) ?#)
1148 (<= (current-indentation) beg-defun-indent)
1149 (looking-at (python-rx decorator))
1150 (python-syntax-context-type))))
1151 (forward-line 1)
1152 ;; If point falls inside a paren or string context the point is
1153 ;; forwarded at the end of it (or end of buffer if its not closed)
1154 (let ((context-type (python-syntax-context-type)))
1155 (when (memq context-type '(paren string))
1156 ;; Slow but safe.
1157 (while (and (not (eobp))
1158 (python-syntax-context-type))
1159 (forward-line 1)))))))
1160
1161 (defun python-nav-beginning-of-statement ()
1162 "Move to start of current statement."
1163 (interactive "^")
1164 (while (and (or (back-to-indentation) t)
1165 (not (bobp))
1166 (when (or
1167 (save-excursion
1168 (forward-line -1)
1169 (python-info-line-ends-backslash-p))
1170 (python-syntax-context 'string)
1171 (python-syntax-context 'paren))
1172 (forward-line -1)))))
1173
1174 (defun python-nav-end-of-statement ()
1175 "Move to end of current statement."
1176 (interactive "^")
1177 (while (and (goto-char (line-end-position))
1178 (not (eobp))
1179 (when (or
1180 (python-info-line-ends-backslash-p)
1181 (python-syntax-context 'string)
1182 (python-syntax-context 'paren))
1183 (forward-line 1)))))
1184
1185 (defun python-nav-backward-statement (&optional arg)
1186 "Move backward to previous statement.
1187 With ARG, repeat. See `python-nav-forward-statement'."
1188 (interactive "^p")
1189 (or arg (setq arg 1))
1190 (python-nav-forward-statement (- arg)))
1191
1192 (defun python-nav-forward-statement (&optional arg)
1193 "Move forward to next statement.
1194 With ARG, repeat. With negative argument, move ARG times
1195 backward to previous statement."
1196 (interactive "^p")
1197 (or arg (setq arg 1))
1198 (while (> arg 0)
1199 (python-nav-end-of-statement)
1200 (python-util-forward-comment)
1201 (python-nav-beginning-of-statement)
1202 (setq arg (1- arg)))
1203 (while (< arg 0)
1204 (python-nav-beginning-of-statement)
1205 (python-util-forward-comment -1)
1206 (python-nav-beginning-of-statement)
1207 (setq arg (1+ arg))))
1208
1209 (defun python-nav-beginning-of-block ()
1210 "Move to start of current block."
1211 (interactive "^")
1212 (let ((starting-pos (point))
1213 (block-regexp (python-rx
1214 line-start (* whitespace) block-start)))
1215 (if (progn
1216 (python-nav-beginning-of-statement)
1217 (looking-at (python-rx block-start)))
1218 (point-marker)
1219 ;; Go to first line beginning a statement
1220 (while (and (not (bobp))
1221 (or (and (python-nav-beginning-of-statement) nil)
1222 (python-info-current-line-comment-p)
1223 (python-info-current-line-empty-p)))
1224 (forward-line -1))
1225 (let ((block-matching-indent
1226 (- (current-indentation) python-indent-offset)))
1227 (while
1228 (and (python-nav-backward-block)
1229 (> (current-indentation) block-matching-indent)))
1230 (if (and (looking-at (python-rx block-start))
1231 (= (current-indentation) block-matching-indent))
1232 (point-marker)
1233 (and (goto-char starting-pos) nil))))))
1234
1235 (defun python-nav-end-of-block ()
1236 "Move to end of current block."
1237 (interactive "^")
1238 (when (python-nav-beginning-of-block)
1239 (let ((block-indentation (current-indentation)))
1240 (python-nav-end-of-statement)
1241 (while (and (forward-line 1)
1242 (not (eobp))
1243 (or (and (> (current-indentation) block-indentation)
1244 (or (python-nav-end-of-statement) t))
1245 (python-info-current-line-comment-p)
1246 (python-info-current-line-empty-p))))
1247 (python-util-forward-comment -1)
1248 (point-marker))))
1249
1250 (defun python-nav-backward-block (&optional arg)
1251 "Move backward to previous block of code.
1252 With ARG, repeat. See `python-nav-forward-block'."
1253 (interactive "^p")
1254 (or arg (setq arg 1))
1255 (python-nav-forward-block (- arg)))
1256
1257 (defun python-nav-forward-block (&optional arg)
1258 "Move forward to next block of code.
1259 With ARG, repeat. With negative argument, move ARG times
1260 backward to previous block."
1261 (interactive "^p")
1262 (or arg (setq arg 1))
1263 (let ((block-start-regexp
1264 (python-rx line-start (* whitespace) block-start))
1265 (starting-pos (point)))
1266 (while (> arg 0)
1267 (python-nav-end-of-statement)
1268 (while (and
1269 (re-search-forward block-start-regexp nil t)
1270 (python-syntax-context-type)))
1271 (setq arg (1- arg)))
1272 (while (< arg 0)
1273 (python-nav-beginning-of-statement)
1274 (while (and
1275 (re-search-backward block-start-regexp nil t)
1276 (python-syntax-context-type)))
1277 (setq arg (1+ arg)))
1278 (python-nav-beginning-of-statement)
1279 (if (not (looking-at (python-rx block-start)))
1280 (and (goto-char starting-pos) nil)
1281 (and (not (= (point) starting-pos)) (point-marker)))))
1282
1283 (defun python-nav-lisp-forward-sexp-safe (&optional arg)
1284 "Safe version of standard `forward-sexp'.
1285 When ARG > 0 move forward, else if ARG is < 0."
1286 (or arg (setq arg 1))
1287 (let ((forward-sexp-function nil)
1288 (paren-regexp
1289 (if (> arg 0) (python-rx close-paren) (python-rx open-paren)))
1290 (search-fn
1291 (if (> arg 0) #'re-search-forward #'re-search-backward)))
1292 (condition-case nil
1293 (forward-sexp arg)
1294 (error
1295 (while (and (funcall search-fn paren-regexp nil t)
1296 (python-syntax-context 'paren)))))))
1297
1298 (defun python-nav--forward-sexp ()
1299 "Move to forward sexp."
1300 (case (python-syntax-context-type)
1301 (string
1302 ;; Inside of a string, get out of it.
1303 (while (and (re-search-forward "[\"']" nil t)
1304 (python-syntax-context 'string))))
1305 (comment
1306 ;; Inside of a comment, just move forward.
1307 (python-util-forward-comment))
1308 (paren
1309 (python-nav-lisp-forward-sexp-safe 1))
1310 (t
1311 (if (and (not (eobp))
1312 (= (syntax-class (syntax-after (point))) 4))
1313 ;; Looking an open-paren
1314 (python-nav-lisp-forward-sexp-safe 1)
1315 (let ((block-starting-pos
1316 (save-excursion (python-nav-beginning-of-block)))
1317 (block-ending-pos
1318 (save-excursion (python-nav-end-of-block)))
1319 (next-block-starting-pos
1320 (save-excursion (python-nav-forward-block))))
1321 (cond
1322 ((not block-starting-pos)
1323 ;; Not inside a block, move to closest one.
1324 (and next-block-starting-pos
1325 (goto-char next-block-starting-pos)))
1326 ((= (point) block-starting-pos)
1327 ;; Point is at beginning of block
1328 (if (and next-block-starting-pos
1329 (< next-block-starting-pos block-ending-pos))
1330 ;; Beginning of next block is closer than current's
1331 ;; end, move to it.
1332 (goto-char next-block-starting-pos)
1333 (goto-char block-ending-pos)))
1334 ((= block-ending-pos (point))
1335 ;; Point is at end of current block
1336 (let ((parent-block-end-pos
1337 (save-excursion
1338 (python-util-forward-comment)
1339 (python-nav-beginning-of-block)
1340 (python-nav-end-of-block))))
1341 (if (and parent-block-end-pos
1342 (or (not next-block-starting-pos)
1343 (> next-block-starting-pos parent-block-end-pos)))
1344 ;; If the parent block ends before next block
1345 ;; starts move to it.
1346 (goto-char parent-block-end-pos)
1347 (and next-block-starting-pos
1348 (goto-char next-block-starting-pos)))))
1349 (t (python-nav-end-of-block))))))))
1350
1351 (defun python-nav--backward-sexp ()
1352 "Move to backward sexp."
1353 (case (python-syntax-context-type)
1354 (string
1355 ;; Inside of a string, get out of it.
1356 (while (and (re-search-backward "[\"']" nil t)
1357 (python-syntax-context 'string))))
1358 (comment
1359 ;; Inside of a comment, just move backward.
1360 (python-util-forward-comment -1))
1361 (paren
1362 ;; Handle parens like we are lisp.
1363 (python-nav-lisp-forward-sexp-safe -1))
1364 (t
1365 (let* ((block-starting-pos
1366 (save-excursion (python-nav-beginning-of-block)))
1367 (block-ending-pos
1368 (save-excursion (python-nav-end-of-block)))
1369 (prev-block-ending-pos
1370 (save-excursion (when (python-nav-backward-block)
1371 (python-nav-end-of-block))))
1372 (prev-block-parent-ending-pos
1373 (save-excursion
1374 (when prev-block-ending-pos
1375 (goto-char prev-block-ending-pos)
1376 (python-util-forward-comment)
1377 (python-nav-beginning-of-block)
1378 (python-nav-end-of-block)))))
1379 (if (and (not (bobp))
1380 (= (syntax-class (syntax-after (1- (point)))) 5))
1381 ;; Char before point is a paren closing char, handle it
1382 ;; like we are lisp.
1383 (python-nav-lisp-forward-sexp-safe -1)
1384 (cond
1385 ((not block-ending-pos)
1386 ;; Not in and ending pos, move to end of previous block.
1387 (and (python-nav-backward-block)
1388 (python-nav-end-of-block)))
1389 ((= (point) block-ending-pos)
1390 ;; In ending pos, we need to search backwards for the
1391 ;; closest point looking the list of candidates from here.
1392 (let ((candidates))
1393 (dolist (name
1394 '(prev-block-parent-ending-pos
1395 prev-block-ending-pos
1396 block-ending-pos
1397 block-starting-pos))
1398 (when (and (symbol-value name)
1399 (< (symbol-value name) (point)))
1400 (add-to-list 'candidates (symbol-value name))))
1401 (goto-char (apply 'max candidates))))
1402 ((> (point) block-ending-pos)
1403 ;; After an ending position, move to it.
1404 (goto-char block-ending-pos))
1405 ((= (point) block-starting-pos)
1406 ;; On a block starting position.
1407 (if (not (> (point) (or prev-block-ending-pos (point))))
1408 ;; Point is after the end position of the block that
1409 ;; wraps the current one, just move a block backward.
1410 (python-nav-backward-block)
1411 ;; If we got here we are facing a case like this one:
1412 ;;
1413 ;; try:
1414 ;; return here()
1415 ;; except Exception as e:
1416 ;;
1417 ;; Where point is on the "except" and must move to the
1418 ;; end of "here()".
1419 (goto-char prev-block-ending-pos)
1420 (let ((parent-block-ending-pos
1421 (save-excursion
1422 (python-nav-forward-sexp)
1423 (and (not (looking-at (python-rx block-start)))
1424 (point)))))
1425 (when (and parent-block-ending-pos
1426 (> parent-block-ending-pos prev-block-ending-pos))
1427 ;; If we got here we are facing a case like this one:
1428 ;;
1429 ;; except ImportError:
1430 ;; if predicate():
1431 ;; processing()
1432 ;; here()
1433 ;; except AttributeError:
1434 ;;
1435 ;; Where point is on the "except" and must move to
1436 ;; the end of "here()". Without this extra step we'd
1437 ;; just get to the end of processing().
1438 (goto-char parent-block-ending-pos)))))
1439 (t
1440 (if (and prev-block-ending-pos (< prev-block-ending-pos (point)))
1441 (goto-char prev-block-ending-pos)
1442 (python-nav-beginning-of-block)))))))))
1443
1444 (defun python-nav-forward-sexp (&optional arg)
1445 "Move forward across one block of code.
1446 With ARG, do it that many times. Negative arg -N means
1447 move backward N times."
1448 (interactive "^p")
1449 (or arg (setq arg 1))
1450 (while (> arg 0)
1451 (python-nav--forward-sexp)
1452 (setq arg (1- arg)))
1453 (while (< arg 0)
1454 (python-nav--backward-sexp)
1455 (setq arg (1+ arg))))
1456
1457 \f
1458 ;;; Shell integration
1459
1460 (defcustom python-shell-buffer-name "Python"
1461 "Default buffer name for Python interpreter."
1462 :type 'string
1463 :group 'python
1464 :safe 'stringp)
1465
1466 (defcustom python-shell-interpreter "python"
1467 "Default Python interpreter for shell."
1468 :type 'string
1469 :group 'python)
1470
1471 (defcustom python-shell-internal-buffer-name "Python Internal"
1472 "Default buffer name for the Internal Python interpreter."
1473 :type 'string
1474 :group 'python
1475 :safe 'stringp)
1476
1477 (defcustom python-shell-interpreter-args "-i"
1478 "Default arguments for the Python interpreter."
1479 :type 'string
1480 :group 'python)
1481
1482 (defcustom python-shell-prompt-regexp ">>> "
1483 "Regular Expression matching top\-level input prompt of python shell.
1484 It should not contain a caret (^) at the beginning."
1485 :type 'string
1486 :group 'python
1487 :safe 'stringp)
1488
1489 (defcustom python-shell-prompt-block-regexp "[.][.][.] "
1490 "Regular Expression matching block input prompt of python shell.
1491 It should not contain a caret (^) at the beginning."
1492 :type 'string
1493 :group 'python
1494 :safe 'stringp)
1495
1496 (defcustom python-shell-prompt-output-regexp ""
1497 "Regular Expression matching output prompt of python shell.
1498 It should not contain a caret (^) at the beginning."
1499 :type 'string
1500 :group 'python
1501 :safe 'stringp)
1502
1503 (defcustom python-shell-prompt-pdb-regexp "[(<]*[Ii]?[Pp]db[>)]+ "
1504 "Regular Expression matching pdb input prompt of python shell.
1505 It should not contain a caret (^) at the beginning."
1506 :type 'string
1507 :group 'python
1508 :safe 'stringp)
1509
1510 (defcustom python-shell-enable-font-lock t
1511 "Should syntax highlighting be enabled in the python shell buffer?
1512 Restart the python shell after changing this variable for it to take effect."
1513 :type 'boolean
1514 :group 'python
1515 :safe 'booleanp)
1516
1517 (defcustom python-shell-process-environment nil
1518 "List of environment variables for Python shell.
1519 This variable follows the same rules as `process-environment'
1520 since it merges with it before the process creation routines are
1521 called. When this variable is nil, the Python shell is run with
1522 the default `process-environment'."
1523 :type '(repeat string)
1524 :group 'python
1525 :safe 'listp)
1526
1527 (defcustom python-shell-extra-pythonpaths nil
1528 "List of extra pythonpaths for Python shell.
1529 The values of this variable are added to the existing value of
1530 PYTHONPATH in the `process-environment' variable."
1531 :type '(repeat string)
1532 :group 'python
1533 :safe 'listp)
1534
1535 (defcustom python-shell-exec-path nil
1536 "List of path to search for binaries.
1537 This variable follows the same rules as `exec-path' since it
1538 merges with it before the process creation routines are called.
1539 When this variable is nil, the Python shell is run with the
1540 default `exec-path'."
1541 :type '(repeat string)
1542 :group 'python
1543 :safe 'listp)
1544
1545 (defcustom python-shell-virtualenv-path nil
1546 "Path to virtualenv root.
1547 This variable, when set to a string, makes the values stored in
1548 `python-shell-process-environment' and `python-shell-exec-path'
1549 to be modified properly so shells are started with the specified
1550 virtualenv."
1551 :type 'string
1552 :group 'python
1553 :safe 'stringp)
1554
1555 (defcustom python-shell-setup-codes '(python-shell-completion-setup-code
1556 python-ffap-setup-code
1557 python-eldoc-setup-code)
1558 "List of code run by `python-shell-send-setup-codes'."
1559 :type '(repeat symbol)
1560 :group 'python
1561 :safe 'listp)
1562
1563 (defcustom python-shell-compilation-regexp-alist
1564 `((,(rx line-start (1+ (any " \t")) "File \""
1565 (group (1+ (not (any "\"<")))) ; avoid `<stdin>' &c
1566 "\", line " (group (1+ digit)))
1567 1 2)
1568 (,(rx " in file " (group (1+ not-newline)) " on line "
1569 (group (1+ digit)))
1570 1 2)
1571 (,(rx line-start "> " (group (1+ (not (any "(\"<"))))
1572 "(" (group (1+ digit)) ")" (1+ (not (any "("))) "()")
1573 1 2))
1574 "`compilation-error-regexp-alist' for inferior Python."
1575 :type '(alist string)
1576 :group 'python)
1577
1578 (defun python-shell-get-process-name (dedicated)
1579 "Calculate the appropriate process name for inferior Python process.
1580 If DEDICATED is t and the variable `buffer-file-name' is non-nil
1581 returns a string with the form
1582 `python-shell-buffer-name'[variable `buffer-file-name'] else
1583 returns the value of `python-shell-buffer-name'."
1584 (let ((process-name
1585 (if (and dedicated
1586 buffer-file-name)
1587 (format "%s[%s]" python-shell-buffer-name buffer-file-name)
1588 (format "%s" python-shell-buffer-name))))
1589 process-name))
1590
1591 (defun python-shell-internal-get-process-name ()
1592 "Calculate the appropriate process name for Internal Python process.
1593 The name is calculated from `python-shell-global-buffer-name' and
1594 a hash of all relevant global shell settings in order to ensure
1595 uniqueness for different types of configurations."
1596 (format "%s [%s]"
1597 python-shell-internal-buffer-name
1598 (md5
1599 (concat
1600 (python-shell-parse-command)
1601 python-shell-prompt-regexp
1602 python-shell-prompt-block-regexp
1603 python-shell-prompt-output-regexp
1604 (mapconcat #'symbol-value python-shell-setup-codes "")
1605 (mapconcat #'identity python-shell-process-environment "")
1606 (mapconcat #'identity python-shell-extra-pythonpaths "")
1607 (mapconcat #'identity python-shell-exec-path "")
1608 (or python-shell-virtualenv-path "")
1609 (mapconcat #'identity python-shell-exec-path "")))))
1610
1611 (defun python-shell-parse-command ()
1612 "Calculate the string used to execute the inferior Python process."
1613 (format "%s %s" python-shell-interpreter python-shell-interpreter-args))
1614
1615 (defun python-shell-calculate-process-environment ()
1616 "Calculate process environment given `python-shell-virtualenv-path'."
1617 (let ((process-environment (append
1618 python-shell-process-environment
1619 process-environment nil))
1620 (virtualenv (if python-shell-virtualenv-path
1621 (directory-file-name python-shell-virtualenv-path)
1622 nil)))
1623 (when python-shell-extra-pythonpaths
1624 (setenv "PYTHONPATH"
1625 (format "%s%s%s"
1626 (mapconcat 'identity
1627 python-shell-extra-pythonpaths
1628 path-separator)
1629 path-separator
1630 (or (getenv "PYTHONPATH") ""))))
1631 (if (not virtualenv)
1632 process-environment
1633 (setenv "PYTHONHOME" nil)
1634 (setenv "PATH" (format "%s/bin%s%s"
1635 virtualenv path-separator
1636 (or (getenv "PATH") "")))
1637 (setenv "VIRTUAL_ENV" virtualenv))
1638 process-environment))
1639
1640 (defun python-shell-calculate-exec-path ()
1641 "Calculate exec path given `python-shell-virtualenv-path'."
1642 (let ((path (append python-shell-exec-path
1643 exec-path nil)))
1644 (if (not python-shell-virtualenv-path)
1645 path
1646 (cons (format "%s/bin"
1647 (directory-file-name python-shell-virtualenv-path))
1648 path))))
1649
1650 (defun python-comint-output-filter-function (output)
1651 "Hook run after content is put into comint buffer.
1652 OUTPUT is a string with the contents of the buffer."
1653 (ansi-color-filter-apply output))
1654
1655 (defvar python-shell--parent-buffer nil)
1656
1657 (define-derived-mode inferior-python-mode comint-mode "Inferior Python"
1658 "Major mode for Python inferior process.
1659 Runs a Python interpreter as a subprocess of Emacs, with Python
1660 I/O through an Emacs buffer. Variables
1661 `python-shell-interpreter' and `python-shell-interpreter-args'
1662 controls which Python interpreter is run. Variables
1663 `python-shell-prompt-regexp',
1664 `python-shell-prompt-output-regexp',
1665 `python-shell-prompt-block-regexp',
1666 `python-shell-enable-font-lock',
1667 `python-shell-completion-setup-code',
1668 `python-shell-completion-string-code',
1669 `python-shell-completion-module-string-code',
1670 `python-eldoc-setup-code', `python-eldoc-string-code',
1671 `python-ffap-setup-code' and `python-ffap-string-code' can
1672 customize this mode for different Python interpreters.
1673
1674 You can also add additional setup code to be run at
1675 initialization of the interpreter via `python-shell-setup-codes'
1676 variable.
1677
1678 \(Type \\[describe-mode] in the process buffer for a list of commands.)"
1679 (and python-shell--parent-buffer
1680 (python-util-clone-local-variables python-shell--parent-buffer))
1681 (setq comint-prompt-regexp (format "^\\(?:%s\\|%s\\|%s\\)"
1682 python-shell-prompt-regexp
1683 python-shell-prompt-block-regexp
1684 python-shell-prompt-pdb-regexp))
1685 (set-syntax-table python-mode-syntax-table)
1686 (setq mode-line-process '(":%s"))
1687 (make-local-variable 'comint-output-filter-functions)
1688 (add-hook 'comint-output-filter-functions
1689 'python-comint-output-filter-function)
1690 (add-hook 'comint-output-filter-functions
1691 'python-pdbtrack-comint-output-filter-function)
1692 (set (make-local-variable 'compilation-error-regexp-alist)
1693 python-shell-compilation-regexp-alist)
1694 (define-key inferior-python-mode-map [remap complete-symbol]
1695 'completion-at-point)
1696 (add-hook 'completion-at-point-functions
1697 'python-shell-completion-complete-at-point nil 'local)
1698 (add-to-list (make-local-variable 'comint-dynamic-complete-functions)
1699 'python-shell-completion-complete-at-point)
1700 (define-key inferior-python-mode-map "\t"
1701 'python-shell-completion-complete-or-indent)
1702 (make-local-variable 'python-pdbtrack-buffers-to-kill)
1703 (make-local-variable 'python-pdbtrack-tracked-buffer)
1704 (make-local-variable 'python-shell-internal-last-output)
1705 (when python-shell-enable-font-lock
1706 (set (make-local-variable 'font-lock-defaults)
1707 '(python-font-lock-keywords nil nil nil nil))
1708 (set (make-local-variable 'syntax-propertize-function)
1709 python-syntax-propertize-function))
1710 (compilation-shell-minor-mode 1))
1711
1712 (defun python-shell-make-comint (cmd proc-name &optional pop internal)
1713 "Create a python shell comint buffer.
1714 CMD is the python command to be executed and PROC-NAME is the
1715 process name the comint buffer will get. After the comint buffer
1716 is created the `inferior-python-mode' is activated. When
1717 optional argument POP is non-nil the buffer is shown. When
1718 optional argument INTERNAL is non-nil this process is run on a
1719 buffer with a name that starts with a space, following the Emacs
1720 convention for temporary/internal buffers, and also makes sure
1721 the user is not queried for confirmation when the process is
1722 killed."
1723 (save-excursion
1724 (let* ((proc-buffer-name
1725 (format (if (not internal) "*%s*" " *%s*") proc-name))
1726 (process-environment (python-shell-calculate-process-environment))
1727 (exec-path (python-shell-calculate-exec-path)))
1728 (when (not (comint-check-proc proc-buffer-name))
1729 (let* ((cmdlist (split-string-and-unquote cmd))
1730 (buffer (apply #'make-comint-in-buffer proc-name proc-buffer-name
1731 (car cmdlist) nil (cdr cmdlist)))
1732 (python-shell--parent-buffer (current-buffer))
1733 (process (get-buffer-process buffer)))
1734 (with-current-buffer buffer
1735 (inferior-python-mode))
1736 (accept-process-output process)
1737 (and pop (pop-to-buffer buffer t))
1738 (and internal (set-process-query-on-exit-flag process nil))))
1739 proc-buffer-name)))
1740
1741 ;;;###autoload
1742 (defun run-python (cmd &optional dedicated show)
1743 "Run an inferior Python process.
1744 Input and output via buffer named after
1745 `python-shell-buffer-name'. If there is a process already
1746 running in that buffer, just switch to it.
1747
1748 With argument, allows you to define CMD so you can edit the
1749 command used to call the interpreter and define DEDICATED, so a
1750 dedicated process for the current buffer is open. When numeric
1751 prefix arg is other than 0 or 4 do not SHOW.
1752
1753 Runs the hook `inferior-python-mode-hook' (after the
1754 `comint-mode-hook' is run). \(Type \\[describe-mode] in the
1755 process buffer for a list of commands.)"
1756 (interactive
1757 (if current-prefix-arg
1758 (list
1759 (read-string "Run Python: " (python-shell-parse-command))
1760 (y-or-n-p "Make dedicated process? ")
1761 (= (prefix-numeric-value current-prefix-arg) 4))
1762 (list (python-shell-parse-command) nil t)))
1763 (python-shell-make-comint
1764 cmd (python-shell-get-process-name dedicated) show)
1765 dedicated)
1766
1767 (defun run-python-internal ()
1768 "Run an inferior Internal Python process.
1769 Input and output via buffer named after
1770 `python-shell-internal-buffer-name' and what
1771 `python-shell-internal-get-process-name' returns.
1772
1773 This new kind of shell is intended to be used for generic
1774 communication related to defined configurations, the main
1775 difference with global or dedicated shells is that these ones are
1776 attached to a configuration, not a buffer. This means that can
1777 be used for example to retrieve the sys.path and other stuff,
1778 without messing with user shells. Note that
1779 `python-shell-enable-font-lock' and `inferior-python-mode-hook'
1780 are set to nil for these shells, so setup codes are not sent at
1781 startup."
1782 (let ((python-shell-enable-font-lock nil)
1783 (inferior-python-mode-hook nil))
1784 (get-buffer-process
1785 (python-shell-make-comint
1786 (python-shell-parse-command)
1787 (python-shell-internal-get-process-name) nil t))))
1788
1789 (defun python-shell-get-process ()
1790 "Get inferior Python process for current buffer and return it."
1791 (let* ((dedicated-proc-name (python-shell-get-process-name t))
1792 (dedicated-proc-buffer-name (format "*%s*" dedicated-proc-name))
1793 (global-proc-name (python-shell-get-process-name nil))
1794 (global-proc-buffer-name (format "*%s*" global-proc-name))
1795 (dedicated-running (comint-check-proc dedicated-proc-buffer-name))
1796 (global-running (comint-check-proc global-proc-buffer-name)))
1797 ;; Always prefer dedicated
1798 (get-buffer-process (or (and dedicated-running dedicated-proc-buffer-name)
1799 (and global-running global-proc-buffer-name)))))
1800
1801 (defun python-shell-get-or-create-process ()
1802 "Get or create an inferior Python process for current buffer and return it."
1803 (let* ((dedicated-proc-name (python-shell-get-process-name t))
1804 (dedicated-proc-buffer-name (format "*%s*" dedicated-proc-name))
1805 (global-proc-name (python-shell-get-process-name nil))
1806 (global-proc-buffer-name (format "*%s*" global-proc-name))
1807 (dedicated-running (comint-check-proc dedicated-proc-buffer-name))
1808 (global-running (comint-check-proc global-proc-buffer-name))
1809 (current-prefix-arg 16))
1810 (when (and (not dedicated-running) (not global-running))
1811 (if (call-interactively 'run-python)
1812 (setq dedicated-running t)
1813 (setq global-running t)))
1814 ;; Always prefer dedicated
1815 (get-buffer-process (if dedicated-running
1816 dedicated-proc-buffer-name
1817 global-proc-buffer-name))))
1818
1819 (defvar python-shell-internal-buffer nil
1820 "Current internal shell buffer for the current buffer.
1821 This is really not necessary at all for the code to work but it's
1822 there for compatibility with CEDET.")
1823
1824 (defvar python-shell-internal-last-output nil
1825 "Last output captured by the internal shell.
1826 This is really not necessary at all for the code to work but it's
1827 there for compatibility with CEDET.")
1828
1829 (defun python-shell-internal-get-or-create-process ()
1830 "Get or create an inferior Internal Python process."
1831 (let* ((proc-name (python-shell-internal-get-process-name))
1832 (proc-buffer-name (format " *%s*" proc-name)))
1833 (when (not (process-live-p proc-name))
1834 (run-python-internal)
1835 (setq python-shell-internal-buffer proc-buffer-name)
1836 ;; XXX: Why is this `sit-for' needed?
1837 ;; `python-shell-make-comint' calls `accept-process-output'
1838 ;; already but it is not helping to get proper output on
1839 ;; 'gnu/linux when the internal shell process is not running and
1840 ;; a call to `python-shell-internal-send-string' is issued.
1841 (sit-for 0.1 t))
1842 (get-buffer-process proc-buffer-name)))
1843
1844 (define-obsolete-function-alias
1845 'python-proc 'python-shell-internal-get-or-create-process "24.3")
1846
1847 (define-obsolete-variable-alias
1848 'python-buffer 'python-shell-internal-buffer "24.3")
1849
1850 (define-obsolete-variable-alias
1851 'python-preoutput-result 'python-shell-internal-last-output "24.3")
1852
1853 (defun python-shell-send-string (string &optional process msg)
1854 "Send STRING to inferior Python PROCESS.
1855 When MSG is non-nil messages the first line of STRING."
1856 (interactive "sPython command: ")
1857 (let ((process (or process (python-shell-get-or-create-process)))
1858 (lines (split-string string "\n" t)))
1859 (and msg (message "Sent: %s..." (nth 0 lines)))
1860 (if (> (length lines) 1)
1861 (let* ((temporary-file-directory
1862 (if (file-remote-p default-directory)
1863 (concat (file-remote-p default-directory) "/tmp")
1864 temporary-file-directory))
1865 (temp-file-name (make-temp-file "py"))
1866 (file-name (or (buffer-file-name) temp-file-name)))
1867 (with-temp-file temp-file-name
1868 (insert string)
1869 (delete-trailing-whitespace))
1870 (python-shell-send-file file-name process temp-file-name))
1871 (comint-send-string process string)
1872 (when (or (not (string-match "\n$" string))
1873 (string-match "\n[ \t].*\n?$" string))
1874 (comint-send-string process "\n")))))
1875
1876 (defvar python-shell-output-filter-in-progress nil)
1877 (defvar python-shell-output-filter-buffer nil)
1878
1879 (defun python-shell-output-filter (string)
1880 "Filter used in `python-shell-send-string-no-output' to grab output.
1881 STRING is the output received to this point from the process.
1882 This filter saves received output from the process in
1883 `python-shell-output-filter-buffer' and stops receiving it after
1884 detecting a prompt at the end of the buffer."
1885 (setq
1886 string (ansi-color-filter-apply string)
1887 python-shell-output-filter-buffer
1888 (concat python-shell-output-filter-buffer string))
1889 (when (string-match
1890 (format "\n\\(?:%s\\|%s\\|%s\\)$"
1891 python-shell-prompt-regexp
1892 python-shell-prompt-block-regexp
1893 python-shell-prompt-pdb-regexp)
1894 python-shell-output-filter-buffer)
1895 ;; Output ends when `python-shell-output-filter-buffer' contains
1896 ;; the prompt attached at the end of it.
1897 (setq python-shell-output-filter-in-progress nil
1898 python-shell-output-filter-buffer
1899 (substring python-shell-output-filter-buffer
1900 0 (match-beginning 0)))
1901 (when (and (> (length python-shell-prompt-output-regexp) 0)
1902 (string-match (concat "^" python-shell-prompt-output-regexp)
1903 python-shell-output-filter-buffer))
1904 ;; Some shells, like iPython might append a prompt before the
1905 ;; output, clean that.
1906 (setq python-shell-output-filter-buffer
1907 (substring python-shell-output-filter-buffer (match-end 0)))))
1908 "")
1909
1910 (defun python-shell-send-string-no-output (string &optional process msg)
1911 "Send STRING to PROCESS and inhibit output.
1912 When MSG is non-nil messages the first line of STRING. Return
1913 the output."
1914 (let ((process (or process (python-shell-get-or-create-process)))
1915 (comint-preoutput-filter-functions
1916 '(python-shell-output-filter))
1917 (python-shell-output-filter-in-progress t)
1918 (inhibit-quit t))
1919 (or
1920 (with-local-quit
1921 (python-shell-send-string string process msg)
1922 (while python-shell-output-filter-in-progress
1923 ;; `python-shell-output-filter' takes care of setting
1924 ;; `python-shell-output-filter-in-progress' to NIL after it
1925 ;; detects end of output.
1926 (accept-process-output process))
1927 (prog1
1928 python-shell-output-filter-buffer
1929 (setq python-shell-output-filter-buffer nil)))
1930 (with-current-buffer (process-buffer process)
1931 (comint-interrupt-subjob)))))
1932
1933 (defun python-shell-internal-send-string (string)
1934 "Send STRING to the Internal Python interpreter.
1935 Returns the output. See `python-shell-send-string-no-output'."
1936 ;; XXX Remove `python-shell-internal-last-output' once CEDET is
1937 ;; updated to support this new mode.
1938 (setq python-shell-internal-last-output
1939 (python-shell-send-string-no-output
1940 ;; Makes this function compatible with the old
1941 ;; python-send-receive. (At least for CEDET).
1942 (replace-regexp-in-string "_emacs_out +" "" string)
1943 (python-shell-internal-get-or-create-process) nil)))
1944
1945 (define-obsolete-function-alias
1946 'python-send-receive 'python-shell-internal-send-string "24.3")
1947
1948 (define-obsolete-function-alias
1949 'python-send-string 'python-shell-internal-send-string "24.3")
1950
1951 (defun python-shell-send-region (start end)
1952 "Send the region delimited by START and END to inferior Python process."
1953 (interactive "r")
1954 (python-shell-send-string (buffer-substring start end) nil t))
1955
1956 (defun python-shell-send-buffer (&optional arg)
1957 "Send the entire buffer to inferior Python process.
1958 With prefix ARG allow execution of code inside blocks delimited
1959 by \"if __name__== '__main__':\""
1960 (interactive "P")
1961 (save-restriction
1962 (widen)
1963 (let ((str (buffer-substring (point-min) (point-max))))
1964 (and
1965 (not arg)
1966 (setq str (replace-regexp-in-string
1967 (python-rx if-name-main)
1968 "if __name__ == '__main__ ':" str)))
1969 (python-shell-send-string str))))
1970
1971 (defun python-shell-send-defun (arg)
1972 "Send the current defun to inferior Python process.
1973 When argument ARG is non-nil do not include decorators."
1974 (interactive "P")
1975 (save-excursion
1976 (python-shell-send-region
1977 (progn
1978 (end-of-line 1)
1979 (while (and (or (python-beginning-of-defun-function)
1980 (beginning-of-line 1))
1981 (> (current-indentation) 0)))
1982 (when (not arg)
1983 (while (and (forward-line -1)
1984 (looking-at (python-rx decorator))))
1985 (forward-line 1))
1986 (point-marker))
1987 (progn
1988 (or (python-end-of-defun-function)
1989 (end-of-line 1))
1990 (point-marker)))))
1991
1992 (defun python-shell-send-file (file-name &optional process temp-file-name)
1993 "Send FILE-NAME to inferior Python PROCESS.
1994 If TEMP-FILE-NAME is passed then that file is used for processing
1995 instead, while internally the shell will continue to use
1996 FILE-NAME."
1997 (interactive "fFile to send: ")
1998 (let* ((process (or process (python-shell-get-or-create-process)))
1999 (temp-file-name (when temp-file-name
2000 (expand-file-name
2001 (or (file-remote-p temp-file-name 'localname)
2002 temp-file-name))))
2003 (file-name (or (when file-name
2004 (expand-file-name
2005 (or (file-remote-p file-name 'localname)
2006 file-name)))
2007 temp-file-name)))
2008 (when (not file-name)
2009 (error "If FILE-NAME is nil then TEMP-FILE-NAME must be non-nil"))
2010 (python-shell-send-string
2011 (format
2012 (concat "__pyfile = open('''%s''');"
2013 "exec(compile(__pyfile.read(), '''%s''', 'exec'));"
2014 "__pyfile.close()")
2015 (or temp-file-name file-name) file-name)
2016 process)))
2017
2018 (defun python-shell-switch-to-shell ()
2019 "Switch to inferior Python process buffer."
2020 (interactive)
2021 (pop-to-buffer (process-buffer (python-shell-get-or-create-process)) t))
2022
2023 (defun python-shell-send-setup-code ()
2024 "Send all setup code for shell.
2025 This function takes the list of setup code to send from the
2026 `python-shell-setup-codes' list."
2027 (let ((process (get-buffer-process (current-buffer))))
2028 (dolist (code python-shell-setup-codes)
2029 (when code
2030 (message "Sent %s" code)
2031 (python-shell-send-string
2032 (symbol-value code) process)))))
2033
2034 (add-hook 'inferior-python-mode-hook
2035 #'python-shell-send-setup-code)
2036
2037 \f
2038 ;;; Shell completion
2039
2040 (defcustom python-shell-completion-setup-code
2041 "try:
2042 import readline
2043 except ImportError:
2044 def __COMPLETER_all_completions(text): []
2045 else:
2046 import rlcompleter
2047 readline.set_completer(rlcompleter.Completer().complete)
2048 def __COMPLETER_all_completions(text):
2049 import sys
2050 completions = []
2051 try:
2052 i = 0
2053 while True:
2054 res = readline.get_completer()(text, i)
2055 if not res: break
2056 i += 1
2057 completions.append(res)
2058 except NameError:
2059 pass
2060 return completions"
2061 "Code used to setup completion in inferior Python processes."
2062 :type 'string
2063 :group 'python)
2064
2065 (defcustom python-shell-completion-string-code
2066 "';'.join(__COMPLETER_all_completions('''%s'''))\n"
2067 "Python code used to get a string of completions separated by semicolons."
2068 :type 'string
2069 :group 'python)
2070
2071 (defcustom python-shell-completion-module-string-code ""
2072 "Python code used to get completions separated by semicolons for imports.
2073
2074 For IPython v0.11, add the following line to
2075 `python-shell-completion-setup-code':
2076
2077 from IPython.core.completerlib import module_completion
2078
2079 and use the following as the value of this variable:
2080
2081 ';'.join(module_completion('''%s'''))\n"
2082 :type 'string
2083 :group 'python)
2084
2085 (defcustom python-shell-completion-pdb-string-code
2086 "';'.join(globals().keys() + locals().keys())"
2087 "Python code used to get completions separated by semicolons for [i]pdb."
2088 :type 'string
2089 :group 'python)
2090
2091 (defun python-shell-completion-get-completions (process line input)
2092 "Do completion at point for PROCESS.
2093 LINE is used to detect the context on how to complete given
2094 INPUT."
2095 (let* ((prompt
2096 ;; Get the last prompt for the inferior process
2097 ;; buffer. This is used for the completion code selection
2098 ;; heuristic.
2099 (with-current-buffer (process-buffer process)
2100 (buffer-substring-no-properties
2101 (overlay-start comint-last-prompt-overlay)
2102 (overlay-end comint-last-prompt-overlay))))
2103 (completion-context
2104 ;; Check whether a prompt matches a pdb string, an import
2105 ;; statement or just the standard prompt and use the
2106 ;; correct python-shell-completion-*-code string
2107 (cond ((and (> (length python-shell-completion-pdb-string-code) 0)
2108 (string-match
2109 (concat "^" python-shell-prompt-pdb-regexp) prompt))
2110 'pdb)
2111 ((and (>
2112 (length python-shell-completion-module-string-code) 0)
2113 (string-match
2114 (concat "^" python-shell-prompt-regexp) prompt)
2115 (string-match "^[ \t]*\\(from\\|import\\)[ \t]" line))
2116 'import)
2117 ((string-match
2118 (concat "^" python-shell-prompt-regexp) prompt)
2119 'default)
2120 (t nil)))
2121 (completion-code
2122 (case completion-context
2123 (pdb python-shell-completion-pdb-string-code)
2124 (import python-shell-completion-module-string-code)
2125 (default python-shell-completion-string-code)
2126 (t nil)))
2127 (input
2128 (if (eq completion-context 'import)
2129 (replace-regexp-in-string "^[ \t]+" "" line)
2130 input)))
2131 (and completion-code
2132 (> (length input) 0)
2133 (with-current-buffer (process-buffer process)
2134 (let ((completions (python-shell-send-string-no-output
2135 (format completion-code input) process)))
2136 (and (> (length completions) 2)
2137 (split-string completions
2138 "^'\\|^\"\\|;\\|'$\\|\"$" t)))))))
2139
2140 (defun python-shell-completion-complete-at-point (&optional process)
2141 "Perform completion at point in inferior Python.
2142 Optional argument PROCESS forces completions to be retrieved
2143 using that one instead of current buffer's process."
2144 (setq process (or process (get-buffer-process (current-buffer))))
2145 (let* ((start
2146 (save-excursion
2147 (with-syntax-table python-dotty-syntax-table
2148 (let* ((paren-depth (car (syntax-ppss)))
2149 (syntax-string "w_")
2150 (syntax-list (string-to-syntax syntax-string)))
2151 ;; Stop scanning for the beginning of the completion
2152 ;; subject after the char before point matches a
2153 ;; delimiter
2154 (while (member
2155 (car (syntax-after (1- (point)))) syntax-list)
2156 (skip-syntax-backward syntax-string)
2157 (when (or (equal (char-before) ?\))
2158 (equal (char-before) ?\"))
2159 (forward-char -1))
2160 (while (or
2161 ;; honor initial paren depth
2162 (> (car (syntax-ppss)) paren-depth)
2163 (python-syntax-context 'string))
2164 (forward-char -1)))
2165 (point)))))
2166 (end (point)))
2167 (list start end
2168 (completion-table-dynamic
2169 (apply-partially
2170 #'python-shell-completion-get-completions
2171 process (buffer-substring-no-properties
2172 (line-beginning-position) end))))))
2173
2174 (defun python-shell-completion-complete-or-indent ()
2175 "Complete or indent depending on the context.
2176 If content before pointer is all whitespace indent. If not try
2177 to complete."
2178 (interactive)
2179 (if (string-match "^[[:space:]]*$"
2180 (buffer-substring (comint-line-beginning-position)
2181 (point-marker)))
2182 (indent-for-tab-command)
2183 (completion-at-point)))
2184
2185 \f
2186 ;;; PDB Track integration
2187
2188 (defcustom python-pdbtrack-activate t
2189 "Non-nil makes python shell enable pdbtracking."
2190 :type 'boolean
2191 :group 'python
2192 :safe 'booleanp)
2193
2194 (defcustom python-pdbtrack-stacktrace-info-regexp
2195 "^> \\([^\"(<]+\\)(\\([0-9]+\\))\\([?a-zA-Z0-9_<>]+\\)()"
2196 "Regular Expression matching stacktrace information.
2197 Used to extract the current line and module being inspected."
2198 :type 'string
2199 :group 'python
2200 :safe 'stringp)
2201
2202 (defvar python-pdbtrack-tracked-buffer nil
2203 "Variable containing the value of the current tracked buffer.
2204 Never set this variable directly, use
2205 `python-pdbtrack-set-tracked-buffer' instead.")
2206
2207 (defvar python-pdbtrack-buffers-to-kill nil
2208 "List of buffers to be deleted after tracking finishes.")
2209
2210 (defun python-pdbtrack-set-tracked-buffer (file-name)
2211 "Set the buffer for FILE-NAME as the tracked buffer.
2212 Internally it uses the `python-pdbtrack-tracked-buffer' variable.
2213 Returns the tracked buffer."
2214 (let ((file-buffer (get-file-buffer file-name)))
2215 (if file-buffer
2216 (setq python-pdbtrack-tracked-buffer file-buffer)
2217 (setq file-buffer (find-file-noselect file-name))
2218 (when (not (member file-buffer python-pdbtrack-buffers-to-kill))
2219 (add-to-list 'python-pdbtrack-buffers-to-kill file-buffer)))
2220 file-buffer))
2221
2222 (defun python-pdbtrack-comint-output-filter-function (output)
2223 "Move overlay arrow to current pdb line in tracked buffer.
2224 Argument OUTPUT is a string with the output from the comint process."
2225 (when (and python-pdbtrack-activate (not (string= output "")))
2226 (let* ((full-output (ansi-color-filter-apply
2227 (buffer-substring comint-last-input-end (point-max))))
2228 (line-number)
2229 (file-name
2230 (with-temp-buffer
2231 (insert full-output)
2232 (goto-char (point-min))
2233 ;; OK, this sucked but now it became a cool hack. The
2234 ;; stacktrace information normally is on the first line
2235 ;; but in some cases (like when doing a step-in) it is
2236 ;; on the second.
2237 (when (or (looking-at python-pdbtrack-stacktrace-info-regexp)
2238 (and
2239 (forward-line)
2240 (looking-at python-pdbtrack-stacktrace-info-regexp)))
2241 (setq line-number (string-to-number
2242 (match-string-no-properties 2)))
2243 (match-string-no-properties 1)))))
2244 (if (and file-name line-number)
2245 (let* ((tracked-buffer
2246 (python-pdbtrack-set-tracked-buffer file-name))
2247 (shell-buffer (current-buffer))
2248 (tracked-buffer-window (get-buffer-window tracked-buffer))
2249 (tracked-buffer-line-pos))
2250 (with-current-buffer tracked-buffer
2251 (set (make-local-variable 'overlay-arrow-string) "=>")
2252 (set (make-local-variable 'overlay-arrow-position) (make-marker))
2253 (setq tracked-buffer-line-pos (progn
2254 (goto-char (point-min))
2255 (forward-line (1- line-number))
2256 (point-marker)))
2257 (when tracked-buffer-window
2258 (set-window-point
2259 tracked-buffer-window tracked-buffer-line-pos))
2260 (set-marker overlay-arrow-position tracked-buffer-line-pos))
2261 (pop-to-buffer tracked-buffer)
2262 (switch-to-buffer-other-window shell-buffer))
2263 (when python-pdbtrack-tracked-buffer
2264 (with-current-buffer python-pdbtrack-tracked-buffer
2265 (set-marker overlay-arrow-position nil))
2266 (mapc #'(lambda (buffer)
2267 (ignore-errors (kill-buffer buffer)))
2268 python-pdbtrack-buffers-to-kill)
2269 (setq python-pdbtrack-tracked-buffer nil
2270 python-pdbtrack-buffers-to-kill nil)))))
2271 output)
2272
2273 \f
2274 ;;; Symbol completion
2275
2276 (defun python-completion-complete-at-point ()
2277 "Complete current symbol at point.
2278 For this to work the best as possible you should call
2279 `python-shell-send-buffer' from time to time so context in
2280 inferior python process is updated properly."
2281 (let ((process (python-shell-get-process)))
2282 (if (not process)
2283 (error "Completion needs an inferior Python process running")
2284 (python-shell-completion-complete-at-point process))))
2285
2286 (add-to-list 'debug-ignored-errors
2287 "^Completion needs an inferior Python process running.")
2288
2289 \f
2290 ;;; Fill paragraph
2291
2292 (defcustom python-fill-comment-function 'python-fill-comment
2293 "Function to fill comments.
2294 This is the function used by `python-fill-paragraph-function' to
2295 fill comments."
2296 :type 'symbol
2297 :group 'python)
2298
2299 (defcustom python-fill-string-function 'python-fill-string
2300 "Function to fill strings.
2301 This is the function used by `python-fill-paragraph-function' to
2302 fill strings."
2303 :type 'symbol
2304 :group 'python)
2305
2306 (defcustom python-fill-decorator-function 'python-fill-decorator
2307 "Function to fill decorators.
2308 This is the function used by `python-fill-paragraph-function' to
2309 fill decorators."
2310 :type 'symbol
2311 :group 'python)
2312
2313 (defcustom python-fill-paren-function 'python-fill-paren
2314 "Function to fill parens.
2315 This is the function used by `python-fill-paragraph-function' to
2316 fill parens."
2317 :type 'symbol
2318 :group 'python)
2319
2320 (defcustom python-fill-docstring-style 'pep-257
2321 "Style used to fill docstrings.
2322 This affects `python-fill-string' behavior with regards to
2323 triple quotes positioning.
2324
2325 Possible values are DJANGO, ONETWO, PEP-257, PEP-257-NN,
2326 SYMMETRIC, and NIL. A value of NIL won't care about quotes
2327 position and will treat docstrings a normal string, any other
2328 value may result in one of the following docstring styles:
2329
2330 DJANGO:
2331
2332 \"\"\"
2333 Process foo, return bar.
2334 \"\"\"
2335
2336 \"\"\"
2337 Process foo, return bar.
2338
2339 If processing fails throw ProcessingError.
2340 \"\"\"
2341
2342 ONETWO:
2343
2344 \"\"\"Process foo, return bar.\"\"\"
2345
2346 \"\"\"
2347 Process foo, return bar.
2348
2349 If processing fails throw ProcessingError.
2350
2351 \"\"\"
2352
2353 PEP-257:
2354
2355 \"\"\"Process foo, return bar.\"\"\"
2356
2357 \"\"\"Process foo, return bar.
2358
2359 If processing fails throw ProcessingError.
2360
2361 \"\"\"
2362
2363 PEP-257-NN:
2364
2365 \"\"\"Process foo, return bar.\"\"\"
2366
2367 \"\"\"Process foo, return bar.
2368
2369 If processing fails throw ProcessingError.
2370 \"\"\"
2371
2372 SYMMETRIC:
2373
2374 \"\"\"Process foo, return bar.\"\"\"
2375
2376 \"\"\"
2377 Process foo, return bar.
2378
2379 If processing fails throw ProcessingError.
2380 \"\"\""
2381 :type '(choice
2382 (const :tag "Don't format docstrings" nil)
2383 (const :tag "Django's coding standards style." django)
2384 (const :tag "One newline and start and Two at end style." onetwo)
2385 (const :tag "PEP-257 with 2 newlines at end of string." pep-257)
2386 (const :tag "PEP-257 with 1 newline at end of string." pep-257-nn)
2387 (const :tag "Symmetric style." symmetric))
2388 :group 'python
2389 :safe (lambda (val)
2390 (memq val '(django onetwo pep-257 pep-257-nn symmetric nil))))
2391
2392 (defun python-fill-paragraph-function (&optional justify)
2393 "`fill-paragraph-function' handling multi-line strings and possibly comments.
2394 If any of the current line is in or at the end of a multi-line string,
2395 fill the string or the paragraph of it that point is in, preserving
2396 the string's indentation.
2397 Optional argument JUSTIFY defines if the paragraph should be justified."
2398 (interactive "P")
2399 (save-excursion
2400 (cond
2401 ;; Comments
2402 ((python-syntax-context 'comment)
2403 (funcall python-fill-comment-function justify))
2404 ;; Strings/Docstrings
2405 ((save-excursion (or (python-syntax-context 'string)
2406 (equal (string-to-syntax "|")
2407 (syntax-after (point)))))
2408 (funcall python-fill-string-function justify))
2409 ;; Decorators
2410 ((equal (char-after (save-excursion
2411 (back-to-indentation)
2412 (point))) ?@)
2413 (funcall python-fill-decorator-function justify))
2414 ;; Parens
2415 ((or (python-syntax-context 'paren)
2416 (looking-at (python-rx open-paren))
2417 (save-excursion
2418 (skip-syntax-forward "^(" (line-end-position))
2419 (looking-at (python-rx open-paren))))
2420 (funcall python-fill-paren-function justify))
2421 (t t))))
2422
2423 (defun python-fill-comment (&optional justify)
2424 "Comment fill function for `python-fill-paragraph-function'.
2425 JUSTIFY should be used (if applicable) as in `fill-paragraph'."
2426 (fill-comment-paragraph justify))
2427
2428 (defun python-fill-string (&optional justify)
2429 "String fill function for `python-fill-paragraph-function'.
2430 JUSTIFY should be used (if applicable) as in `fill-paragraph'."
2431 (let* ((marker (point-marker))
2432 (str-start-pos
2433 (let ((m (make-marker)))
2434 (setf (marker-position m)
2435 (or (python-syntax-context 'string)
2436 (and (equal (string-to-syntax "|")
2437 (syntax-after (point)))
2438 (point)))) m))
2439 (num-quotes (python-syntax-count-quotes
2440 (char-after str-start-pos) str-start-pos))
2441 (str-end-pos
2442 (save-excursion
2443 (goto-char (+ str-start-pos num-quotes))
2444 (or (re-search-forward (rx (syntax string-delimiter)) nil t)
2445 (goto-char (point-max)))
2446 (point-marker)))
2447 (multi-line-p
2448 ;; Docstring styles may vary for oneliners and multi-liners.
2449 (> (count-matches "\n" str-start-pos str-end-pos) 0))
2450 (delimiters-style
2451 (case python-fill-docstring-style
2452 ;; delimiters-style is a cons cell with the form
2453 ;; (START-NEWLINES . END-NEWLINES). When any of the sexps
2454 ;; is NIL means to not add any newlines for start or end
2455 ;; of docstring. See `python-fill-docstring-style' for a
2456 ;; graphic idea of each style.
2457 (django (cons 1 1))
2458 (onetwo (and multi-line-p (cons 1 2)))
2459 (pep-257 (and multi-line-p (cons nil 2)))
2460 (pep-257-nn (and multi-line-p (cons nil 1)))
2461 (symmetric (and multi-line-p (cons 1 1)))))
2462 (docstring-p (save-excursion
2463 ;; Consider docstrings those strings which
2464 ;; start on a line by themselves.
2465 (python-nav-beginning-of-statement)
2466 (and (= (point) str-start-pos))))
2467 (fill-paragraph-function))
2468 (save-restriction
2469 (narrow-to-region str-start-pos str-end-pos)
2470 (fill-paragraph justify))
2471 (save-excursion
2472 (when (and docstring-p python-fill-docstring-style)
2473 ;; Add the number of newlines indicated by the selected style
2474 ;; at the start of the docstring.
2475 (goto-char (+ str-start-pos num-quotes))
2476 (delete-region (point) (progn
2477 (skip-syntax-forward "> ")
2478 (point)))
2479 (and (car delimiters-style)
2480 (or (newline (car delimiters-style)) t)
2481 ;; Indent only if a newline is added.
2482 (indent-according-to-mode))
2483 ;; Add the number of newlines indicated by the selected style
2484 ;; at the end of the docstring.
2485 (goto-char (if (not (= str-end-pos (point-max)))
2486 (- str-end-pos num-quotes)
2487 str-end-pos))
2488 (delete-region (point) (progn
2489 (skip-syntax-backward "> ")
2490 (point)))
2491 (and (cdr delimiters-style)
2492 ;; Add newlines only if string ends.
2493 (not (= str-end-pos (point-max)))
2494 (or (newline (cdr delimiters-style)) t)
2495 ;; Again indent only if a newline is added.
2496 (indent-according-to-mode))))) t)
2497
2498 (defun python-fill-decorator (&optional justify)
2499 "Decorator fill function for `python-fill-paragraph-function'.
2500 JUSTIFY should be used (if applicable) as in `fill-paragraph'."
2501 t)
2502
2503 (defun python-fill-paren (&optional justify)
2504 "Paren fill function for `python-fill-paragraph-function'.
2505 JUSTIFY should be used (if applicable) as in `fill-paragraph'."
2506 (save-restriction
2507 (narrow-to-region (progn
2508 (while (python-syntax-context 'paren)
2509 (goto-char (1- (point-marker))))
2510 (point-marker)
2511 (line-beginning-position))
2512 (progn
2513 (when (not (python-syntax-context 'paren))
2514 (end-of-line)
2515 (when (not (python-syntax-context 'paren))
2516 (skip-syntax-backward "^)")))
2517 (while (python-syntax-context 'paren)
2518 (goto-char (1+ (point-marker))))
2519 (point-marker)))
2520 (let ((paragraph-start "\f\\|[ \t]*$")
2521 (paragraph-separate ",")
2522 (fill-paragraph-function))
2523 (goto-char (point-min))
2524 (fill-paragraph justify))
2525 (while (not (eobp))
2526 (forward-line 1)
2527 (python-indent-line)
2528 (goto-char (line-end-position)))) t)
2529
2530 \f
2531 ;;; Skeletons
2532
2533 (defcustom python-skeleton-autoinsert nil
2534 "Non-nil means template skeletons will be automagically inserted.
2535 This happens when pressing \"if<SPACE>\", for example, to prompt for
2536 the if condition."
2537 :type 'boolean
2538 :group 'python
2539 :safe 'booleanp)
2540
2541 (define-obsolete-variable-alias
2542 'python-use-skeletons 'python-skeleton-autoinsert "24.3")
2543
2544 (defvar python-skeleton-available '()
2545 "Internal list of available skeletons.")
2546
2547 (define-abbrev-table 'python-mode-abbrev-table ()
2548 "Abbrev table for Python mode."
2549 :case-fixed t
2550 ;; Allow / inside abbrevs.
2551 :regexp "\\(?:^\\|[^/]\\)\\<\\([[:word:]/]+\\)\\W*"
2552 ;; Only expand in code.
2553 :enable-function (lambda ()
2554 (and
2555 (not (python-syntax-comment-or-string-p))
2556 python-skeleton-autoinsert)))
2557
2558 (defmacro python-skeleton-define (name doc &rest skel)
2559 "Define a `python-mode' skeleton using NAME DOC and SKEL.
2560 The skeleton will be bound to python-skeleton-NAME and will
2561 be added to `python-mode-abbrev-table'."
2562 (declare (indent 2))
2563 (let* ((name (symbol-name name))
2564 (function-name (intern (concat "python-skeleton-" name))))
2565 `(progn
2566 (define-abbrev python-mode-abbrev-table ,name "" ',function-name
2567 :system t)
2568 (setq python-skeleton-available
2569 (cons ',function-name python-skeleton-available))
2570 (define-skeleton ,function-name
2571 ,(or doc
2572 (format "Insert %s statement." name))
2573 ,@skel))))
2574
2575 (defmacro python-define-auxiliary-skeleton (name doc &optional &rest skel)
2576 "Define a `python-mode' auxiliary skeleton using NAME DOC and SKEL.
2577 The skeleton will be bound to python-skeleton-NAME."
2578 (declare (indent 2))
2579 (let* ((name (symbol-name name))
2580 (function-name (intern (concat "python-skeleton--" name)))
2581 (msg (format
2582 "Add '%s' clause? " name)))
2583 (when (not skel)
2584 (setq skel
2585 `(< ,(format "%s:" name) \n \n
2586 > _ \n)))
2587 `(define-skeleton ,function-name
2588 ,(or doc
2589 (format "Auxiliary skeleton for %s statement." name))
2590 nil
2591 (unless (y-or-n-p ,msg)
2592 (signal 'quit t))
2593 ,@skel)))
2594
2595 (python-define-auxiliary-skeleton else nil)
2596
2597 (python-define-auxiliary-skeleton except nil)
2598
2599 (python-define-auxiliary-skeleton finally nil)
2600
2601 (python-skeleton-define if nil
2602 "Condition: "
2603 "if " str ":" \n
2604 _ \n
2605 ("other condition, %s: "
2606 <
2607 "elif " str ":" \n
2608 > _ \n nil)
2609 '(python-skeleton--else) | ^)
2610
2611 (python-skeleton-define while nil
2612 "Condition: "
2613 "while " str ":" \n
2614 > _ \n
2615 '(python-skeleton--else) | ^)
2616
2617 (python-skeleton-define for nil
2618 "Iteration spec: "
2619 "for " str ":" \n
2620 > _ \n
2621 '(python-skeleton--else) | ^)
2622
2623 (python-skeleton-define try nil
2624 nil
2625 "try:" \n
2626 > _ \n
2627 ("Exception, %s: "
2628 <
2629 "except " str ":" \n
2630 > _ \n nil)
2631 resume:
2632 '(python-skeleton--except)
2633 '(python-skeleton--else)
2634 '(python-skeleton--finally) | ^)
2635
2636 (python-skeleton-define def nil
2637 "Function name: "
2638 "def " str " (" ("Parameter, %s: "
2639 (unless (equal ?\( (char-before)) ", ")
2640 str) "):" \n
2641 "\"\"\"" - "\"\"\"" \n
2642 > _ \n)
2643
2644 (python-skeleton-define class nil
2645 "Class name: "
2646 "class " str " (" ("Inheritance, %s: "
2647 (unless (equal ?\( (char-before)) ", ")
2648 str)
2649 & ")" | -2
2650 ":" \n
2651 "\"\"\"" - "\"\"\"" \n
2652 > _ \n)
2653
2654 (defun python-skeleton-add-menu-items ()
2655 "Add menu items to Python->Skeletons menu."
2656 (let ((skeletons (sort python-skeleton-available 'string<))
2657 (items))
2658 (dolist (skeleton skeletons)
2659 (easy-menu-add-item
2660 nil '("Python" "Skeletons")
2661 `[,(format
2662 "Insert %s" (caddr (split-string (symbol-name skeleton) "-")))
2663 ,skeleton t]))))
2664 \f
2665 ;;; FFAP
2666
2667 (defcustom python-ffap-setup-code
2668 "def __FFAP_get_module_path(module):
2669 try:
2670 import os
2671 path = __import__(module).__file__
2672 if path[-4:] == '.pyc' and os.path.exists(path[0:-1]):
2673 path = path[:-1]
2674 return path
2675 except:
2676 return ''"
2677 "Python code to get a module path."
2678 :type 'string
2679 :group 'python)
2680
2681 (defcustom python-ffap-string-code
2682 "__FFAP_get_module_path('''%s''')\n"
2683 "Python code used to get a string with the path of a module."
2684 :type 'string
2685 :group 'python)
2686
2687 (defun python-ffap-module-path (module)
2688 "Function for `ffap-alist' to return path for MODULE."
2689 (let ((process (or
2690 (and (eq major-mode 'inferior-python-mode)
2691 (get-buffer-process (current-buffer)))
2692 (python-shell-get-process))))
2693 (if (not process)
2694 nil
2695 (let ((module-file
2696 (python-shell-send-string-no-output
2697 (format python-ffap-string-code module) process)))
2698 (when module-file
2699 (substring-no-properties module-file 1 -1))))))
2700
2701 (eval-after-load "ffap"
2702 '(progn
2703 (push '(python-mode . python-ffap-module-path) ffap-alist)
2704 (push '(inferior-python-mode . python-ffap-module-path) ffap-alist)))
2705
2706 \f
2707 ;;; Code check
2708
2709 (defcustom python-check-command
2710 "pyflakes"
2711 "Command used to check a Python file."
2712 :type 'string
2713 :group 'python)
2714
2715 (defcustom python-check-buffer-name
2716 "*Python check: %s*"
2717 "Buffer name used for check commands."
2718 :type 'string
2719 :group 'python)
2720
2721 (defvar python-check-custom-command nil
2722 "Internal use.")
2723
2724 (defun python-check (command)
2725 "Check a Python file (default current buffer's file).
2726 Runs COMMAND, a shell command, as if by `compile'. See
2727 `python-check-command' for the default."
2728 (interactive
2729 (list (read-string "Check command: "
2730 (or python-check-custom-command
2731 (concat python-check-command " "
2732 (shell-quote-argument
2733 (or
2734 (let ((name (buffer-file-name)))
2735 (and name
2736 (file-name-nondirectory name)))
2737 "")))))))
2738 (setq python-check-custom-command command)
2739 (save-some-buffers (not compilation-ask-about-save) nil)
2740 (let ((process-environment (python-shell-calculate-process-environment))
2741 (exec-path (python-shell-calculate-exec-path)))
2742 (compilation-start command nil
2743 (lambda (mode-name)
2744 (format python-check-buffer-name command)))))
2745
2746 \f
2747 ;;; Eldoc
2748
2749 (defcustom python-eldoc-setup-code
2750 "def __PYDOC_get_help(obj):
2751 try:
2752 import inspect
2753 if hasattr(obj, 'startswith'):
2754 obj = eval(obj, globals())
2755 doc = inspect.getdoc(obj)
2756 if not doc and callable(obj):
2757 target = None
2758 if inspect.isclass(obj) and hasattr(obj, '__init__'):
2759 target = obj.__init__
2760 objtype = 'class'
2761 else:
2762 target = obj
2763 objtype = 'def'
2764 if target:
2765 args = inspect.formatargspec(
2766 *inspect.getargspec(target)
2767 )
2768 name = obj.__name__
2769 doc = '{objtype} {name}{args}'.format(
2770 objtype=objtype, name=name, args=args
2771 )
2772 else:
2773 doc = doc.splitlines()[0]
2774 except:
2775 doc = ''
2776 try:
2777 exec('print doc')
2778 except SyntaxError:
2779 print(doc)"
2780 "Python code to setup documentation retrieval."
2781 :type 'string
2782 :group 'python)
2783
2784 (defcustom python-eldoc-string-code
2785 "__PYDOC_get_help('''%s''')\n"
2786 "Python code used to get a string with the documentation of an object."
2787 :type 'string
2788 :group 'python)
2789
2790 (defun python-eldoc--get-doc-at-point (&optional force-input force-process)
2791 "Internal implementation to get documentation at point.
2792 If not FORCE-INPUT is passed then what
2793 `python-info-current-symbol' returns will be used. If not
2794 FORCE-PROCESS is passed what `python-shell-get-process' returns
2795 is used."
2796 (let ((process (or force-process (python-shell-get-process))))
2797 (if (not process)
2798 (error "Eldoc needs an inferior Python process running")
2799 (let ((input (or force-input
2800 (python-info-current-symbol t))))
2801 (and input
2802 (python-shell-send-string-no-output
2803 (format python-eldoc-string-code input)
2804 process))))))
2805
2806 (defun python-eldoc-function ()
2807 "`eldoc-documentation-function' for Python.
2808 For this to work the best as possible you should call
2809 `python-shell-send-buffer' from time to time so context in
2810 inferior python process is updated properly."
2811 (python-eldoc--get-doc-at-point))
2812
2813 (defun python-eldoc-at-point (symbol)
2814 "Get help on SYMBOL using `help'.
2815 Interactively, prompt for symbol."
2816 (interactive
2817 (let ((symbol (python-info-current-symbol t))
2818 (enable-recursive-minibuffers t))
2819 (list (read-string (if symbol
2820 (format "Describe symbol (default %s): " symbol)
2821 "Describe symbol: ")
2822 nil nil symbol))))
2823 (message (python-eldoc--get-doc-at-point symbol)))
2824
2825 (add-to-list 'debug-ignored-errors
2826 "^Eldoc needs an inferior Python process running.")
2827
2828 \f
2829 ;;; Misc helpers
2830
2831 (defun python-info-current-defun (&optional include-type)
2832 "Return name of surrounding function with Python compatible dotty syntax.
2833 Optional argument INCLUDE-TYPE indicates to include the type of the defun.
2834 This function is compatible to be used as
2835 `add-log-current-defun-function' since it returns nil if point is
2836 not inside a defun."
2837 (let ((names '())
2838 (starting-indentation)
2839 (starting-point)
2840 (first-run t))
2841 (save-restriction
2842 (widen)
2843 (save-excursion
2844 (setq starting-point (point-marker))
2845 (setq starting-indentation (save-excursion
2846 (python-nav-beginning-of-statement)
2847 (current-indentation)))
2848 (end-of-line 1)
2849 (while (python-beginning-of-defun-function 1)
2850 (when (or (< (current-indentation) starting-indentation)
2851 (and first-run
2852 (<
2853 starting-point
2854 (save-excursion
2855 (python-end-of-defun-function)
2856 (point-marker)))))
2857 (setq first-run nil)
2858 (setq starting-indentation (current-indentation))
2859 (looking-at python-nav-beginning-of-defun-regexp)
2860 (setq names (cons
2861 (if (not include-type)
2862 (match-string-no-properties 1)
2863 (mapconcat 'identity
2864 (split-string
2865 (match-string-no-properties 0)) " "))
2866 names))))))
2867 (when names
2868 (mapconcat (lambda (string) string) names "."))))
2869
2870 (defun python-info-current-symbol (&optional replace-self)
2871 "Return current symbol using dotty syntax.
2872 With optional argument REPLACE-SELF convert \"self\" to current
2873 parent defun name."
2874 (let ((name
2875 (and (not (python-syntax-comment-or-string-p))
2876 (with-syntax-table python-dotty-syntax-table
2877 (let ((sym (symbol-at-point)))
2878 (and sym
2879 (substring-no-properties (symbol-name sym))))))))
2880 (when name
2881 (if (not replace-self)
2882 name
2883 (let ((current-defun (python-info-current-defun)))
2884 (if (not current-defun)
2885 name
2886 (replace-regexp-in-string
2887 (python-rx line-start word-start "self" word-end ?.)
2888 (concat
2889 (mapconcat 'identity
2890 (butlast (split-string current-defun "\\."))
2891 ".") ".")
2892 name)))))))
2893
2894 (defsubst python-info-beginning-of-block-statement-p ()
2895 "Return non-nil if current statement opens a block."
2896 (save-excursion
2897 (python-nav-beginning-of-statement)
2898 (looking-at (python-rx block-start))))
2899
2900 (defun python-info-closing-block ()
2901 "Return the point of the block the current line closes."
2902 (let ((closing-word (save-excursion
2903 (back-to-indentation)
2904 (current-word)))
2905 (indentation (current-indentation)))
2906 (when (member closing-word python-indent-dedenters)
2907 (save-excursion
2908 (forward-line -1)
2909 (while (and (> (current-indentation) indentation)
2910 (not (bobp))
2911 (not (back-to-indentation))
2912 (forward-line -1)))
2913 (back-to-indentation)
2914 (cond
2915 ((not (equal indentation (current-indentation))) nil)
2916 ((string= closing-word "elif")
2917 (when (member (current-word) '("if" "elif"))
2918 (point-marker)))
2919 ((string= closing-word "else")
2920 (when (member (current-word) '("if" "elif" "except" "for" "while"))
2921 (point-marker)))
2922 ((string= closing-word "except")
2923 (when (member (current-word) '("try"))
2924 (point-marker)))
2925 ((string= closing-word "finally")
2926 (when (member (current-word) '("except" "else"))
2927 (point-marker))))))))
2928
2929 (defun python-info-closing-block-message (&optional closing-block-point)
2930 "Message the contents of the block the current line closes.
2931 With optional argument CLOSING-BLOCK-POINT use that instead of
2932 recalculating it calling `python-info-closing-block'."
2933 (let ((point (or closing-block-point (python-info-closing-block))))
2934 (when point
2935 (save-restriction
2936 (widen)
2937 (message "Closes %s" (save-excursion
2938 (goto-char point)
2939 (back-to-indentation)
2940 (buffer-substring
2941 (point) (line-end-position))))))))
2942
2943 (defun python-info-line-ends-backslash-p (&optional line-number)
2944 "Return non-nil if current line ends with backslash.
2945 With optional argument LINE-NUMBER, check that line instead."
2946 (save-excursion
2947 (save-restriction
2948 (widen)
2949 (when line-number
2950 (goto-char line-number))
2951 (while (and (not (eobp))
2952 (goto-char (line-end-position))
2953 (python-syntax-context 'paren)
2954 (not (equal (char-before (point)) ?\\)))
2955 (forward-line 1))
2956 (when (equal (char-before) ?\\)
2957 (point-marker)))))
2958
2959 (defun python-info-beginning-of-backslash (&optional line-number)
2960 "Return the point where the backslashed line start.
2961 Optional argument LINE-NUMBER forces the line number to check against."
2962 (save-excursion
2963 (save-restriction
2964 (widen)
2965 (when line-number
2966 (goto-char line-number))
2967 (when (python-info-line-ends-backslash-p)
2968 (while (save-excursion
2969 (goto-char (line-beginning-position))
2970 (python-syntax-context 'paren))
2971 (forward-line -1))
2972 (back-to-indentation)
2973 (point-marker)))))
2974
2975 (defun python-info-continuation-line-p ()
2976 "Check if current line is continuation of another.
2977 When current line is continuation of another return the point
2978 where the continued line ends."
2979 (save-excursion
2980 (save-restriction
2981 (widen)
2982 (let* ((context-type (progn
2983 (back-to-indentation)
2984 (python-syntax-context-type)))
2985 (line-start (line-number-at-pos))
2986 (context-start (when context-type
2987 (python-syntax-context context-type))))
2988 (cond ((equal context-type 'paren)
2989 ;; Lines inside a paren are always a continuation line
2990 ;; (except the first one).
2991 (python-util-forward-comment -1)
2992 (point-marker))
2993 ((member context-type '(string comment))
2994 ;; move forward an roll again
2995 (goto-char context-start)
2996 (python-util-forward-comment)
2997 (python-info-continuation-line-p))
2998 (t
2999 ;; Not within a paren, string or comment, the only way
3000 ;; we are dealing with a continuation line is that
3001 ;; previous line contains a backslash, and this can
3002 ;; only be the previous line from current
3003 (back-to-indentation)
3004 (python-util-forward-comment -1)
3005 (when (and (equal (1- line-start) (line-number-at-pos))
3006 (python-info-line-ends-backslash-p))
3007 (point-marker))))))))
3008
3009 (defun python-info-block-continuation-line-p ()
3010 "Return non-nil if current line is a continuation of a block."
3011 (save-excursion
3012 (when (python-info-continuation-line-p)
3013 (forward-line -1)
3014 (back-to-indentation)
3015 (when (looking-at (python-rx block-start))
3016 (point-marker)))))
3017
3018 (defun python-info-assignment-continuation-line-p ()
3019 "Check if current line is a continuation of an assignment.
3020 When current line is continuation of another with an assignment
3021 return the point of the first non-blank character after the
3022 operator."
3023 (save-excursion
3024 (when (python-info-continuation-line-p)
3025 (forward-line -1)
3026 (back-to-indentation)
3027 (when (and (not (looking-at (python-rx block-start)))
3028 (and (re-search-forward (python-rx not-simple-operator
3029 assignment-operator
3030 not-simple-operator)
3031 (line-end-position) t)
3032 (not (python-syntax-context-type))))
3033 (skip-syntax-forward "\s")
3034 (point-marker)))))
3035
3036 (defun python-info-looking-at-beginning-of-defun (&optional syntax-ppss)
3037 "Check if point is at `beginning-of-defun' using SYNTAX-PPSS."
3038 (and (not (python-syntax-context-type (or syntax-ppss (syntax-ppss))))
3039 (save-excursion
3040 (beginning-of-line 1)
3041 (looking-at python-nav-beginning-of-defun-regexp))))
3042
3043 (defun python-info-current-line-comment-p ()
3044 "Check if current line is a comment line."
3045 (char-equal (or (char-after (+ (point) (current-indentation))) ?_) ?#))
3046
3047 (defun python-info-current-line-empty-p ()
3048 "Check if current line is empty, ignoring whitespace."
3049 (save-excursion
3050 (beginning-of-line 1)
3051 (looking-at
3052 (python-rx line-start (* whitespace)
3053 (group (* not-newline))
3054 (* whitespace) line-end))
3055 (string-equal "" (match-string-no-properties 1))))
3056
3057 \f
3058 ;;; Utility functions
3059
3060 (defun python-util-position (item seq)
3061 "Find the first occurrence of ITEM in SEQ.
3062 Return the index of the matching item, or nil if not found."
3063 (let ((member-result (member item seq)))
3064 (when member-result
3065 (- (length seq) (length member-result)))))
3066
3067 ;; Stolen from org-mode
3068 (defun python-util-clone-local-variables (from-buffer &optional regexp)
3069 "Clone local variables from FROM-BUFFER.
3070 Optional argument REGEXP selects variables to clone and defaults
3071 to \"^python-\"."
3072 (mapc
3073 (lambda (pair)
3074 (and (symbolp (car pair))
3075 (string-match (or regexp "^python-")
3076 (symbol-name (car pair)))
3077 (set (make-local-variable (car pair))
3078 (cdr pair))))
3079 (buffer-local-variables from-buffer)))
3080
3081 (defun python-util-forward-comment (&optional direction)
3082 "Python mode specific version of `forward-comment'.
3083 Optional argument DIRECTION defines the direction to move to."
3084 (let ((comment-start (python-syntax-context 'comment))
3085 (factor (if (< (or direction 0) 0)
3086 -99999
3087 99999)))
3088 (when comment-start
3089 (goto-char comment-start))
3090 (forward-comment factor)))
3091
3092 \f
3093 ;;;###autoload
3094 (define-derived-mode python-mode prog-mode "Python"
3095 "Major mode for editing Python files.
3096
3097 \\{python-mode-map}
3098 Entry to this mode calls the value of `python-mode-hook'
3099 if that value is non-nil."
3100 (set (make-local-variable 'tab-width) 8)
3101 (set (make-local-variable 'indent-tabs-mode) nil)
3102
3103 (set (make-local-variable 'comment-start) "# ")
3104 (set (make-local-variable 'comment-start-skip) "#+\\s-*")
3105
3106 (set (make-local-variable 'parse-sexp-lookup-properties) t)
3107 (set (make-local-variable 'parse-sexp-ignore-comments) t)
3108
3109 (set (make-local-variable 'forward-sexp-function)
3110 'python-nav-forward-sexp)
3111
3112 (set (make-local-variable 'font-lock-defaults)
3113 '(python-font-lock-keywords nil nil nil nil))
3114
3115 (set (make-local-variable 'syntax-propertize-function)
3116 python-syntax-propertize-function)
3117
3118 (set (make-local-variable 'indent-line-function)
3119 #'python-indent-line-function)
3120 (set (make-local-variable 'indent-region-function) #'python-indent-region)
3121
3122 (set (make-local-variable 'paragraph-start) "\\s-*$")
3123 (set (make-local-variable 'fill-paragraph-function)
3124 'python-fill-paragraph-function)
3125
3126 (set (make-local-variable 'beginning-of-defun-function)
3127 #'python-beginning-of-defun-function)
3128 (set (make-local-variable 'end-of-defun-function)
3129 #'python-end-of-defun-function)
3130
3131 (add-hook 'completion-at-point-functions
3132 'python-completion-complete-at-point nil 'local)
3133
3134 (add-hook 'post-self-insert-hook
3135 'python-indent-post-self-insert-function nil 'local)
3136
3137 (set (make-local-variable 'imenu-extract-index-name-function)
3138 #'python-info-current-defun)
3139
3140 (set (make-local-variable 'add-log-current-defun-function)
3141 #'python-info-current-defun)
3142
3143 (add-hook 'which-func-functions #'python-info-current-defun nil t)
3144
3145 (set (make-local-variable 'skeleton-further-elements)
3146 '((abbrev-mode nil)
3147 (< '(backward-delete-char-untabify (min python-indent-offset
3148 (current-column))))
3149 (^ '(- (1+ (current-indentation))))))
3150
3151 (set (make-local-variable 'eldoc-documentation-function)
3152 #'python-eldoc-function)
3153
3154 (add-to-list 'hs-special-modes-alist
3155 `(python-mode "^\\s-*\\(?:def\\|class\\)\\>" nil "#"
3156 ,(lambda (arg)
3157 (python-end-of-defun-function)) nil))
3158
3159 (set (make-local-variable 'mode-require-final-newline) t)
3160
3161 (set (make-local-variable 'outline-regexp)
3162 (python-rx (* space) block-start))
3163 (set (make-local-variable 'outline-heading-end-regexp) ":\\s-*\n")
3164 (set (make-local-variable 'outline-level)
3165 #'(lambda ()
3166 "`outline-level' function for Python mode."
3167 (1+ (/ (current-indentation) python-indent-offset))))
3168
3169 (python-skeleton-add-menu-items)
3170
3171 (make-local-variable 'python-shell-internal-buffer)
3172
3173 (when python-indent-guess-indent-offset
3174 (python-indent-guess-indent-offset)))
3175
3176
3177 (provide 'python)
3178
3179 ;; Local Variables:
3180 ;; coding: utf-8
3181 ;; indent-tabs-mode: nil
3182 ;; End:
3183
3184 ;;; python.el ends here