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