Changes largely merged in from Dave Love's code. Doc fixes.
[bpt/emacs.git] / lisp / progmodes / python.el
1 ;;; python.el --- silly walks for Python
2
3 ;; Copyright (C) 2003, 04 Free Software Foundation, Inc.
4
5 ;; Author: Dave Love <fx@gnu.org>
6 ;; Maintainer: FSF
7 ;; Created: Nov 2003
8 ;; Keywords: languages
9
10 ;; This file is part of GNU Emacs.
11
12 ;; This file is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; This file is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to
24 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Commentary:
28
29 ;; Major mode for editing Python, with support for inferior processes.
30
31 ;; There is another Python mode, python-mode.el, used by XEmacs and
32 ;; maintained with Python. That isn't covered by an FSF copyright
33 ;; assignment, unlike this code, and seems not to be well-maintained
34 ;; for Emacs (though I've submitted fixes). This mode is rather
35 ;; simpler and is, perhaps, better in other ways. In particular,
36 ;; using the syntax functions with text properties maintained by
37 ;; font-lock should make it more correct with arbitrary string and
38 ;; comment contents.
39
40 ;; This doesn't implement all the facilities of python-mode.el. Some
41 ;; just need doing, e.g. catching exceptions in the inferior Python
42 ;; buffer (but see M-x pdb for debugging). [Actually, the use of
43 ;; `compilation-minor-mode' now is probably enough for that.] Others
44 ;; don't seem appropriate. For instance, `forward-into-nomenclature'
45 ;; should be done separately, since it's not specific to Python, and
46 ;; I've installed a minor mode to do the job properly in Emacs 22.
47 ;; Other things seem more natural or canonical here, e.g. the
48 ;; {beginning,end}-of-defun implementation dealing with nested
49 ;; definitions, and the inferior mode following `cmuscheme'. The
50 ;; inferior mode can find the source of errors from
51 ;; `python-send-region' & al via `compilation-minor-mode'. Successive
52 ;; TABs cycle between possible indentations for the line. There is
53 ;; symbol completion using lookup in Python.
54
55 ;; Even where it has similar facilities, this is incompatible with
56 ;; python-mode.el in various respects. For instance, various key
57 ;; bindings are changed to obey Emacs conventions, and things like
58 ;; marking blocks and `beginning-of-defun' behave differently.
59
60 ;; TODO: See various Fixmes below.
61
62 ;;; Code:
63
64 ;; It's messy to autoload the relevant comint functions so that comint
65 ;; is only required when inferior Python is used.
66 (require 'comint)
67 (eval-when-compile
68 (require 'compile)
69 (autoload 'info-lookup-maybe-add-help "info-look"))
70 (autoload 'compilation-start "compile")
71
72 (defgroup python nil
73 "Silly walks in the Python language"
74 :group 'languages
75 :version "21.4"
76 :link '(emacs-commentary-link "python"))
77 \f
78 ;;;###autoload
79 (add-to-list 'interpreter-mode-alist '("jython" . jython-mode))
80 ;;;###autoload
81 (add-to-list 'interpreter-mode-alist '("python" . python-mode))
82 ;;;###autoload
83 (add-to-list 'auto-mode-alist '("\\.py\\'" . python-mode))
84 \f
85 ;;;; Font lock
86
87 (defvar python-font-lock-keywords
88 `(,(rx (and word-start
89 ;; From v 2.3 reference.
90 ;; def and class dealt with separately below
91 (or "and" "assert" "break" "continue" "del" "elif" "else"
92 "except" "exec" "finally" "for" "from" "global" "if"
93 "import" "in" "is" "lambda" "not" "or" "pass" "print"
94 "raise" "return" "try" "while" "yield"
95 ;; Future keywords
96 "as" "None")
97 word-end))
98 (,(rx (and word-start (group "class") (1+ space) (group (1+ word))))
99 (1 font-lock-keyword-face) (2 font-lock-type-face))
100 (,(rx (and word-start (group "def") (1+ space) (group (1+ word))))
101 (1 font-lock-keyword-face) (2 font-lock-function-name-face))))
102
103 (defconst python-font-lock-syntactic-keywords
104 ;; Make outer chars of matching triple-quote sequences into generic
105 ;; string delimiters. Fixme: Is there a better way?
106 `((,(rx (and (group (optional (any "uUrR"))) ; prefix gets syntax property
107 (optional (any "rR")) ; possible second prefix
108 (group (syntax string-quote)) ; maybe gets property
109 (backref 2) ; per first quote
110 (group (backref 2)))) ; maybe gets property
111 (1 (python-quote-syntax 1))
112 (2 (python-quote-syntax 2))
113 (3 (python-quote-syntax 3)))
114 ;; This doesn't really help.
115 ;;; (,(rx (and ?\\ (group ?\n))) (1 " "))
116 ))
117
118 (defun python-quote-syntax (n)
119 "Put `syntax-table' property correctly on triple quote.
120 Used for syntactic keywords. N is the match number (1, 2 or 3)."
121 ;; Given a triple quote, we have to check the context to know
122 ;; whether this is an opening or closing triple or whether it's
123 ;; quoted anyhow, and should be ignored. (For that we need to do
124 ;; the same job as `syntax-ppss' to be correct and it seems to be OK
125 ;; to use it here despite initial worries.) We also have to sort
126 ;; out a possible prefix -- well, we don't _have_ to, but I think it
127 ;; should be treated as part of the string.
128
129 ;; Test cases:
130 ;; ur"""ar""" x='"' # """
131 ;; x = ''' """ ' a
132 ;; '''
133 ;; x '"""' x
134 (save-excursion
135 (goto-char (match-beginning 0))
136 (unless (eq ?\\ (char-before))
137 (cond
138 ;; Consider property for the last char if in a fenced string.
139 ((= n 3)
140 (let ((syntax (syntax-ppss)))
141 (when (eq t (nth 3 syntax)) ; after unclosed fence
142 (goto-char (nth 8 syntax)) ; fence position
143 ;; Skip any prefix.
144 (if (memq (char-after) '(?u ?U ?R ?r))
145 (skip-chars-forward "uUrR"))
146 ;; Is it a matching sequence?
147 (if (eq (char-after) (char-after (match-beginning 2)))
148 (eval-when-compile (string-to-syntax "|"))))))
149 ;; Consider property for initial char, accounting for prefixes.
150 ((or (and (= n 2) ; not prefix
151 (= (match-beginning 1) (match-end 1))) ; prefix is null
152 (and (= n 1) ; prefix
153 (/= (match-beginning 1) (match-end 1)))) ; non-empty
154 (unless (eq 'string (syntax-ppss-context (syntax-ppss)))
155 (eval-when-compile (string-to-syntax "|")))))
156 ;; Otherwise (we're in a non-matching string) the property is
157 ;; nil, which is OK.
158 )))
159
160 ;; This isn't currently in `font-lock-defaults' as probably not worth
161 ;; it -- we basically only mess with a few normally-symbol characters.
162
163 ;; (defun python-font-lock-syntactic-face-function (state)
164 ;; "`font-lock-syntactic-face-function' for Python mode.
165 ;; Returns the string or comment face as usual, with side effect of putting
166 ;; a `syntax-table' property on the inside of the string or comment which is
167 ;; the standard syntax table."
168 ;; (if (nth 3 state)
169 ;; (save-excursion
170 ;; (goto-char (nth 8 state))
171 ;; (condition-case nil
172 ;; (forward-sexp)
173 ;; (error nil))
174 ;; (put-text-property (1+ (nth 8 state)) (1- (point))
175 ;; 'syntax-table (standard-syntax-table))
176 ;; 'font-lock-string-face)
177 ;; (put-text-property (1+ (nth 8 state)) (line-end-position)
178 ;; 'syntax-table (standard-syntax-table))
179 ;; 'font-lock-comment-face))
180 \f
181 ;;;; Keymap and syntax
182
183 (defvar python-mode-map
184 (let ((map (make-sparse-keymap)))
185 ;; Mostly taken from python-mode.el.
186 (define-key map ":" 'python-electric-colon)
187 (define-key map "\177" 'python-backspace)
188 (define-key map "\C-c<" 'python-shift-left)
189 (define-key map "\C-c>" 'python-shift-right)
190 (define-key map "\C-c\C-k" 'python-mark-block)
191 (define-key map "\C-c\C-n" 'python-next-statement)
192 (define-key map "\C-c\C-p" 'python-previous-statement)
193 (define-key map "\C-c\C-u" 'python-beginning-of-block)
194 (define-key map "\C-c\C-f" 'python-describe-symbol)
195 (define-key map "\C-c\C-w" 'python-check)
196 (define-key map "\C-c\C-v" 'python-check) ; a la sgml-mode
197 (define-key map "\C-c\C-s" 'python-send-string)
198 (define-key map [?\C-\M-x] 'python-send-defun)
199 (define-key map "\C-c\C-r" 'python-send-region)
200 (define-key map "\C-c\M-r" 'python-send-region-and-go)
201 (define-key map "\C-c\C-c" 'python-send-buffer)
202 (define-key map "\C-c\C-z" 'python-switch-to-python)
203 (define-key map "\C-c\C-m" 'python-load-file)
204 (define-key map "\C-c\C-l" 'python-load-file) ; a la cmuscheme
205 (substitute-key-definition 'complete-symbol 'python-complete-symbol
206 map global-map)
207 ;; Fixme: Add :help to menu.
208 (easy-menu-define python-menu map "Python Mode menu"
209 '("Python"
210 ["Shift region left" python-shift-left :active mark-active]
211 ["Shift region right" python-shift-right :active mark-active]
212 "-"
213 ["Mark block" python-mark-block]
214 ["Mark def/class" mark-defun
215 :help "Mark innermost definition around point"]
216 "-"
217 ["Start of block" python-beginning-of-block]
218 ["End of block" python-end-of-block]
219 ["Start of def/class" beginning-of-defun
220 :help "Go to start of innermost definition around point"]
221 ["End of def/class" end-of-defun
222 :help "Go to end of innermost definition around point"]
223 "-"
224 ["Start interpreter" run-python
225 :help "Run `inferior' Python in separate buffer"]
226 ["Import/reload file" python-load-file
227 :help "Load into inferior Python session"]
228 ["Eval buffer" python-send-buffer
229 :help "Evaluate buffer en bloc in inferior Python session"]
230 ["Eval region" python-send-region :active mark-active
231 :help "Evaluate region en bloc in inferior Python session"]
232 ["Eval def/class" python-send-defun
233 :help "Evaluate current definition in inferior Python session"]
234 ["Switch to interpreter" python-switch-to-python
235 :help "Switch to inferior Python buffer"]
236 ["Check file" python-check :help "Run pychecker"]
237 ["Debugger" pdb :help "Run pdb under GUD"]
238 "-"
239 ["Help on symbol" python-describe-symbol
240 :help "Use pydoc on symbol at point"]))
241 map))
242
243 (defvar python-mode-syntax-table
244 (let ((table (make-syntax-table)))
245 ;; Give punctuation syntax to ASCII that normally has symbol
246 ;; syntax or has word syntax and isn't a letter.
247 (let ((symbol (string-to-syntax "_"))
248 (sst (standard-syntax-table)))
249 (dotimes (i 128)
250 (unless (= i ?_)
251 (if (equal symbol (aref sst i))
252 (modify-syntax-entry i "." table)))))
253 (modify-syntax-entry ?$ "." table)
254 (modify-syntax-entry ?% "." table)
255 ;; exceptions
256 (modify-syntax-entry ?# "<" table)
257 (modify-syntax-entry ?\n ">" table)
258 (modify-syntax-entry ?' "\"" table)
259 (modify-syntax-entry ?` "$" table)
260 table))
261 \f
262 ;;;; Utility stuff
263
264 (defsubst python-in-string/comment ()
265 "Return non-nil if point is in a Python literal (a comment or string)."
266 (syntax-ppss-context (syntax-ppss)))
267
268 (defconst python-space-backslash-table
269 (let ((table (copy-syntax-table python-mode-syntax-table)))
270 (modify-syntax-entry ?\\ " " table)
271 table)
272 "`python-mode-syntax-table' with backslash given whitespace syntax.")
273
274 (defun python-skip-comments/blanks (&optional backward)
275 "Skip comments and blank lines.
276 BACKWARD non-nil means go backwards, otherwise go forwards. Backslash is
277 treated as whitespace so that continued blank lines are skipped.
278 Doesn't move out of comments -- should be outside or at end of line."
279 (with-syntax-table python-space-backslash-table
280 (forward-comment (if backward
281 most-negative-fixnum
282 most-positive-fixnum))))
283
284 (defun python-backslash-continuation-line-p ()
285 "Non-nil if preceding line ends with backslash that is not in a comment."
286 (and (eq ?\\ (char-before (line-end-position 0)))
287 (not (syntax-ppss-context (syntax-ppss)))))
288
289 (defun python-continuation-line-p ()
290 "Return non-nil if current line continues a previous one.
291 The criteria are that the previous line ends in a backslash outside
292 comments and strings, or that the bracket/paren nesting depth is nonzero."
293 (or (and (eq ?\\ (char-before (line-end-position 0)))
294 (not (syntax-ppss-context (syntax-ppss))))
295 (/= 0 (syntax-ppss-depth
296 (save-excursion ; syntax-ppss with arg changes point
297 (syntax-ppss (line-beginning-position)))))))
298
299 (defun python-comment-line-p ()
300 "Return non-nil if current line has only a comment or is blank."
301 (save-excursion
302 (end-of-line)
303 ;; FIXME: This looks wrong because it returns nil for empty lines. --Stef
304 (when (eq 'comment (syntax-ppss-context (syntax-ppss)))
305 (back-to-indentation)
306 (looking-at (rx (or (syntax comment-start) line-end))))))
307
308 (defun python-beginning-of-string ()
309 "Go to beginning of string around point.
310 Do nothing if not in string."
311 (let ((state (syntax-ppss)))
312 (when (eq 'string (syntax-ppss-context state))
313 (goto-char (nth 8 state)))))
314
315 (defun python-open-block-statement-p (&optional bos)
316 "Return non-nil if statement at point opens a block.
317 BOS non-nil means point is known to be at beginning of statement."
318 (save-excursion
319 (unless bos (python-beginning-of-statement))
320 (and (not (python-comment-line-p))
321 (re-search-forward (rx (and ?: (0+ space)
322 (optional (and (syntax comment-start)
323 (0+ not-newline)))
324 line-end))
325 (save-excursion (python-end-of-statement))
326 t)
327 (not (python-in-string/comment)))))
328
329 (defun python-close-block-statement-p (&optional bos)
330 "Return non-nil if current line is a statement closing a block.
331 BOS non-nil means point is at beginning of statement.
332 The criteria are that the line isn't a comment or in string and starts with
333 keyword `raise', `break', `continue' or `pass'."
334 (save-excursion
335 (unless bos (python-beginning-of-statement))
336 (back-to-indentation)
337 (looking-at (rx (and (or "return" "raise" "break" "continue" "pass")
338 word-end)))))
339
340 (defun python-outdent-p ()
341 "Return non-nil if current line should outdent a level."
342 (save-excursion
343 (back-to-indentation)
344 (and (looking-at (rx (and (or (and (or "else" "finally") word-end)
345 (and (or "except" "elif") word-end
346 (1+ (not (any ?:)))))
347 (optional space) ":" (optional space)
348 (or (syntax comment-start) line-end))))
349 (progn (end-of-line)
350 (not (python-in-string/comment)))
351 ;; Ensure there's a previous statement and move to it.
352 (zerop (python-previous-statement))
353 (not (python-close-block-statement-p t))
354 ;; Fixme: check this
355 (not (looking-at (rx (and (or (and (or "if" "elif" "except"
356 "for" "while")
357 word-end (1+ (not (any ?:))))
358 (and "try" word-end))
359 (optional space) ":" (optional space)
360 (or (syntax comment-start) line-end)))))
361 (progn (end-of-line)
362 (not (python-in-string/comment))))))
363 \f
364 ;;;; Indentation.
365
366 (defcustom python-indent 4
367 "*Number of columns for a unit of indentation in Python mode.
368 See also `\\[python-guess-indent]'"
369 :group 'python
370 :type 'integer)
371
372 (defcustom python-guess-indent t
373 "*Non-nil means Python mode guesses `python-indent' for the buffer."
374 :type 'boolean
375 :group 'python)
376
377 (defcustom python-indent-string-contents t
378 "*Non-nil means indent contents of multi-line strings together.
379 This means indent them the same as the preceding non-blank line.
380 Otherwise indent them to column zero."
381 :type '(choice (const :tag "Align with preceding" t)
382 (const :tag "Indent to column 0" nil))
383 :group 'python)
384
385 (defcustom python-honour-comment-indentation nil
386 "Non-nil means indent relative to preceding comment line.
387 Only do this for comments where the leading comment character is followed
388 by space. This doesn't apply to comment lines, which are always indented
389 in lines with preceding comments."
390 :type 'boolean
391 :group 'python)
392
393 (defcustom python-continuation-offset 4
394 "*Number of columns of additional indentation for continuation lines.
395 Continuation lines follow a backslash-terminated line starting a statement."
396 :group 'python
397 :type 'integer)
398
399 (defun python-guess-indent ()
400 "Guess step for indentation of current buffer.
401 Set `python-indent' locally to the value guessed."
402 (interactive)
403 (save-excursion
404 (save-restriction
405 (widen)
406 (goto-char (point-min))
407 (let (done indent)
408 (while (and (not done) (not (eobp)))
409 (when (and (re-search-forward (rx (and ?: (0+ space)
410 (or (syntax comment-start)
411 line-end)))
412 nil 'move)
413 (python-open-block-statement-p))
414 (save-excursion
415 (python-beginning-of-statement)
416 (let ((initial (current-indentation)))
417 (if (zerop (python-next-statement))
418 (setq indent (- (current-indentation) initial)))
419 (if (and (>= indent 2) (<= indent 8)) ; sanity check
420 (setq done t))))))
421 (when done
422 (when (/= indent (default-value 'python-indent))
423 (set (make-local-variable 'python-indent) indent)
424 (unless (= tab-width python-indent)
425 (setq indent-tabs-mode nil)))
426 indent)))))
427
428 (defun python-calculate-indentation ()
429 "Calculate Python indentation for line at point."
430 (save-excursion
431 (beginning-of-line)
432 (let ((syntax (syntax-ppss))
433 start)
434 (cond
435 ((eq 'string (syntax-ppss-context syntax)) ; multi-line string
436 (if (not python-indent-string-contents)
437 0
438 (save-excursion
439 ;; Find indentation of preceding non-blank line within string.
440 (setq start (nth 8 syntax))
441 (forward-line -1)
442 (while (and (< start (point)) (looking-at "\\s-*$"))
443 (forward-line -1))
444 (current-indentation))))
445 ((python-continuation-line-p)
446 (let ((point (point))
447 (open-start (cadr syntax)))
448 (if open-start
449 ;; Inside bracketed expression.
450 (progn
451 (goto-char (1+ open-start))
452 ;; Look for first item in list (preceding point) and
453 ;; align with it, if found.
454 (if (with-syntax-table python-space-backslash-table
455 (let ((parse-sexp-ignore-comments t))
456 (condition-case ()
457 (progn (forward-sexp)
458 (backward-sexp)
459 (< (point) point))
460 (error nil))))
461 (current-column)
462 ;; Otherwise indent relative to statement start, one
463 ;; level per bracketing level.
464 (goto-char (1+ open-start))
465 (python-beginning-of-statement)
466 (+ (current-indentation) (* (car syntax) python-indent))))
467 ;; Otherwise backslash-continued.
468 (forward-line -1)
469 (if (python-continuation-line-p)
470 ;; We're past first continuation line. Align with
471 ;; previous line.
472 (current-indentation)
473 ;; First continuation line. Indent one step, with an
474 ;; extra one if statement opens a block.
475 (save-excursion
476 (python-beginning-of-statement)
477 (+ (current-indentation) python-continuation-offset
478 (if (python-open-block-statement-p t)
479 python-indent
480 0)))))))
481 ((bobp) 0)
482 ;; Fixme: Like python-mode.el; not convinced by this.
483 ((looking-at (rx (and (0+ space) (syntax comment-start)
484 (not (any " \t\n"))))) ; non-indentable comment
485 (current-indentation))
486 (t (let ((point (point)))
487 (if python-honour-comment-indentation
488 ;; Back over whitespace, newlines, non-indentable comments.
489 (catch 'done
490 (while t
491 (if (cond ((bobp))
492 ;; not at comment start
493 ((not (forward-comment -1))
494 (python-beginning-of-statement)
495 t)
496 ;; trailing comment
497 ((/= (current-column) (current-indentation))
498 (python-beginning-of-statement)
499 t)
500 ;; indentable comment like python-mode.el
501 ((and (looking-at (rx (and (syntax comment-start)
502 (or space line-end))))
503 (/= 0 (current-column)))))
504 (throw 'done t))))
505 ;; Else back over all comments.
506 (python-skip-comments/blanks t)
507 (python-beginning-of-statement))
508 ;; don't lose on bogus outdent
509 (max 0 (+ (current-indentation)
510 (or (cond ((python-open-block-statement-p t)
511 python-indent)
512 ((python-close-block-statement-p t)
513 (- python-indent)))
514 (progn (goto-char point)
515 (if (python-outdent-p)
516 (- python-indent)))
517 0)))))))))
518
519 (defun python-comment-indent ()
520 "`comment-indent-function' for Python."
521 ;; If previous non-blank line was a comment, use its indentation.
522 ;; FIXME: This seems unnecessary since the default code delegates to
523 ;; indent-according-to-mode. --Stef
524 (unless (bobp)
525 (save-excursion
526 (forward-comment -1)
527 (if (eq ?# (char-after)) (current-column)))))
528
529 ;;;; Cycling through the possible indentations with successive TABs.
530
531 ;; These don't need to be buffer-local since they're only relevant
532 ;; during a cycle.
533
534 ;; Alist of possible indentations and start of statement they would close.
535 (defvar python-indent-list nil
536 "Internal use.")
537 ;; Length of the above
538 (defvar python-indent-list-length nil
539 "Internal use.")
540 ;; Current index into the alist.
541 (defvar python-indent-index nil
542 "Internal use.")
543
544 (defun python-initial-text ()
545 "Text of line following indentation and ignoring any trailing comment."
546 (buffer-substring (+ (line-beginning-position) (current-indentation))
547 (save-excursion
548 (end-of-line)
549 (forward-comment -1)
550 (point))))
551
552 (defun python-indentation-levels ()
553 "Return a list of possible indentations for this line.
554 Includes the default indentation and those which would close all
555 enclosing blocks. Assumes the line has already been indented per
556 `python-indent-line'. Elements of the list are actually pairs:
557 \(INDENTATION . TEXT), where TEXT is the initial text of the
558 corresponding block opening (or nil)."
559 (save-excursion
560 (let ((levels (list (cons (current-indentation)
561 (save-excursion
562 (if (python-beginning-of-block)
563 (python-initial-text)))))))
564 ;; Only one possibility if we immediately follow a block open or
565 ;; are in a continuation line.
566 (unless (or (python-continuation-line-p)
567 (save-excursion (and (python-previous-statement)
568 (python-open-block-statement-p t))))
569 (while (python-beginning-of-block)
570 (push (cons (current-indentation) (python-initial-text))
571 levels)))
572 levels)))
573
574 ;; This is basically what `python-indent-line' would be if we didn't
575 ;; do the cycling.
576 (defun python-indent-line-1 ()
577 "Subroutine of `python-indent-line'."
578 (let ((target (python-calculate-indentation))
579 (pos (- (point-max) (point))))
580 (if (= target (current-indentation))
581 (if (< (current-column) (current-indentation))
582 (back-to-indentation))
583 (beginning-of-line)
584 (delete-horizontal-space)
585 (indent-to target)
586 (if (> (- (point-max) pos) (point))
587 (goto-char (- (point-max) pos))))))
588
589 (defun python-indent-line ()
590 "Indent current line as Python code.
591 When invoked via `indent-for-tab-command', cycle through possible
592 indentations for current line. The cycle is broken by a command different
593 from `indent-for-tab-command', i.e. successive TABs do the cycling."
594 (interactive)
595 ;; Don't do extra work if invoked via `indent-region', for instance.
596 (if (not (eq this-command 'indent-for-tab-command))
597 (python-indent-line-1)
598 (if (eq last-command this-command)
599 (if (= 1 python-indent-list-length)
600 (message "Sole indentation")
601 (progn (setq python-indent-index (% (1+ python-indent-index)
602 python-indent-list-length))
603 (beginning-of-line)
604 (delete-horizontal-space)
605 (indent-to (car (nth python-indent-index python-indent-list)))
606 (if (python-block-end-p)
607 (let ((text (cdr (nth python-indent-index
608 python-indent-list))))
609 (if text
610 (message "Closes: %s" text))))))
611 (python-indent-line-1)
612 (setq python-indent-list (python-indentation-levels)
613 python-indent-list-length (length python-indent-list)
614 python-indent-index (1- python-indent-list-length)))))
615
616 (defun python-block-end-p ()
617 "Non-nil if this is a line in a statement closing a block,
618 or a blank line indented to where it would close a block."
619 (and (not (python-comment-line-p))
620 (or (python-close-block-statement-p t)
621 (< (current-indentation)
622 (save-excursion
623 (python-previous-statement)
624 (current-indentation))))))
625
626 ;; Fixme: Define an indent-region-function. It should probably leave
627 ;; lines alone if the indentation is already at one of the allowed
628 ;; levels. Otherwise, M-C-\ typically keeps indenting more deeply
629 ;; down a function.
630 \f
631 ;;;; Movement.
632
633 (defun python-beginning-of-defun ()
634 "`beginning-of-defun-function' for Python.
635 Finds beginning of innermost nested class or method definition.
636 Returns the name of the definition found at the end, or nil if reached
637 start of buffer."
638 (let ((ci (current-indentation))
639 (def-re (rx (and line-start (0+ space) (or "def" "class")
640 (1+ space)
641 (group (1+ (or word (syntax symbol)))))))
642 found lep def-line)
643 (if (python-comment-line-p)
644 (setq ci most-positive-fixnum))
645 (while (and (not (bobp)) (not found))
646 ;; Treat bol at beginning of function as outside function so
647 ;; that successive C-M-a makes progress backwards.
648 (setq def-line (looking-at def-re))
649 (unless (bolp) (end-of-line))
650 (setq lep (line-end-position))
651 (if (and (re-search-backward def-re nil 'move)
652 ;; Must be less indented or matching top level, or
653 ;; equally indented if we started on a definition line.
654 (let ((in (current-indentation)))
655 (or (and (zerop ci) (zerop in))
656 (= lep (line-end-position)) ; on initial line
657 (and def-line (= in ci))
658 (< in ci)))
659 (not (python-in-string/comment)))
660 (setq found t)))))
661
662 (defun python-end-of-defun ()
663 "`end-of-defun-function' for Python.
664 Finds end of innermost nested class or method definition."
665 (let ((orig (point))
666 (pattern (rx (and line-start (0+ space) (or "def" "class") space))))
667 ;; Go to start of current block and check whether it's at top
668 ;; level. If it is, and not a block start, look forward for
669 ;; definition statement.
670 (when (python-comment-line-p)
671 (end-of-line)
672 (forward-comment most-positive-fixnum))
673 (if (not (python-open-block-statement-p))
674 (python-beginning-of-block))
675 (if (zerop (current-indentation))
676 (unless (python-open-block-statement-p)
677 (while (and (re-search-forward pattern nil 'move)
678 (python-in-string/comment))) ; just loop
679 (unless (eobp)
680 (beginning-of-line)))
681 ;; Don't move before top-level statement that would end defun.
682 (end-of-line)
683 (python-beginning-of-defun))
684 ;; If we got to the start of buffer, look forward for
685 ;; definition statement.
686 (if (and (bobp) (not (looking-at "def\\|class")))
687 (while (and (not (eobp))
688 (re-search-forward pattern nil 'move)
689 (python-in-string/comment)))) ; just loop
690 ;; We're at a definition statement (or end-of-buffer).
691 (unless (eobp)
692 (python-end-of-block)
693 ;; Count trailing space in defun (but not trailing comments).
694 (skip-syntax-forward " >")
695 (beginning-of-line))
696 ;; Catch pathological case like this, where the beginning-of-defun
697 ;; skips to a definition we're not in:
698 ;; if ...:
699 ;; ...
700 ;; else:
701 ;; ... # point here
702 ;; ...
703 ;; def ...
704 (if (< (point) orig)
705 (goto-char (point-max)))))
706
707 (defun python-beginning-of-statement ()
708 "Go to start of current statement.
709 Accounts for continuation lines, multi-line strings, and multi-line bracketed
710 expressions."
711 (beginning-of-line)
712 (python-beginning-of-string)
713 (while (python-continuation-line-p)
714 (beginning-of-line)
715 (if (python-backslash-continuation-line-p)
716 (while (python-backslash-continuation-line-p)
717 (forward-line -1))
718 (python-beginning-of-string)
719 ;; Skip forward out of nested brackets.
720 (condition-case () ; beware invalid syntax
721 (progn (backward-up-list (syntax-ppss-depth (syntax-ppss))) t)
722 (error (end-of-line)))))
723 (back-to-indentation))
724
725 (defun python-end-of-statement ()
726 "Go to the end of the current statement and return point.
727 Usually this is the start of the next line, but if this is a
728 multi-line statement we need to skip over the continuation lines.
729 On a comment line, go to end of line."
730 (end-of-line)
731 (while (let (comment)
732 ;; Move past any enclosing strings and sexps, or stop if
733 ;; we're in a comment.
734 (while (let ((s (syntax-ppss)))
735 (cond ((eq 'comment (syntax-ppss-context s))
736 (setq comment t)
737 nil)
738 ((eq 'string (syntax-ppss-context s))
739 ;; Go to start of string and skip it.
740 (goto-char (nth 8 s))
741 (condition-case () ; beware invalid syntax
742 (progn (forward-sexp) t)
743 (error (end-of-line))))
744 ((> (syntax-ppss-depth s) 0)
745 ;; Skip forward out of nested brackets.
746 (condition-case () ; beware invalid syntax
747 (progn (backward-up-list
748 (- (syntax-ppss-depth s)))
749 t)
750 (error (end-of-line))))))
751 (end-of-line))
752 (unless comment
753 (eq ?\\ (char-before)))) ; Line continued?
754 (end-of-line 2)) ; Try next line.
755 (point))
756
757 (defun python-previous-statement (&optional count)
758 "Go to start of previous statement.
759 With argument COUNT, do it COUNT times. Stop at beginning of buffer.
760 Return count of statements left to move."
761 (interactive "p")
762 (unless count (setq count 1))
763 (if (< count 0)
764 (python-next-statement (- count))
765 (python-beginning-of-statement)
766 (while (and (> count 0) (not (bobp)))
767 (python-skip-comments/blanks t)
768 (python-beginning-of-statement)
769 (unless (bobp) (setq count (1- count))))
770 count))
771
772 (defun python-next-statement (&optional count)
773 "Go to start of next statement.
774 With argument COUNT, do it COUNT times. Stop at end of buffer.
775 Return count of statements left to move."
776 (interactive "p")
777 (unless count (setq count 1))
778 (if (< count 0)
779 (python-previous-statement (- count))
780 (beginning-of-line)
781 (while (and (> count 0) (not (eobp)))
782 (python-end-of-statement)
783 (python-skip-comments/blanks)
784 (setq count (1- count)))
785 count))
786
787 (defun python-beginning-of-block (&optional arg)
788 "Go to start of current block.
789 With numeric arg, do it that many times. If ARG is negative, call
790 `python-end-of-block' instead.
791 If point is on the first line of a block, use its outer block.
792 If current statement is in column zero, don't move and return nil.
793 Otherwise return non-nil."
794 (interactive "p")
795 (unless arg (setq arg 1))
796 (cond
797 ((zerop arg))
798 ((< arg 0) (python-end-of-block (- arg)))
799 (t
800 (let ((point (point)))
801 (if (python-comment-line-p)
802 (python-skip-comments/blanks t))
803 (python-beginning-of-statement)
804 (let ((ci (current-indentation)))
805 (if (zerop ci)
806 (not (goto-char point)) ; return nil
807 ;; Look upwards for less indented statement.
808 (if (catch 'done
809 ;;; This is slower than the below.
810 ;;; (while (zerop (python-previous-statement))
811 ;;; (when (and (< (current-indentation) ci)
812 ;;; (python-open-block-statement-p t))
813 ;;; (beginning-of-line)
814 ;;; (throw 'done t)))
815 (while (and (zerop (forward-line -1)))
816 (when (and (< (current-indentation) ci)
817 (not (python-comment-line-p))
818 ;; Move to beginning to save effort in case
819 ;; this is in string.
820 (progn (python-beginning-of-statement) t)
821 (python-open-block-statement-p t))
822 (beginning-of-line)
823 (throw 'done t)))
824 (not (goto-char point))) ; Failed -- return nil
825 (python-beginning-of-block (1- arg)))))))))
826
827 (defun python-end-of-block (&optional arg)
828 "Go to end of current block.
829 With numeric arg, do it that many times. If ARG is negative, call
830 `python-beginning-of-block' instead.
831 If current statement is in column zero and doesn't open a block, don't
832 move and return nil. Otherwise return t."
833 (interactive "p")
834 (unless arg (setq arg 1))
835 (if (< arg 0)
836 (python-beginning-of-block (- arg)))
837 (while (and (> arg 0)
838 (let* ((point (point))
839 (_ (if (python-comment-line-p)
840 (python-skip-comments/blanks t)))
841 (ci (current-indentation))
842 (open (python-open-block-statement-p)))
843 (if (and (zerop ci) (not open))
844 (not (goto-char point))
845 (catch 'done
846 (while (zerop (python-next-statement))
847 (when (or (and open (<= (current-indentation) ci))
848 (< (current-indentation) ci))
849 (python-skip-comments/blanks t)
850 (beginning-of-line 2)
851 (throw 'done t)))
852 (not (goto-char point))))))
853 (setq arg (1- arg)))
854 (zerop arg))
855 \f
856 ;;;; Imenu.
857
858 (defvar python-recursing)
859 (defun python-imenu-create-index ()
860 "`imenu-create-index-function' for Python.
861
862 Makes nested Imenu menus from nested `class' and `def' statements.
863 The nested menus are headed by an item referencing the outer
864 definition; it has a space prepended to the name so that it sorts
865 first with `imenu--sort-by-name' (though, unfortunately, sub-menus
866 precede it)."
867 (unless (boundp 'python-recursing) ; dynamically bound below
868 (goto-char (point-min))) ; normal call from Imenu
869 (let (index-alist ; accumulated value to return
870 name)
871 (while (re-search-forward
872 (rx (and line-start (0+ space) ; leading space
873 (or (group "def") (group "class")) ; type
874 (1+ space) (group (1+ (or word ?_))))) ; name
875 nil t)
876 (unless (python-in-string/comment)
877 (let ((pos (match-beginning 0))
878 (name (match-string-no-properties 3)))
879 (if (match-beginning 2) ; def or class?
880 (setq name (concat "class " name)))
881 (save-restriction
882 (narrow-to-defun)
883 (let* ((python-recursing t)
884 (sublist (python-imenu-create-index)))
885 (if sublist
886 (progn (push (cons (concat " " name) pos) sublist)
887 (push (cons name sublist) index-alist))
888 (push (cons name pos) index-alist)))))))
889 (nreverse index-alist)))
890 \f
891 ;;;; `Electric' commands.
892
893 (defun python-electric-colon (arg)
894 "Insert a colon and maybe outdent the line if it is a statement like `else'.
895 With numeric ARG, just insert that many colons. With \\[universal-argument],
896 just insert a single colon."
897 (interactive "*P")
898 (self-insert-command (if (not (integerp arg)) 1 arg))
899 (and (not arg)
900 (eolp)
901 (python-outdent-p)
902 (not (python-in-string/comment))
903 (> (current-indentation) (python-calculate-indentation))
904 (python-indent-line))) ; OK, do it
905 (put 'python-electric-colon 'delete-selection t)
906
907 (defun python-backspace (arg)
908 "Maybe delete a level of indentation on the current line.
909 If not at the end of line's indentation, or on a comment line, just call
910 `backward-delete-char-untabify'. With ARG, repeat that many times."
911 (interactive "*p")
912 (if (or (/= (current-indentation) (current-column))
913 (bolp)
914 (python-continuation-line-p))
915 (backward-delete-char-untabify arg)
916 (let ((indent 0))
917 (save-excursion
918 (while (and (> arg 0) (python-beginning-of-block))
919 (setq arg (1- arg)))
920 (when (zerop arg)
921 (setq indent (current-indentation))
922 (message "Closes %s" (python-initial-text))))
923 (delete-horizontal-space)
924 (indent-to indent))))
925 (put 'python-backspace 'delete-selection 'supersede)
926 \f
927 ;;;; pychecker
928
929 (defcustom python-check-command "pychecker --stdlib"
930 "*Command used to check a Python file."
931 :type 'string
932 :group 'python)
933
934 (defvar python-saved-check-command nil
935 "Internal use.")
936
937 ;; After `sgml-validate-command'.
938 (defun python-check (command)
939 "Check a Python file (default current buffer's file).
940 Runs COMMAND, a shell command, as if by `compile'.
941 See `python-check-command' for the default."
942 (interactive
943 (list (read-string "Checker command: "
944 (or python-saved-check-command
945 (concat python-check-command " "
946 (let ((name (buffer-file-name)))
947 (if name
948 (file-name-nondirectory name))))))))
949 (setq python-saved-check-command command)
950 (save-some-buffers (not compilation-ask-about-save) nil)
951 (let ((compilation-error-regexp-alist
952 (cons '("(\\([^,]+\\), line \\([0-9]+\\))" 1 2)
953 compilation-error-regexp-alist)))
954 (compilation-start command)))
955 \f
956 ;;;; Inferior mode stuff (following cmuscheme).
957
958 ;; Fixme: Make sure we can work with IPython.
959
960 (defcustom python-python-command "python"
961 "*Shell command to run Python interpreter.
962 Any arguments can't contain whitespace.
963 Note that IPython may not work properly; it must at least be used with the
964 `-cl' flag, i.e. use `ipython -cl'."
965 :group 'python
966 :type 'string)
967
968 (defcustom python-jython-command "jython"
969 "*Shell command to run Jython interpreter.
970 Any arguments can't contain whitespace."
971 :group 'python
972 :type 'string)
973
974 (defvar python-command python-python-command
975 "Actual command used to run Python.
976 May be `python-python-command' or `python-jython-command'.
977 Additional arguments are added when the command is used by `run-python'
978 et al.")
979
980 (defvar python-buffer nil
981 "The current python process buffer."
982 ;; Fixme: a single process is currently assumed, so that this doc
983 ;; is misleading.
984
985 ;; "*The current python process buffer.
986 ;; To run multiple Python processes, start the first with \\[run-python].
987 ;; It will be in a buffer named *Python*. Rename that with
988 ;; \\[rename-buffer]. Now start a new process with \\[run-python]. It
989 ;; will be in a new buffer, named *Python*. Switch between the different
990 ;; process buffers with \\[switch-to-buffer].
991
992 ;; Commands that send text from source buffers to Python processes have
993 ;; to choose a process to send to. This is determined by global variable
994 ;; `python-buffer'. Suppose you have three inferior Pythons running:
995 ;; Buffer Process
996 ;; foo python
997 ;; bar python<2>
998 ;; *Python* python<3>
999 ;; If you do a \\[python-send-region-and-go] command on some Python source
1000 ;; code, what process does it go to?
1001
1002 ;; - In a process buffer (foo, bar, or *Python*), send it to that process.
1003 ;; - In some other buffer (e.g. a source file), send it to the process
1004 ;; attached to `python-buffer'.
1005 ;; Process selection is done by function `python-proc'.
1006
1007 ;; Whenever \\[run-python] starts a new process, it resets `python-buffer'
1008 ;; to be the new process's buffer. If you only run one process, this will
1009 ;; do the right thing. If you run multiple processes, you can change
1010 ;; `python-buffer' to another process buffer with \\[set-variable]."
1011 )
1012
1013 (defconst python-compilation-regexp-alist
1014 ;; FIXME: maybe these should move to compilation-error-regexp-alist-alist.
1015 `((,(rx (and line-start (1+ (any " \t")) "File \""
1016 (group (1+ (not (any "\"<")))) ; avoid `<stdin>' &c
1017 "\", line " (group (1+ digit))))
1018 1 2)
1019 (,(rx (and " in file " (group (1+ not-newline)) " on line "
1020 (group (1+ digit))))
1021 1 2))
1022 "`compilation-error-regexp-alist' for inferior Python.")
1023
1024 (defvar inferior-python-mode-map
1025 (let ((map (make-sparse-keymap)))
1026 ;; This will inherit from comint-mode-map.
1027 (define-key map "\C-c\C-l" 'python-load-file)
1028 (define-key map "\C-c\C-z" 'python-switch-to-python) ;What for? --Stef
1029 (define-key map "\C-c\C-v" 'python-check)
1030 ;; Note that we _can_ still use these commands which send to the
1031 ;; Python process even at the prompt iff we have a normal prompt,
1032 ;; i.e. '>>> ' and not '... '. See the comment before
1033 ;; python-send-region. Fixme: uncomment these if we address that.
1034
1035 ;; (define-key map [(meta ?\t)] 'python-complete-symbol)
1036 ;; (define-key map "\C-c\C-f" 'python-describe-symbol)
1037 map))
1038
1039 ;; Fixme: This should inherit some stuff from python-mode, but I'm not
1040 ;; sure how much: at least some keybindings, like C-c C-f; syntax?;
1041 ;; font-locking, e.g. for triple-quoted strings?
1042 (define-derived-mode inferior-python-mode comint-mode "Inferior Python"
1043 "Major mode for interacting with an inferior Python process.
1044 A Python process can be started with \\[run-python].
1045
1046 Hooks `comint-mode-hook' and `inferior-python-mode-hook' are run in
1047 that order.
1048
1049 You can send text to the inferior Python process from other buffers containing
1050 Python source.
1051 * `python-switch-to-python' switches the current buffer to the Python
1052 process buffer.
1053 * `python-send-region' sends the current region to the Python process.
1054 * `python-send-region-and-go' switches to the Python process buffer
1055 after sending the text.
1056 For running multiple processes in multiple buffers, see `python-buffer'.
1057
1058 \\{inferior-python-mode-map}"
1059 :group 'python
1060 (set-syntax-table python-mode-syntax-table)
1061 (setq mode-line-process '(":%s"))
1062 (set (make-local-variable 'comint-input-filter) 'python-input-filter)
1063 (add-hook 'comint-preoutput-filter-functions #'python-preoutput-filter
1064 nil t)
1065 ;; Still required by `comint-redirect-send-command', for instance
1066 ;; (and we need to match things like `>>> ... >>> '):
1067 (set (make-local-variable 'comint-prompt-regexp)
1068 (rx (and line-start (1+ (and (repeat 3 (any ">.")) ?\ )))))
1069 (set (make-local-variable 'compilation-error-regexp-alist)
1070 python-compilation-regexp-alist)
1071 (compilation-shell-minor-mode 1))
1072
1073 (defcustom inferior-python-filter-regexp "\\`\\s-*\\S-?\\S-?\\s-*\\'"
1074 "*Input matching this regexp is not saved on the history list.
1075 Default ignores all inputs of 0, 1, or 2 non-blank characters."
1076 :type 'regexp
1077 :group 'python)
1078
1079 (defun python-input-filter (str)
1080 "`comint-input-filter' function for inferior Python.
1081 Don't save anything for STR matching `inferior-python-filter-regexp'."
1082 (not (string-match inferior-python-filter-regexp str)))
1083
1084 ;; Fixme: Loses with quoted whitespace.
1085 (defun python-args-to-list (string)
1086 (let ((where (string-match "[ \t]" string)))
1087 (cond ((null where) (list string))
1088 ((not (= where 0))
1089 (cons (substring string 0 where)
1090 (python-args-to-list (substring string (+ 1 where)))))
1091 (t (let ((pos (string-match "[^ \t]" string)))
1092 (if pos (python-args-to-list (substring string pos))))))))
1093
1094 (defvar python-preoutput-result nil
1095 "Data from last `_emacs_out' line seen by the preoutput filter.")
1096
1097 (defvar python-preoutput-continuation nil
1098 "If non-nil, funcall this when `python-preoutput-filter' sees `_emacs_ok'.")
1099
1100 ;; Using this stops us getting lines in the buffer like
1101 ;; >>> ... ... >>>
1102 ;; Also look for (and delete) an `_emacs_ok' string and call
1103 ;; `python-preoutput-continuation' if we get it.
1104 (defun python-preoutput-filter (s)
1105 "`comint-preoutput-filter-functions' function: ignore prompts not at bol."
1106 (cond ((and (string-match (rx (and string-start (repeat 3 (any ".>"))
1107 " " string-end))
1108 s)
1109 (/= (let ((inhibit-field-text-motion t))
1110 (line-beginning-position))
1111 (point)))
1112 "")
1113 ((string= s "_emacs_ok\n")
1114 (when python-preoutput-continuation
1115 (funcall python-preoutput-continuation)
1116 (setq python-preoutput-continuation nil))
1117 "")
1118 ((string-match "_emacs_out \\(.*\\)\n" s)
1119 (setq python-preoutput-result (match-string 1 s))
1120 "")
1121 (t s)))
1122
1123 ;;;###autoload
1124 (defun run-python (&optional cmd noshow)
1125 "Run an inferior Python process, input and output via buffer *Python*.
1126 CMD is the Python command to run. NOSHOW non-nil means don't show the
1127 buffer automatically.
1128 If there is a process already running in `*Python*', switch to
1129 that buffer. Interactively, a prefix arg allows you to edit the initial
1130 command line (default is `python-command'); `-i' etc. args will be added
1131 to this as appropriate. Runs the hook `inferior-python-mode-hook'
1132 \(after the `comint-mode-hook' is run).
1133 \(Type \\[describe-mode] in the process buffer for a list of commands.)"
1134 (interactive (list (if current-prefix-arg
1135 (read-string "Run Python: " python-command)
1136 python-command)))
1137 (unless cmd (setq cmd python-python-command))
1138 (setq python-command cmd)
1139 ;; Fixme: Consider making `python-buffer' buffer-local as a buffer
1140 ;; (not a name) in Python buffers from which `run-python' &c is
1141 ;; invoked. Would support multiple processes better.
1142 (unless (comint-check-proc python-buffer)
1143 (let ((cmdlist (append (python-args-to-list cmd) '("-i")))
1144 (process-environment ; to import emacs.py
1145 (push (concat "PYTHONPATH=" data-directory)
1146 process-environment)))
1147 (set-buffer (apply 'make-comint "Python" (car cmdlist) nil
1148 (cdr cmdlist)))
1149 (setq python-buffer "*Python*"))
1150 (inferior-python-mode)
1151 ;; Load function defintions we need.
1152 ;; Before the preoutput function was used, this was done via -c in
1153 ;; cmdlist, but that loses the banner and doesn't run the startup
1154 ;; file. The code might be inline here, but there's enough that it
1155 ;; seems worth putting in a separate file, and it's probably cleaner
1156 ;; to put it in a module.
1157 (python-send-string "import emacs"))
1158 (unless noshow (pop-to-buffer python-buffer)))
1159
1160 ;; Fixme: We typically lose if the inferior isn't in the normal REPL,
1161 ;; e.g. prompt is `help> '. Probably raise an error if the form of
1162 ;; the prompt is unexpected; actually, it needs to be `>>> ', not
1163 ;; `... ', i.e. we're not inputting a block &c. However, this may not
1164 ;; be the place to do it, e.g. we might actually want to send commands
1165 ;; having set up such a state.
1166
1167 (defun python-send-command (command)
1168 "Like `python-send-string' but resets `compilation-minor-mode'."
1169 (goto-char (point-max))
1170 (let ((end (marker-position (process-mark (python-proc)))))
1171 (compilation-forget-errors)
1172 (python-send-string command)
1173 (set-marker compilation-parsing-end end)
1174 (setq compilation-last-buffer (current-buffer))))
1175
1176 (defun python-send-region (start end)
1177 "Send the region to the inferior Python process."
1178 ;; The region is evaluated from a temporary file. This avoids
1179 ;; problems with blank lines, which have different semantics
1180 ;; interactively and in files. It also saves the inferior process
1181 ;; buffer filling up with interpreter prompts. We need a Python
1182 ;; function to remove the temporary file when it has been evaluated
1183 ;; (though we could probably do it in Lisp with a Comint output
1184 ;; filter). This function also catches exceptions and truncates
1185 ;; tracebacks not to mention the frame of the function itself.
1186 ;;
1187 ;; The compilation-minor-mode parsing takes care of relating the
1188 ;; reference to the temporary file to the source.
1189 ;;
1190 ;; Fixme: Write a `coding' header to the temp file if the region is
1191 ;; non-ASCII.
1192 (interactive "r")
1193 (let* ((f (make-temp-file "py"))
1194 (command (format "emacs.eexecfile(%S)" f))
1195 (orig-start (copy-marker start)))
1196 (when (save-excursion
1197 (goto-char start)
1198 (/= 0 (current-indentation))) ; need dummy block
1199 (save-excursion
1200 (goto-char orig-start)
1201 ;; Wrong if we had indented code at buffer start.
1202 (set-marker orig-start (line-beginning-position 0)))
1203 (write-region "if True:\n" nil f nil 'nomsg))
1204 (write-region start end f t 'nomsg)
1205 (let ((proc (python-proc))) ;Make sure we're running a process.
1206 (with-current-buffer python-buffer
1207 (python-send-command command)
1208 ;; Tell compile.el to redirect error locations in file `f' to
1209 ;; positions past marker `orig-start'. It has to be done *after*
1210 ;; python-send-command's call to compilation-forget-errors.
1211 (compilation-fake-loc orig-start f)))))
1212
1213 (defun python-send-string (string)
1214 "Evaluate STRING in inferior Python process."
1215 (interactive "sPython command: ")
1216 (comint-send-string (python-proc) string)
1217 (comint-send-string (python-proc) "\n\n"))
1218
1219 (defun python-send-buffer ()
1220 "Send the current buffer to the inferior Python process."
1221 (interactive)
1222 (python-send-region (point-min) (point-max)))
1223
1224 ;; Fixme: Try to define the function or class within the relevant
1225 ;; module, not just at top level.
1226 (defun python-send-defun ()
1227 "Send the current defun (class or method) to the inferior Python process."
1228 (interactive)
1229 (save-excursion (python-send-region (progn (beginning-of-defun) (point))
1230 (progn (end-of-defun) (point)))))
1231
1232 (defun python-switch-to-python (eob-p)
1233 "Switch to the Python process buffer.
1234 With prefix arg, position cursor at end of buffer."
1235 (interactive "P")
1236 (if (get-buffer python-buffer)
1237 (pop-to-buffer python-buffer)
1238 (error "No current process buffer. See variable `python-buffer'"))
1239 (when eob-p
1240 (push-mark)
1241 (goto-char (point-max))))
1242
1243 (add-to-list 'debug-ignored-errors "^No current process buffer.")
1244
1245 (defun python-send-region-and-go (start end)
1246 "Send the region to the inferior Python process.
1247 Then switch to the process buffer."
1248 (interactive "r")
1249 (python-send-region start end)
1250 (python-switch-to-python t))
1251
1252 (defcustom python-source-modes '(python-mode jython-mode)
1253 "*Used to determine if a buffer contains Python source code.
1254 If it's loaded into a buffer that is in one of these major modes, it's
1255 considered a Python source file by `python-load-file'.
1256 Used by these commands to determine defaults."
1257 :type '(repeat function)
1258 :group 'python)
1259
1260 (defvar python-prev-dir/file nil
1261 "Caches (directory . file) pair used in the last `python-load-file' command.
1262 Used for determining the default in the next one.")
1263
1264 (defun python-load-file (file-name)
1265 "Load a Python file FILE-NAME into the inferior Python process.
1266 If the file has extension `.py' import or reload it as a module.
1267 Treating it as a module keeps the global namespace clean, provides
1268 function location information for debugging, and supports users of
1269 module-qualified names."
1270 (interactive (comint-get-source "Load Python file: " python-prev-dir/file
1271 python-source-modes
1272 t)) ; because execfile needs exact name
1273 (comint-check-source file-name) ; Check to see if buffer needs saving.
1274 (setq python-prev-dir/file (cons (file-name-directory file-name)
1275 (file-name-nondirectory file-name)))
1276 (let ((proc (python-proc))) ;Make sure we have a process.
1277 (with-current-buffer python-buffer
1278 ;; Fixme: I'm not convinced by this logic from python-mode.el.
1279 (python-send-command
1280 (if (string-match "\\.py\\'" file-name)
1281 ;; Fixme: make sure the directory is in the path list
1282 (let ((module (file-name-sans-extension
1283 (file-name-nondirectory file-name))))
1284 (format "emacs.eimport(%S,%S)"
1285 module (file-name-directory file-name)))
1286 (format "execfile(%S)" file-name)))
1287 (message "%s loaded" file-name))))
1288
1289 ;; Fixme: If we need to start the process, wait until we've got the OK
1290 ;; from the startup.
1291 (defun python-proc ()
1292 "Return the current Python process.
1293 See variable `python-buffer'. Starts a new process if necessary."
1294 (or (if python-buffer
1295 (get-buffer-process (if (eq major-mode 'inferior-python-mode)
1296 (current-buffer)
1297 python-buffer)))
1298 (progn (run-python nil t)
1299 (python-proc))))
1300 \f
1301 ;;;; Context-sensitive help.
1302
1303 (defconst python-dotty-syntax-table
1304 (let ((table (make-syntax-table)))
1305 (set-char-table-parent table python-mode-syntax-table)
1306 (modify-syntax-entry ?. "_" table)
1307 table)
1308 "Syntax table giving `.' symbol syntax.
1309 Otherwise inherits from `python-mode-syntax-table'.")
1310
1311 (defvar view-return-to-alist)
1312
1313 ;; Fixme: Should this actually be used instead of info-look, i.e. be
1314 ;; bound to C-h S? Can we use other pydoc stuff before python 2.2?
1315 (defun python-describe-symbol (symbol)
1316 "Get help on SYMBOL using `help'.
1317 Interactively, prompt for symbol.
1318
1319 Symbol may be anything recognized by the interpreter's `help' command --
1320 e.g. `CALLS' -- not just variables in scope.
1321 This only works for Python version 2.2 or newer since earlier interpreters
1322 don't support `help'."
1323 ;; Note that we do this in the inferior process, not a separate one, to
1324 ;; ensure the environment is appropriate.
1325 (interactive
1326 (let ((symbol (with-syntax-table python-dotty-syntax-table
1327 (current-word)))
1328 (enable-recursive-minibuffers t))
1329 (list (read-string (if symbol
1330 (format "Describe symbol (default %s): " symbol)
1331 "Describe symbol: ")
1332 nil nil symbol))))
1333 (if (equal symbol "") (error "No symbol"))
1334 (let* ((func `(lambda ()
1335 (comint-redirect-send-command (format "emacs.ehelp(%S)\n"
1336 ,symbol)
1337 "*Help*" nil))))
1338 ;; Ensure we have a suitable help buffer.
1339 ;; Fixme: Maybe process `Related help topics' a la help xrefs and
1340 ;; allow C-c C-f in help buffer.
1341 (let ((temp-buffer-show-hook ; avoid xref stuff
1342 (lambda ()
1343 (toggle-read-only 1)
1344 (setq view-return-to-alist
1345 (list (cons (selected-window) help-return-method))))))
1346 (help-setup-xref (list 'python-describe-symbol symbol))
1347 (with-output-to-temp-buffer (help-buffer)
1348 (with-current-buffer standard-output
1349 (set (make-local-variable 'comint-redirect-subvert-readonly) t)
1350 (print-help-return-message))))
1351 (if (and python-buffer (get-buffer python-buffer))
1352 (with-current-buffer python-buffer
1353 (funcall func))
1354 (setq python-preoutput-continuation func)
1355 (run-python nil t))))
1356
1357 (add-to-list 'debug-ignored-errors "^No symbol")
1358
1359 (defun python-send-receive (string)
1360 "Send STRING to inferior Python (if any) and return result.
1361 The result is what follows `_emacs_out' in the output (or nil)."
1362 (let ((proc (python-proc)))
1363 (python-send-string string)
1364 (setq python-preoutput-result nil)
1365 (accept-process-output proc 5)
1366 python-preoutput-result))
1367
1368 ;; Fixme: try to make it work with point in the arglist. Also, is
1369 ;; there anything reasonable we can do with random methods?
1370 ;; (Currently only works with functions.)
1371 (defun python-eldoc-function ()
1372 "`eldoc-print-current-symbol-info' for Python.
1373 Only works when point is in a function name, not its arglist, for instance.
1374 Assumes an inferior Python is running."
1375 (let ((symbol (with-syntax-table python-dotty-syntax-table
1376 (current-word))))
1377 (when symbol
1378 (python-send-receive (format "emacs.eargs(%S)" symbol)))))
1379 \f
1380 ;;;; Info-look functionality.
1381
1382 (defun python-after-info-look ()
1383 "Set up info-look for Python.
1384 Used with `eval-after-load'."
1385 (let* ((version (let ((s (shell-command-to-string (concat python-command
1386 " -V"))))
1387 (string-match "^Python \\([0-9]+\\.[0-9]+\\>\\)" s)
1388 (match-string 1 s)))
1389 ;; Whether info files have a Python version suffix, e.g. in Debian.
1390 (versioned
1391 (with-temp-buffer
1392 (with-no-warnings (Info-mode))
1393 (condition-case ()
1394 ;; Don't use `info' because it would pop-up a *info* buffer.
1395 (with-no-warnings
1396 (Info-goto-node (format "(python%s-lib)Miscellaneous Index"
1397 version)))
1398 (error nil)))))
1399 (info-lookup-maybe-add-help
1400 :mode 'python-mode
1401 :regexp "[[:alnum:]_]+"
1402 :doc-spec
1403 ;; Fixme: Can this reasonably be made specific to indices with
1404 ;; different rules? Is the order of indices optimal?
1405 ;; (Miscellaneous in -ref first prefers lookup of keywords, for
1406 ;; instance.)
1407 (if versioned
1408 ;; The empty prefix just gets us highlighted terms.
1409 `((,(concat "(python" version "-ref)Miscellaneous Index") nil "")
1410 (,(concat "(python" version "-ref)Module Index" nil ""))
1411 (,(concat "(python" version "-ref)Function-Method-Variable Index"
1412 nil ""))
1413 (,(concat "(python" version "-ref)Class-Exception-Object Index"
1414 nil ""))
1415 (,(concat "(python" version "-lib)Module Index" nil ""))
1416 (,(concat "(python" version "-lib)Class-Exception-Object Index"
1417 nil ""))
1418 (,(concat "(python" version "-lib)Function-Method-Variable Index"
1419 nil ""))
1420 (,(concat "(python" version "-lib)Miscellaneous Index" nil "")))
1421 '(("(python-ref)Miscellaneous Index" nil "")
1422 ("(python-ref)Module Index" nil "")
1423 ("(python-ref)Function-Method-Variable Index" nil "")
1424 ("(python-ref)Class-Exception-Object Index" nil "")
1425 ("(python-lib)Module Index" nil "")
1426 ("(python-lib)Class-Exception-Object Index" nil "")
1427 ("(python-lib)Function-Method-Variable Index" nil "")
1428 ("(python-lib)Miscellaneous Index" nil ""))))))
1429 (eval-after-load "info-look" '(python-after-info-look))
1430 \f
1431 ;;;; Miscellancy.
1432
1433 (defcustom python-jython-packages '("java" "javax" "org" "com")
1434 "Packages implying `jython-mode'.
1435 If these are imported near the beginning of the buffer, `python-mode'
1436 actually punts to `jython-mode'."
1437 :type '(repeat string)
1438 :group 'python)
1439
1440 ;; Called from `python-mode', this causes a recursive call of the
1441 ;; mode. See logic there to break out of the recursion.
1442 (defun python-maybe-jython ()
1443 "Invoke `jython-mode' if the buffer appears to contain Jython code.
1444 The criterion is either a match for `jython-mode' via
1445 `interpreter-mode-alist' or an import of a module from the list
1446 `python-jython-packages'."
1447 ;; The logic is taken from python-mode.el.
1448 (save-excursion
1449 (save-restriction
1450 (widen)
1451 (goto-char (point-min))
1452 (let ((interpreter (if (looking-at auto-mode-interpreter-regexp)
1453 (match-string 2))))
1454 (if (and interpreter (eq 'jython-mode
1455 (cdr (assoc (file-name-nondirectory
1456 interpreter)
1457 interpreter-mode-alist))))
1458 (jython-mode)
1459 (if (catch 'done
1460 (while (re-search-forward
1461 (rx (and line-start (or "import" "from") (1+ space)
1462 (group (1+ (not (any " \t\n."))))))
1463 (+ (point-min) 10000) ; Probably not worth customizing.
1464 t)
1465 (if (member (match-string 1) python-jython-packages)
1466 (throw 'done t))))
1467 (jython-mode)))))))
1468
1469 (defun python-fill-paragraph (&optional justify)
1470 "`fill-paragraph-function' handling comments and multi-line strings.
1471 If any of the current line is a comment, fill the comment or the
1472 paragraph of it that point is in, preserving the comment's
1473 indentation and initial comment characters. Similarly if the end
1474 of the current line is in or at the end of a multi-line string.
1475 Otherwise, do nothing."
1476 (interactive "P")
1477 (or (fill-comment-paragraph justify)
1478 ;; The `paragraph-start' and `paragraph-separate' variables
1479 ;; don't allow us to delimit the last paragraph in a multi-line
1480 ;; string properly, so narrow to the string and then fill around
1481 ;; (the end of) the current line.
1482 (save-excursion
1483 (end-of-line)
1484 (let* ((syntax (syntax-ppss))
1485 (orig (point))
1486 (start (nth 8 syntax))
1487 end)
1488 (cond ((eq t (nth 3 syntax)) ; in fenced string
1489 (goto-char (nth 8 syntax)) ; string start
1490 (condition-case () ; for unbalanced quotes
1491 (progn (forward-sexp)
1492 (setq end (point)))
1493 (error (setq end (point-max)))))
1494 ((re-search-backward "\\s|\\s-*\\=" nil t) ; end of fenced
1495 ; string
1496 (forward-char)
1497 (setq end (point))
1498 (condition-case ()
1499 (progn (backward-sexp)
1500 (setq start (point)))
1501 (error nil))))
1502 (when end
1503 (save-restriction
1504 (narrow-to-region start end)
1505 (goto-char orig)
1506 (fill-paragraph justify))))))
1507 t)
1508
1509 (defun python-shift-left (start end &optional count)
1510 "Shift lines in region COUNT (the prefix arg) columns to the left.
1511 COUNT defaults to `python-indent'. If region isn't active, just shift
1512 current line. The region shifted includes the lines in which START and
1513 END lie. It is an error if any lines in the region are indented less than
1514 COUNT columns."
1515 (interactive (if mark-active
1516 (list (region-beginning) (region-end) current-prefix-arg)
1517 (list (point) (point) current-prefix-arg)))
1518 (if count
1519 (setq count (prefix-numeric-value count))
1520 (setq count python-indent))
1521 (when (> count 0)
1522 (save-excursion
1523 (goto-char start)
1524 (while (< (point) end)
1525 (if (and (< (current-indentation) count)
1526 (not (looking-at "[ \t]*$")))
1527 (error "Can't shift all lines enough"))
1528 (forward-line))
1529 (indent-rigidly start end (- count)))))
1530
1531 (add-to-list 'debug-ignored-errors "^Can't shift all lines enough")
1532
1533 (defun python-shift-right (start end &optional count)
1534 "Shift lines in region COUNT (the prefix arg) columns to the right.
1535 COUNT defaults to `python-indent'. If region isn't active, just shift
1536 current line. The region shifted includes the lines in which START and
1537 END lie."
1538 (interactive (if mark-active
1539 (list (region-beginning) (region-end) current-prefix-arg)
1540 (list (point) (point) current-prefix-arg)))
1541 (if count
1542 (setq count (prefix-numeric-value count))
1543 (setq count python-indent))
1544 (indent-rigidly start end count))
1545
1546 (defun python-outline-level ()
1547 "`outline-level' function for Python mode.
1548 The level is the number of `python-indent' steps of indentation
1549 of current line."
1550 (/ (current-indentation) python-indent))
1551
1552 ;; Fixme: Consider top-level assignments, imports, &c.
1553 (defun python-current-defun ()
1554 "`add-log-current-defun-function' for Python."
1555 (save-excursion
1556 ;; Move up the tree of nested `class' and `def' blocks until we
1557 ;; get to zero indentation, accumulating the defined names.
1558 (let ((start t)
1559 accum)
1560 (while (or start (> (current-indentation) 0))
1561 (setq start nil)
1562 (python-beginning-of-block)
1563 (end-of-line)
1564 (beginning-of-defun)
1565 (if (looking-at (rx (and (0+ space) (or "def" "class") (1+ space)
1566 (group (1+ (or word (syntax symbol))))
1567 word-end)))
1568 (push (match-string 1) accum)))
1569 (if accum (mapconcat 'identity accum ".")))))
1570
1571 (defun python-mark-block ()
1572 "Mark the block around point.
1573 Uses `python-beginning-of-block', `python-end-of-block'."
1574 (interactive)
1575 (push-mark)
1576 (python-beginning-of-block)
1577 (push-mark (point) nil t)
1578 (python-end-of-block)
1579 (exchange-point-and-mark))
1580 \f
1581 ;;;; Completion.
1582
1583 (defun python-symbol-completions (symbol)
1584 "Return a list of completions of the string SYMBOL from Python process.
1585 The list is sorted."
1586 (when symbol
1587 (let ((completions
1588 (condition-case ()
1589 (car (read-from-string (python-send-receive
1590 (format "emacs.complete(%S)" symbol))))
1591 (error nil))))
1592 (sort
1593 ;; We can get duplicates from the above -- don't know why.
1594 (delete-dups completions)
1595 #'string<))))
1596
1597 (defun python-partial-symbol ()
1598 "Return the partial symbol before point (for completion)."
1599 (let ((end (point))
1600 (start (save-excursion
1601 (and (re-search-backward
1602 (rx (and (or buffer-start (regexp "[^[:alnum:]._]"))
1603 (group (1+ (regexp "[[:alnum:]._]")))
1604 point))
1605 nil t)
1606 (match-beginning 1)))))
1607 (if start (buffer-substring-no-properties start end))))
1608
1609 ;; Fixme: We should have an abstraction of this sort of thing in the
1610 ;; core.
1611 (defun python-complete-symbol ()
1612 "Perform completion on the Python symbol preceding point.
1613 Repeating the command scrolls the completion window."
1614 (interactive)
1615 (let ((window (get-buffer-window "*Completions*")))
1616 (if (and (eq last-command this-command)
1617 window (window-live-p window) (window-buffer window)
1618 (buffer-name (window-buffer window)))
1619 (with-current-buffer (window-buffer window)
1620 (if (pos-visible-in-window-p (point-max) window)
1621 (set-window-start window (point-min))
1622 (save-selected-window
1623 (select-window window)
1624 (scroll-up))))
1625 ;; Do completion.
1626 (let* ((end (point))
1627 (symbol (python-partial-symbol))
1628 (completions (python-symbol-completions symbol))
1629 (completion (if completions
1630 (try-completion symbol completions))))
1631 (when symbol
1632 (cond ((eq completion t))
1633 ((null completion)
1634 (message "Can't find completion for \"%s\"" symbol)
1635 (ding))
1636 ((not (string= symbol completion))
1637 (delete-region (- end (length symbol)) end)
1638 (insert completion))
1639 (t
1640 (message "Making completion list...")
1641 (with-output-to-temp-buffer "*Completions*"
1642 (display-completion-list completions))
1643 (message "Making completion list...%s" "done"))))))))
1644
1645 (eval-when-compile (require 'hippie-exp))
1646
1647 (defun python-try-complete (old)
1648 "Completion function for Python for use with `hippie-expand'."
1649 (when (eq major-mode 'python-mode) ; though we only add it locally
1650 (unless old
1651 (let ((symbol (python-partial-symbol)))
1652 (he-init-string (- (point) (length symbol)) (point))
1653 (if (not (he-string-member he-search-string he-tried-table))
1654 (push he-search-string he-tried-table))
1655 (setq he-expand-list
1656 (and symbol (python-symbol-completions symbol)))))
1657 (while (and he-expand-list
1658 (he-string-member (car he-expand-list) he-tried-table))
1659 (pop he-expand-list))
1660 (if he-expand-list
1661 (progn
1662 (he-substitute-string (pop he-expand-list))
1663 t)
1664 (if old (he-reset-string))
1665 nil)))
1666 \f
1667 ;;;; Modes.
1668
1669 (defvar outline-heading-end-regexp)
1670 (defvar eldoc-print-current-symbol-info-function)
1671
1672 ;;;###autoload
1673 (define-derived-mode python-mode fundamental-mode "Python"
1674 "Major mode for editing Python files.
1675 Turns on Font Lock mode unconditionally since it is required for correct
1676 parsing of the source.
1677 See also `jython-mode', which is actually invoked if the buffer appears to
1678 contain Jython code. See also `run-python' and associated Python mode
1679 commands for running Python under Emacs.
1680
1681 The Emacs commands which work with `defun's, e.g. \\[beginning-of-defun], deal
1682 with nested `def' and `class' blocks. They take the innermost one as
1683 current without distinguishing method and class definitions. Used multiple
1684 times, they move over others at the same indentation level until they reach
1685 the end of definitions at that level, when they move up a level.
1686 \\<python-mode-map>
1687 Colon is electric: it outdents the line if appropriate, e.g. for
1688 an else statement. \\[python-backspace] at the beginning of an indented statement
1689 deletes a level of indentation to close the current block; otherwise it
1690 deletes a charcter backward. TAB indents the current line relative to
1691 the preceding code. Successive TABs, with no intervening command, cycle
1692 through the possibilities for indentation on the basis of enclosing blocks.
1693
1694 \\[fill-paragraph] fills comments and multiline strings appropriately, but has no
1695 effect outside them.
1696
1697 Supports Eldoc mode (only for functions, using a Python process),
1698 Info-Look and Imenu. In Outline minor mode, `class' and `def'
1699 lines count as headers.
1700
1701 \\{python-mode-map}"
1702 :group 'python
1703 (set (make-local-variable 'font-lock-defaults)
1704 '(python-font-lock-keywords nil nil ((?_ . "w")) nil
1705 (font-lock-syntactic-keywords
1706 . python-font-lock-syntactic-keywords)
1707 ;;; This probably isn't worth it.
1708 ;;; (font-lock-syntactic-face-function
1709 ;;; . python-font-lock-syntactic-face-function)
1710 ))
1711 (set (make-local-variable 'parse-sexp-lookup-properties) t)
1712 (set (make-local-variable 'comment-start) "# ")
1713 (set (make-local-variable 'comment-indent-function) #'python-comment-indent)
1714 (set (make-local-variable 'indent-line-function) #'python-indent-line)
1715 (set (make-local-variable 'paragraph-start) "\\s-*$")
1716 (set (make-local-variable 'fill-paragraph-function) 'python-fill-paragraph)
1717 (set (make-local-variable 'require-final-newline) t)
1718 (set (make-local-variable 'add-log-current-defun-function)
1719 #'python-current-defun)
1720 ;; Fixme: Generalize to do all blocks?
1721 (set (make-local-variable 'outline-regexp) "\\s-*\\(def\\|class\\)\\>")
1722 (set (make-local-variable 'outline-heading-end-regexp) ":\\s-*\n")
1723 (set (make-local-variable 'outline-level) #'python-outline-level)
1724 (set (make-local-variable 'open-paren-in-column-0-is-defun-start) nil)
1725 (make-local-variable 'python-saved-check-command)
1726 (set (make-local-variable 'beginning-of-defun-function)
1727 'python-beginning-of-defun)
1728 (set (make-local-variable 'end-of-defun-function) 'python-end-of-defun)
1729 (setq imenu-create-index-function #'python-imenu-create-index)
1730 (set (make-local-variable 'eldoc-print-current-symbol-info-function)
1731 #'python-eldoc-function)
1732 (add-hook 'eldoc-mode-hook
1733 '(lambda () (run-python 0 t)) nil t) ; need it running
1734 (if (featurep 'hippie-exp)
1735 (set (make-local-variable 'hippie-expand-try-functions-list)
1736 (cons 'python-try-complete hippie-expand-try-functions-list)))
1737 (unless font-lock-mode (font-lock-mode 1))
1738 (when python-guess-indent (python-guess-indent))
1739 (set (make-local-variable 'python-command) python-python-command)
1740 (unless (boundp 'python-mode-running) ; kill the recursion from jython-mode
1741 (let ((python-mode-running t))
1742 (python-maybe-jython))))
1743
1744 (custom-add-option 'python-mode-hook 'imenu-add-menubar-index)
1745 (custom-add-option 'python-mode-hook
1746 '(lambda ()
1747 "Turn on Indent Tabs mode."
1748 (set (make-local-variable 'indent-tabs-mode) t)))
1749 (custom-add-option 'python-mode-hook 'turn-on-eldoc-mode)
1750
1751 ;;;###autoload
1752 (define-derived-mode jython-mode python-mode "Jython"
1753 "Major mode for editing Jython files.
1754 Like `python-mode', but sets up parameters for Jython subprocesses.
1755 Runs `jython-mode-hook' after `python-mode-hook'."
1756 :group 'python
1757 (set (make-local-variable 'python-command) python-jython-command))
1758
1759 (provide 'python)
1760 ;; arch-tag: 6fce1d99-a704-4de9-ba19-c6e4912b0554
1761 ;;; python.el ends here