Move setting of ioready 'wait' earlier in call chain, to
[python/dscho.git] / Misc / python-mode.el
blobf654d8a5fa22e023ffae6558398a2c08c5e1c201
1 ;;; python-mode.el --- Major mode for editing Python programs
3 ;; Copyright (C) 1992,1993,1994 Tim Peters
5 ;; Author: 1995-2002 Barry A. Warsaw
6 ;; 1992-1994 Tim Peters
7 ;; Maintainer: python-mode@python.org
8 ;; Created: Feb 1992
9 ;; Keywords: python languages oop
11 (defconst py-version "$Revision$"
12 "`python-mode' version number.")
14 ;; This software is provided as-is, without express or implied
15 ;; warranty. Permission to use, copy, modify, distribute or sell this
16 ;; software, without fee, for any purpose and by any individual or
17 ;; organization, is hereby granted, provided that the above copyright
18 ;; notice and this paragraph appear in all copies.
20 ;;; Commentary:
22 ;; This is a major mode for editing Python programs. It was developed
23 ;; by Tim Peters after an original idea by Michael A. Guravage. Tim
24 ;; subsequently left the net; in 1995, Barry Warsaw inherited the mode
25 ;; and is the current maintainer. Tim's now back but disavows all
26 ;; responsibility for the mode. Smart Tim :-)
28 ;; pdbtrack support contributed by Ken Manheimer, April 2001.
30 ;; Please use the SourceForge Python project to submit bugs or
31 ;; patches:
33 ;; http://sourceforge.net/projects/python
35 ;; FOR MORE INFORMATION:
37 ;; There is some information on python-mode.el at
39 ;; http://www.python.org/emacs/python-mode/
41 ;; It does contain links to other packages that you might find useful,
42 ;; such as pdb interfaces, OO-Browser links, etc.
44 ;; BUG REPORTING:
46 ;; As mentioned above, please use the SourceForge Python project for
47 ;; submitting bug reports or patches. The old recommendation, to use
48 ;; C-c C-b will still work, but those reports have a higher chance of
49 ;; getting buried in my mailbox. Please include a complete, but
50 ;; concise code sample and a recipe for reproducing the bug. Send
51 ;; suggestions and other comments to python-mode@python.org.
53 ;; When in a Python mode buffer, do a C-h m for more help. It's
54 ;; doubtful that a texinfo manual would be very useful, but if you
55 ;; want to contribute one, I'll certainly accept it!
57 ;;; Code:
59 (require 'comint)
60 (require 'custom)
61 (require 'cl)
62 (require 'compile)
65 ;; user definable variables
66 ;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
68 (defgroup python nil
69 "Support for the Python programming language, <http://www.python.org/>"
70 :group 'languages
71 :prefix "py-")
73 (defcustom py-python-command "python"
74 "*Shell command used to start Python interpreter."
75 :type 'string
76 :group 'python)
78 (defcustom py-jpython-command "jpython"
79 "*Shell command used to start the JPython interpreter."
80 :type 'string
81 :group 'python
82 :tag "JPython Command")
84 (defcustom py-default-interpreter 'cpython
85 "*Which Python interpreter is used by default.
86 The value for this variable can be either `cpython' or `jpython'.
88 When the value is `cpython', the variables `py-python-command' and
89 `py-python-command-args' are consulted to determine the interpreter
90 and arguments to use.
92 When the value is `jpython', the variables `py-jpython-command' and
93 `py-jpython-command-args' are consulted to determine the interpreter
94 and arguments to use.
96 Note that this variable is consulted only the first time that a Python
97 mode buffer is visited during an Emacs session. After that, use
98 \\[py-toggle-shells] to change the interpreter shell."
99 :type '(choice (const :tag "Python (a.k.a. CPython)" cpython)
100 (const :tag "JPython" jpython))
101 :group 'python)
103 (defcustom py-python-command-args '("-i")
104 "*List of string arguments to be used when starting a Python shell."
105 :type '(repeat string)
106 :group 'python)
108 (defcustom py-jpython-command-args '("-i")
109 "*List of string arguments to be used when starting a JPython shell."
110 :type '(repeat string)
111 :group 'python
112 :tag "JPython Command Args")
114 (defcustom py-indent-offset 4
115 "*Amount of offset per level of indentation.
116 `\\[py-guess-indent-offset]' can usually guess a good value when
117 you're editing someone else's Python code."
118 :type 'integer
119 :group 'python)
121 (defcustom py-continuation-offset 4
122 "*Additional amount of offset to give for some continuation lines.
123 Continuation lines are those that immediately follow a backslash
124 terminated line. Only those continuation lines for a block opening
125 statement are given this extra offset."
126 :type 'integer
127 :group 'python)
129 (defcustom py-smart-indentation t
130 "*Should `python-mode' try to automagically set some indentation variables?
131 When this variable is non-nil, two things happen when a buffer is set
132 to `python-mode':
134 1. `py-indent-offset' is guessed from existing code in the buffer.
135 Only guessed values between 2 and 8 are considered. If a valid
136 guess can't be made (perhaps because you are visiting a new
137 file), then the value in `py-indent-offset' is used.
139 2. `indent-tabs-mode' is turned off if `py-indent-offset' does not
140 equal `tab-width' (`indent-tabs-mode' is never turned on by
141 Python mode). This means that for newly written code, tabs are
142 only inserted in indentation if one tab is one indentation
143 level, otherwise only spaces are used.
145 Note that both these settings occur *after* `python-mode-hook' is run,
146 so if you want to defeat the automagic configuration, you must also
147 set `py-smart-indentation' to nil in your `python-mode-hook'."
148 :type 'boolean
149 :group 'python)
151 (defcustom py-align-multiline-strings-p t
152 "*Flag describing how multi-line triple quoted strings are aligned.
153 When this flag is non-nil, continuation lines are lined up under the
154 preceding line's indentation. When this flag is nil, continuation
155 lines are aligned to column zero."
156 :type '(choice (const :tag "Align under preceding line" t)
157 (const :tag "Align to column zero" nil))
158 :group 'python)
160 (defcustom py-block-comment-prefix "##"
161 "*String used by \\[comment-region] to comment out a block of code.
162 This should follow the convention for non-indenting comment lines so
163 that the indentation commands won't get confused (i.e., the string
164 should be of the form `#x...' where `x' is not a blank or a tab, and
165 `...' is arbitrary). However, this string should not end in whitespace."
166 :type 'string
167 :group 'python)
169 (defcustom py-honor-comment-indentation t
170 "*Controls how comment lines influence subsequent indentation.
172 When nil, all comment lines are skipped for indentation purposes, and
173 if possible, a faster algorithm is used (i.e. X/Emacs 19 and beyond).
175 When t, lines that begin with a single `#' are a hint to subsequent
176 line indentation. If the previous line is such a comment line (as
177 opposed to one that starts with `py-block-comment-prefix'), then its
178 indentation is used as a hint for this line's indentation. Lines that
179 begin with `py-block-comment-prefix' are ignored for indentation
180 purposes.
182 When not nil or t, comment lines that begin with a single `#' are used
183 as indentation hints, unless the comment character is in column zero."
184 :type '(choice
185 (const :tag "Skip all comment lines (fast)" nil)
186 (const :tag "Single # `sets' indentation for next line" t)
187 (const :tag "Single # `sets' indentation except at column zero"
188 other)
190 :group 'python)
192 (defcustom py-temp-directory
193 (let ((ok '(lambda (x)
194 (and x
195 (setq x (expand-file-name x)) ; always true
196 (file-directory-p x)
197 (file-writable-p x)
198 x))))
199 (or (funcall ok (getenv "TMPDIR"))
200 (funcall ok "/usr/tmp")
201 (funcall ok "/tmp")
202 (funcall ok "/var/tmp")
203 (funcall ok ".")
204 (error
205 "Couldn't find a usable temp directory -- set `py-temp-directory'")))
206 "*Directory used for temporary files created by a *Python* process.
207 By default, the first directory from this list that exists and that you
208 can write into: the value (if any) of the environment variable TMPDIR,
209 /usr/tmp, /tmp, /var/tmp, or the current directory."
210 :type 'string
211 :group 'python)
213 (defcustom py-beep-if-tab-change t
214 "*Ring the bell if `tab-width' is changed.
215 If a comment of the form
217 \t# vi:set tabsize=<number>:
219 is found before the first code line when the file is entered, and the
220 current value of (the general Emacs variable) `tab-width' does not
221 equal <number>, `tab-width' is set to <number>, a message saying so is
222 displayed in the echo area, and if `py-beep-if-tab-change' is non-nil
223 the Emacs bell is also rung as a warning."
224 :type 'boolean
225 :group 'python)
227 (defcustom py-jump-on-exception t
228 "*Jump to innermost exception frame in *Python Output* buffer.
229 When this variable is non-nil and an exception occurs when running
230 Python code synchronously in a subprocess, jump immediately to the
231 source code of the innermost traceback frame."
232 :type 'boolean
233 :group 'python)
235 (defcustom py-ask-about-save t
236 "If not nil, ask about which buffers to save before executing some code.
237 Otherwise, all modified buffers are saved without asking."
238 :type 'boolean
239 :group 'python)
241 (defcustom py-backspace-function 'backward-delete-char-untabify
242 "*Function called by `py-electric-backspace' when deleting backwards."
243 :type 'function
244 :group 'python)
246 (defcustom py-delete-function 'delete-char
247 "*Function called by `py-electric-delete' when deleting forwards."
248 :type 'function
249 :group 'python)
251 (defcustom py-imenu-show-method-args-p nil
252 "*Controls echoing of arguments of functions & methods in the Imenu buffer.
253 When non-nil, arguments are printed."
254 :type 'boolean
255 :group 'python)
256 (make-variable-buffer-local 'py-indent-offset)
258 (defcustom py-pdbtrack-do-tracking-p t
259 "*Controls whether the pdbtrack feature is enabled or not.
260 When non-nil, pdbtrack is enabled in all comint-based buffers,
261 e.g. shell buffers and the *Python* buffer. When using pdb to debug a
262 Python program, pdbtrack notices the pdb prompt and displays the
263 source file and line that the program is stopped at, much the same way
264 as gud-mode does for debugging C programs with gdb."
265 :type 'boolean
266 :group 'python)
267 (make-variable-buffer-local 'py-pdbtrack-do-tracking-p)
269 (defcustom py-pdbtrack-minor-mode-string " PDB"
270 "*String to use in the minor mode list when pdbtrack is enabled."
271 :type 'string
272 :group 'python)
274 (defcustom py-import-check-point-max
275 20000
276 "Maximum number of characters to search for a Java-ish import statement.
277 When `python-mode' tries to calculate the shell to use (either a
278 CPython or a JPython shell), it looks at the so-called `shebang' line
279 -- i.e. #! line. If that's not available, it looks at some of the
280 file heading imports to see if they look Java-like."
281 :type 'integer
282 :group 'python
285 (defcustom py-jpython-packages
286 '("java" "javax" "org" "com")
287 "Imported packages that imply `jpython-mode'."
288 :type '(repeat string)
289 :group 'python)
291 ;; Not customizable
292 (defvar py-master-file nil
293 "If non-nil, execute the named file instead of the buffer's file.
294 The intent is to allow you to set this variable in the file's local
295 variable section, e.g.:
297 # Local Variables:
298 # py-master-file: \"master.py\"
299 # End:
301 so that typing \\[py-execute-buffer] in that buffer executes the named
302 master file instead of the buffer's file. If the file name has a
303 relative path, the value of variable `default-directory' for the
304 buffer is prepended to come up with a file name.")
305 (make-variable-buffer-local 'py-master-file)
307 (defcustom py-pychecker-command "pychecker"
308 "*Shell command used to run Pychecker."
309 :type 'string
310 :group 'python
311 :tag "Pychecker Command")
313 (defcustom py-pychecker-command-args '("--stdlib")
314 "*List of string arguments to be passed to pychecker."
315 :type '(repeat string)
316 :group 'python
317 :tag "Pychecker Command Args")
319 (defvar py-shell-alist
320 '(("jpython" . 'jpython)
321 ("jython" . 'jpython)
322 ("python" . 'cpython))
323 "*Alist of interpreters and python shells. Used by `py-choose-shell'
324 to select the appropriate python interpreter mode for a file.")
327 ;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
328 ;; NO USER DEFINABLE VARIABLES BEYOND THIS POINT
330 (defconst py-emacs-features
331 (let (features)
332 features)
333 "A list of features extant in the Emacs you are using.
334 There are many flavors of Emacs out there, with different levels of
335 support for features needed by `python-mode'.")
337 ;; Face for None, True, False, self, and Ellipsis
338 (defvar py-pseudo-keyword-face 'py-pseudo-keyword-face
339 "Face for pseudo keywords in Python mode, like self, True, False, Ellipsis.")
340 (make-face 'py-pseudo-keyword-face)
342 (defun py-font-lock-mode-hook ()
343 (or (face-differs-from-default-p 'py-pseudo-keyword-face)
344 (copy-face 'font-lock-keyword-face 'py-pseudo-keyword-face)))
345 (add-hook 'font-lock-mode-hook 'py-font-lock-mode-hook)
347 (defvar python-font-lock-keywords
348 (let ((kw1 (mapconcat 'identity
349 '("and" "assert" "break" "class"
350 "continue" "def" "del" "elif"
351 "else" "except" "exec" "for"
352 "from" "global" "if" "import"
353 "in" "is" "lambda" "not"
354 "or" "pass" "print" "raise"
355 "return" "while" "yield"
357 "\\|"))
358 (kw2 (mapconcat 'identity
359 '("else:" "except:" "finally:" "try:")
360 "\\|"))
362 (list
363 ;; keywords
364 (cons (concat "\\b\\(" kw1 "\\)\\b[ \n\t(]") 1)
365 ;; block introducing keywords with immediately following colons.
366 ;; Yes "except" is in both lists.
367 (cons (concat "\\b\\(" kw2 "\\)[ \n\t(]") 1)
368 ;; `as' but only in "import foo as bar"
369 '("[ \t]*\\(\\bfrom\\b.*\\)?\\bimport\\b.*\\b\\(as\\)\\b" . 2)
370 ;; classes
371 '("\\bclass[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
372 1 font-lock-type-face)
373 ;; functions
374 '("\\bdef[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
375 1 font-lock-function-name-face)
376 ;; pseudo-keywords
377 '("\\b\\(self\\|None\\|True\\|False\\|Ellipsis\\)\\b"
378 1 py-pseudo-keyword-face)
380 "Additional expressions to highlight in Python mode.")
381 (put 'python-mode 'font-lock-defaults '(python-font-lock-keywords))
383 ;; have to bind py-file-queue before installing the kill-emacs-hook
384 (defvar py-file-queue nil
385 "Queue of Python temp files awaiting execution.
386 Currently-active file is at the head of the list.")
388 (defvar py-pdbtrack-is-tracking-p nil)
389 (defvar py-pdbtrack-last-grubbed-buffer nil
390 "Record of the last buffer used when the source path was invalid.
392 This buffer is consulted before the buffer-list history for satisfying
393 `py-pdbtrack-grub-for-buffer', since it's the most often the likely
394 prospect as debugging continues.")
395 (make-variable-buffer-local 'py-pdbtrack-last-grubbed-buffer)
396 (defvar py-pychecker-history nil)
400 ;; Constants
402 (defconst py-stringlit-re
403 (concat
404 ;; These fail if backslash-quote ends the string (not worth
405 ;; fixing?). They precede the short versions so that the first two
406 ;; quotes don't look like an empty short string.
408 ;; (maybe raw), long single quoted triple quoted strings (SQTQ),
409 ;; with potential embedded single quotes
410 "[rR]?'''[^']*\\(\\('[^']\\|''[^']\\)[^']*\\)*'''"
411 "\\|"
412 ;; (maybe raw), long double quoted triple quoted strings (DQTQ),
413 ;; with potential embedded double quotes
414 "[rR]?\"\"\"[^\"]*\\(\\(\"[^\"]\\|\"\"[^\"]\\)[^\"]*\\)*\"\"\""
415 "\\|"
416 "[rR]?'\\([^'\n\\]\\|\\\\.\\)*'" ; single-quoted
417 "\\|" ; or
418 "[rR]?\"\\([^\"\n\\]\\|\\\\.\\)*\"" ; double-quoted
420 "Regular expression matching a Python string literal.")
422 (defconst py-continued-re
423 ;; This is tricky because a trailing backslash does not mean
424 ;; continuation if it's in a comment
425 (concat
426 "\\(" "[^#'\"\n\\]" "\\|" py-stringlit-re "\\)*"
427 "\\\\$")
428 "Regular expression matching Python backslash continuation lines.")
430 (defconst py-blank-or-comment-re "[ \t]*\\($\\|#\\)"
431 "Regular expression matching a blank or comment line.")
433 (defconst py-outdent-re
434 (concat "\\(" (mapconcat 'identity
435 '("else:"
436 "except\\(\\s +.*\\)?:"
437 "finally:"
438 "elif\\s +.*:")
439 "\\|")
440 "\\)")
441 "Regular expression matching statements to be dedented one level.")
443 (defconst py-block-closing-keywords-re
444 "\\(return\\|raise\\|break\\|continue\\|pass\\)"
445 "Regular expression matching keywords which typically close a block.")
447 (defconst py-no-outdent-re
448 (concat
449 "\\("
450 (mapconcat 'identity
451 (list "try:"
452 "except\\(\\s +.*\\)?:"
453 "while\\s +.*:"
454 "for\\s +.*:"
455 "if\\s +.*:"
456 "elif\\s +.*:"
457 (concat py-block-closing-keywords-re "[ \t\n]")
459 "\\|")
460 "\\)")
461 "Regular expression matching lines not to dedent after.")
463 (defconst py-defun-start-re
464 "^\\([ \t]*\\)def[ \t]+\\([a-zA-Z_0-9]+\\)\\|\\(^[a-zA-Z_0-9]+\\)[ \t]*="
465 ;; If you change this, you probably have to change py-current-defun
466 ;; as well. This is only used by py-current-defun to find the name
467 ;; for add-log.el.
468 "Regular expression matching a function, method, or variable assignment.")
470 (defconst py-class-start-re "^class[ \t]*\\([a-zA-Z_0-9]+\\)"
471 ;; If you change this, you probably have to change py-current-defun
472 ;; as well. This is only used by py-current-defun to find the name
473 ;; for add-log.el.
474 "Regular expression for finding a class name.")
476 (defconst py-traceback-line-re
477 "[ \t]+File \"\\([^\"]+\\)\", line \\([0-9]+\\)"
478 "Regular expression that describes tracebacks.")
480 ;; pdbtrack contants
481 (defconst py-pdbtrack-stack-entry-regexp
482 ; "^> \\([^(]+\\)(\\([0-9]+\\))\\([?a-zA-Z0-9_]+\\)()"
483 "^> \\(.*\\)(\\([0-9]+\\))\\([?a-zA-Z0-9_]+\\)()"
484 "Regular expression pdbtrack uses to find a stack trace entry.")
486 (defconst py-pdbtrack-input-prompt "\n[(<]?pdb[>)]? "
487 "Regular expression pdbtrack uses to recognize a pdb prompt.")
489 (defconst py-pdbtrack-track-range 10000
490 "Max number of characters from end of buffer to search for stack entry.")
494 ;; Major mode boilerplate
496 ;; define a mode-specific abbrev table for those who use such things
497 (defvar python-mode-abbrev-table nil
498 "Abbrev table in use in `python-mode' buffers.")
499 (define-abbrev-table 'python-mode-abbrev-table nil)
501 (defvar python-mode-hook nil
502 "*Hook called by `python-mode'.")
504 (defvar jpython-mode-hook nil
505 "*Hook called by `jpython-mode'. `jpython-mode' also calls
506 `python-mode-hook'.")
508 (defvar py-shell-hook nil
509 "*Hook called by `py-shell'.")
511 ;; In previous version of python-mode.el, the hook was incorrectly
512 ;; called py-mode-hook, and was not defvar'd. Deprecate its use.
513 (and (fboundp 'make-obsolete-variable)
514 (make-obsolete-variable 'py-mode-hook 'python-mode-hook))
516 (defvar py-mode-map ()
517 "Keymap used in `python-mode' buffers.")
518 (if py-mode-map
520 (setq py-mode-map (make-sparse-keymap))
521 ;; electric keys
522 (define-key py-mode-map ":" 'py-electric-colon)
523 ;; indentation level modifiers
524 (define-key py-mode-map "\C-c\C-l" 'py-shift-region-left)
525 (define-key py-mode-map "\C-c\C-r" 'py-shift-region-right)
526 (define-key py-mode-map "\C-c<" 'py-shift-region-left)
527 (define-key py-mode-map "\C-c>" 'py-shift-region-right)
528 ;; paragraph and string filling
529 (define-key py-mode-map "\eq" 'py-fill-paragraph)
530 ;; subprocess commands
531 (define-key py-mode-map "\C-c\C-c" 'py-execute-buffer)
532 (define-key py-mode-map "\C-c\C-m" 'py-execute-import-or-reload)
533 (define-key py-mode-map "\C-c\C-s" 'py-execute-string)
534 (define-key py-mode-map "\C-c|" 'py-execute-region)
535 (define-key py-mode-map "\e\C-x" 'py-execute-def-or-class)
536 (define-key py-mode-map "\C-c!" 'py-shell)
537 (define-key py-mode-map "\C-c\C-t" 'py-toggle-shells)
538 ;; Caution! Enter here at your own risk. We are trying to support
539 ;; several behaviors and it gets disgusting. :-( This logic ripped
540 ;; largely from CC Mode.
542 ;; In XEmacs 19, Emacs 19, and Emacs 20, we use this to bind
543 ;; backwards deletion behavior to DEL, which both Delete and
544 ;; Backspace get translated to. There's no way to separate this
545 ;; behavior in a clean way, so deal with it! Besides, it's been
546 ;; this way since the dawn of time.
547 (if (not (boundp 'delete-key-deletes-forward))
548 (define-key py-mode-map "\177" 'py-electric-backspace)
549 ;; However, XEmacs 20 actually achieved enlightenment. It is
550 ;; possible to sanely define both backward and forward deletion
551 ;; behavior under X separately (TTYs are forever beyond hope, but
552 ;; who cares? XEmacs 20 does the right thing with these too).
553 (define-key py-mode-map [delete] 'py-electric-delete)
554 (define-key py-mode-map [backspace] 'py-electric-backspace))
555 ;; Separate M-BS from C-M-h. The former should remain
556 ;; backward-kill-word.
557 (define-key py-mode-map [(control meta h)] 'py-mark-def-or-class)
558 (define-key py-mode-map "\C-c\C-k" 'py-mark-block)
559 ;; Miscellaneous
560 (define-key py-mode-map "\C-c:" 'py-guess-indent-offset)
561 (define-key py-mode-map "\C-c\t" 'py-indent-region)
562 (define-key py-mode-map "\C-c\C-d" 'py-pdbtrack-toggle-stack-tracking)
563 (define-key py-mode-map "\C-c\C-n" 'py-next-statement)
564 (define-key py-mode-map "\C-c\C-p" 'py-previous-statement)
565 (define-key py-mode-map "\C-c\C-u" 'py-goto-block-up)
566 (define-key py-mode-map "\C-c#" 'py-comment-region)
567 (define-key py-mode-map "\C-c?" 'py-describe-mode)
568 (define-key py-mode-map [f1] 'py-help-at-point)
569 (define-key py-mode-map "\C-c\C-h" 'py-help-at-point)
570 (define-key py-mode-map "\e\C-a" 'py-beginning-of-def-or-class)
571 (define-key py-mode-map "\e\C-e" 'py-end-of-def-or-class)
572 (define-key py-mode-map "\C-c-" 'py-up-exception)
573 (define-key py-mode-map "\C-c=" 'py-down-exception)
574 ;; stuff that is `standard' but doesn't interface well with
575 ;; python-mode, which forces us to rebind to special commands
576 (define-key py-mode-map "\C-xnd" 'py-narrow-to-defun)
577 ;; information
578 (define-key py-mode-map "\C-c\C-b" 'py-submit-bug-report)
579 (define-key py-mode-map "\C-c\C-v" 'py-version)
580 (define-key py-mode-map "\C-c\C-w" 'py-pychecker-run)
581 ;; shadow global bindings for newline-and-indent w/ the py- version.
582 ;; BAW - this is extremely bad form, but I'm not going to change it
583 ;; for now.
584 (mapcar #'(lambda (key)
585 (define-key py-mode-map key 'py-newline-and-indent))
586 (where-is-internal 'newline-and-indent))
587 ;; Force RET to be py-newline-and-indent even if it didn't get
588 ;; mapped by the above code. motivation: Emacs' default binding for
589 ;; RET is `newline' and C-j is `newline-and-indent'. Most Pythoneers
590 ;; expect RET to do a `py-newline-and-indent' and any Emacsers who
591 ;; dislike this are probably knowledgeable enough to do a rebind.
592 ;; However, we do *not* change C-j since many Emacsers have already
593 ;; swapped RET and C-j and they don't want C-j bound to `newline' to
594 ;; change.
595 (define-key py-mode-map "\C-m" 'py-newline-and-indent)
598 (defvar py-mode-output-map nil
599 "Keymap used in *Python Output* buffers.")
600 (if py-mode-output-map
602 (setq py-mode-output-map (make-sparse-keymap))
603 (define-key py-mode-output-map [button2] 'py-mouseto-exception)
604 (define-key py-mode-output-map "\C-c\C-c" 'py-goto-exception)
605 ;; TBD: Disable all self-inserting keys. This is bogus, we should
606 ;; really implement this as *Python Output* buffer being read-only
607 (mapcar #' (lambda (key)
608 (define-key py-mode-output-map key
609 #'(lambda () (interactive) (beep))))
610 (where-is-internal 'self-insert-command))
613 (defvar py-shell-map nil
614 "Keymap used in *Python* shell buffers.")
615 (if py-shell-map
617 (setq py-shell-map (copy-keymap comint-mode-map))
618 (define-key py-shell-map [tab] 'tab-to-tab-stop)
619 (define-key py-shell-map "\C-c-" 'py-up-exception)
620 (define-key py-shell-map "\C-c=" 'py-down-exception)
623 (defvar py-mode-syntax-table nil
624 "Syntax table used in `python-mode' buffers.")
625 (when (not py-mode-syntax-table)
626 (setq py-mode-syntax-table (make-syntax-table))
627 (modify-syntax-entry ?\( "()" py-mode-syntax-table)
628 (modify-syntax-entry ?\) ")(" py-mode-syntax-table)
629 (modify-syntax-entry ?\[ "(]" py-mode-syntax-table)
630 (modify-syntax-entry ?\] ")[" py-mode-syntax-table)
631 (modify-syntax-entry ?\{ "(}" py-mode-syntax-table)
632 (modify-syntax-entry ?\} "){" py-mode-syntax-table)
633 ;; Add operator symbols misassigned in the std table
634 (modify-syntax-entry ?\$ "." py-mode-syntax-table)
635 (modify-syntax-entry ?\% "." py-mode-syntax-table)
636 (modify-syntax-entry ?\& "." py-mode-syntax-table)
637 (modify-syntax-entry ?\* "." py-mode-syntax-table)
638 (modify-syntax-entry ?\+ "." py-mode-syntax-table)
639 (modify-syntax-entry ?\- "." py-mode-syntax-table)
640 (modify-syntax-entry ?\/ "." py-mode-syntax-table)
641 (modify-syntax-entry ?\< "." py-mode-syntax-table)
642 (modify-syntax-entry ?\= "." py-mode-syntax-table)
643 (modify-syntax-entry ?\> "." py-mode-syntax-table)
644 (modify-syntax-entry ?\| "." py-mode-syntax-table)
645 ;; For historical reasons, underscore is word class instead of
646 ;; symbol class. GNU conventions say it should be symbol class, but
647 ;; there's a natural conflict between what major mode authors want
648 ;; and what users expect from `forward-word' and `backward-word'.
649 ;; Guido and I have hashed this out and have decided to keep
650 ;; underscore in word class. If you're tempted to change it, try
651 ;; binding M-f and M-b to py-forward-into-nomenclature and
652 ;; py-backward-into-nomenclature instead. This doesn't help in all
653 ;; situations where you'd want the different behavior
654 ;; (e.g. backward-kill-word).
655 (modify-syntax-entry ?\_ "w" py-mode-syntax-table)
656 ;; Both single quote and double quote are string delimiters
657 (modify-syntax-entry ?\' "\"" py-mode-syntax-table)
658 (modify-syntax-entry ?\" "\"" py-mode-syntax-table)
659 ;; backquote is open and close paren
660 (modify-syntax-entry ?\` "$" py-mode-syntax-table)
661 ;; comment delimiters
662 (modify-syntax-entry ?\# "<" py-mode-syntax-table)
663 (modify-syntax-entry ?\n ">" py-mode-syntax-table)
666 ;; An auxiliary syntax table which places underscore and dot in the
667 ;; symbol class for simplicity
668 (defvar py-dotted-expression-syntax-table nil
669 "Syntax table used to identify Python dotted expressions.")
670 (when (not py-dotted-expression-syntax-table)
671 (setq py-dotted-expression-syntax-table
672 (copy-syntax-table py-mode-syntax-table))
673 (modify-syntax-entry ?_ "_" py-dotted-expression-syntax-table)
674 (modify-syntax-entry ?. "_" py-dotted-expression-syntax-table))
678 ;; Utilities
679 (defmacro py-safe (&rest body)
680 "Safely execute BODY, return nil if an error occurred."
681 (` (condition-case nil
682 (progn (,@ body))
683 (error nil))))
685 (defsubst py-keep-region-active ()
686 "Keep the region active in XEmacs."
687 ;; Ignore byte-compiler warnings you might see. Also note that
688 ;; FSF's Emacs 19 does it differently; its policy doesn't require us
689 ;; to take explicit action.
690 (and (boundp 'zmacs-region-stays)
691 (setq zmacs-region-stays t)))
693 (defsubst py-point (position)
694 "Returns the value of point at certain commonly referenced POSITIONs.
695 POSITION can be one of the following symbols:
697 bol -- beginning of line
698 eol -- end of line
699 bod -- beginning of def or class
700 eod -- end of def or class
701 bob -- beginning of buffer
702 eob -- end of buffer
703 boi -- back to indentation
704 bos -- beginning of statement
706 This function does not modify point or mark."
707 (let ((here (point)))
708 (cond
709 ((eq position 'bol) (beginning-of-line))
710 ((eq position 'eol) (end-of-line))
711 ((eq position 'bod) (py-beginning-of-def-or-class))
712 ((eq position 'eod) (py-end-of-def-or-class))
713 ;; Kind of funny, I know, but useful for py-up-exception.
714 ((eq position 'bob) (beginning-of-buffer))
715 ((eq position 'eob) (end-of-buffer))
716 ((eq position 'boi) (back-to-indentation))
717 ((eq position 'bos) (py-goto-initial-line))
718 (t (error "Unknown buffer position requested: %s" position))
720 (prog1
721 (point)
722 (goto-char here))))
724 (defsubst py-highlight-line (from to file line)
725 (cond
726 ((fboundp 'make-extent)
727 ;; XEmacs
728 (let ((e (make-extent from to)))
729 (set-extent-property e 'mouse-face 'highlight)
730 (set-extent-property e 'py-exc-info (cons file line))
731 (set-extent-property e 'keymap py-mode-output-map)))
733 ;; Emacs -- Please port this!
737 (defun py-in-literal (&optional lim)
738 "Return non-nil if point is in a Python literal (a comment or string).
739 Optional argument LIM indicates the beginning of the containing form,
740 i.e. the limit on how far back to scan."
741 ;; This is the version used for non-XEmacs, which has a nicer
742 ;; interface.
744 ;; WARNING: Watch out for infinite recursion.
745 (let* ((lim (or lim (py-point 'bod)))
746 (state (parse-partial-sexp lim (point))))
747 (cond
748 ((nth 3 state) 'string)
749 ((nth 4 state) 'comment)
750 (t nil))))
752 ;; XEmacs has a built-in function that should make this much quicker.
753 ;; In this case, lim is ignored
754 (defun py-fast-in-literal (&optional lim)
755 "Fast version of `py-in-literal', used only by XEmacs.
756 Optional LIM is ignored."
757 ;; don't have to worry about context == 'block-comment
758 (buffer-syntactic-context))
760 (if (fboundp 'buffer-syntactic-context)
761 (defalias 'py-in-literal 'py-fast-in-literal))
765 ;; Menu definitions, only relevent if you have the easymenu.el package
766 ;; (standard in the latest Emacs 19 and XEmacs 19 distributions).
767 (defvar py-menu nil
768 "Menu for Python Mode.
769 This menu will get created automatically if you have the `easymenu'
770 package. Note that the latest X/Emacs releases contain this package.")
772 (and (py-safe (require 'easymenu) t)
773 (easy-menu-define
774 py-menu py-mode-map "Python Mode menu"
775 '("Python"
776 ["Comment Out Region" py-comment-region (mark)]
777 ["Uncomment Region" (py-comment-region (point) (mark) '(4)) (mark)]
779 ["Mark current block" py-mark-block t]
780 ["Mark current def" py-mark-def-or-class t]
781 ["Mark current class" (py-mark-def-or-class t) t]
783 ["Shift region left" py-shift-region-left (mark)]
784 ["Shift region right" py-shift-region-right (mark)]
786 ["Import/reload file" py-execute-import-or-reload t]
787 ["Execute buffer" py-execute-buffer t]
788 ["Execute region" py-execute-region (mark)]
789 ["Execute def or class" py-execute-def-or-class (mark)]
790 ["Execute string" py-execute-string t]
791 ["Start interpreter..." py-shell t]
793 ["Go to start of block" py-goto-block-up t]
794 ["Go to start of class" (py-beginning-of-def-or-class t) t]
795 ["Move to end of class" (py-end-of-def-or-class t) t]
796 ["Move to start of def" py-beginning-of-def-or-class t]
797 ["Move to end of def" py-end-of-def-or-class t]
799 ["Describe mode" py-describe-mode t]
804 ;; Imenu definitions
805 (defvar py-imenu-class-regexp
806 (concat ; <<classes>>
807 "\\(" ;
808 "^[ \t]*" ; newline and maybe whitespace
809 "\\(class[ \t]+[a-zA-Z0-9_]+\\)" ; class name
810 ; possibly multiple superclasses
811 "\\([ \t]*\\((\\([a-zA-Z0-9_,. \t\n]\\)*)\\)?\\)"
812 "[ \t]*:" ; and the final :
813 "\\)" ; >>classes<<
815 "Regexp for Python classes for use with the Imenu package."
818 (defvar py-imenu-method-regexp
819 (concat ; <<methods and functions>>
820 "\\(" ;
821 "^[ \t]*" ; new line and maybe whitespace
822 "\\(def[ \t]+" ; function definitions start with def
823 "\\([a-zA-Z0-9_]+\\)" ; name is here
824 ; function arguments...
825 ;; "[ \t]*(\\([-+/a-zA-Z0-9_=,\* \t\n.()\"'#]*\\))"
826 "[ \t]*(\\([^:#]*\\))"
827 "\\)" ; end of def
828 "[ \t]*:" ; and then the :
829 "\\)" ; >>methods and functions<<
831 "Regexp for Python methods/functions for use with the Imenu package."
834 (defvar py-imenu-method-no-arg-parens '(2 8)
835 "Indices into groups of the Python regexp for use with Imenu.
837 Using these values will result in smaller Imenu lists, as arguments to
838 functions are not listed.
840 See the variable `py-imenu-show-method-args-p' for more
841 information.")
843 (defvar py-imenu-method-arg-parens '(2 7)
844 "Indices into groups of the Python regexp for use with imenu.
845 Using these values will result in large Imenu lists, as arguments to
846 functions are listed.
848 See the variable `py-imenu-show-method-args-p' for more
849 information.")
851 ;; Note that in this format, this variable can still be used with the
852 ;; imenu--generic-function. Otherwise, there is no real reason to have
853 ;; it.
854 (defvar py-imenu-generic-expression
855 (cons
856 (concat
857 py-imenu-class-regexp
858 "\\|" ; or...
859 py-imenu-method-regexp
861 py-imenu-method-no-arg-parens)
862 "Generic Python expression which may be used directly with Imenu.
863 Used by setting the variable `imenu-generic-expression' to this value.
864 Also, see the function \\[py-imenu-create-index] for a better
865 alternative for finding the index.")
867 ;; These next two variables are used when searching for the Python
868 ;; class/definitions. Just saving some time in accessing the
869 ;; generic-python-expression, really.
870 (defvar py-imenu-generic-regexp nil)
871 (defvar py-imenu-generic-parens nil)
874 (defun py-imenu-create-index-function ()
875 "Python interface function for the Imenu package.
876 Finds all Python classes and functions/methods. Calls function
877 \\[py-imenu-create-index-engine]. See that function for the details
878 of how this works."
879 (setq py-imenu-generic-regexp (car py-imenu-generic-expression)
880 py-imenu-generic-parens (if py-imenu-show-method-args-p
881 py-imenu-method-arg-parens
882 py-imenu-method-no-arg-parens))
883 (goto-char (point-min))
884 ;; Warning: When the buffer has no classes or functions, this will
885 ;; return nil, which seems proper according to the Imenu API, but
886 ;; causes an error in the XEmacs port of Imenu. Sigh.
887 (py-imenu-create-index-engine nil))
889 (defun py-imenu-create-index-engine (&optional start-indent)
890 "Function for finding Imenu definitions in Python.
892 Finds all definitions (classes, methods, or functions) in a Python
893 file for the Imenu package.
895 Returns a possibly nested alist of the form
897 (INDEX-NAME . INDEX-POSITION)
899 The second element of the alist may be an alist, producing a nested
900 list as in
902 (INDEX-NAME . INDEX-ALIST)
904 This function should not be called directly, as it calls itself
905 recursively and requires some setup. Rather this is the engine for
906 the function \\[py-imenu-create-index-function].
908 It works recursively by looking for all definitions at the current
909 indention level. When it finds one, it adds it to the alist. If it
910 finds a definition at a greater indentation level, it removes the
911 previous definition from the alist. In its place it adds all
912 definitions found at the next indentation level. When it finds a
913 definition that is less indented then the current level, it returns
914 the alist it has created thus far.
916 The optional argument START-INDENT indicates the starting indentation
917 at which to continue looking for Python classes, methods, or
918 functions. If this is not supplied, the function uses the indentation
919 of the first definition found."
920 (let (index-alist
921 sub-method-alist
922 looking-p
923 def-name prev-name
924 cur-indent def-pos
925 (class-paren (first py-imenu-generic-parens))
926 (def-paren (second py-imenu-generic-parens)))
927 (setq looking-p
928 (re-search-forward py-imenu-generic-regexp (point-max) t))
929 (while looking-p
930 (save-excursion
931 ;; used to set def-name to this value but generic-extract-name
932 ;; is new to imenu-1.14. this way it still works with
933 ;; imenu-1.11
934 ;;(imenu--generic-extract-name py-imenu-generic-parens))
935 (let ((cur-paren (if (match-beginning class-paren)
936 class-paren def-paren)))
937 (setq def-name
938 (buffer-substring-no-properties (match-beginning cur-paren)
939 (match-end cur-paren))))
940 (save-match-data
941 (py-beginning-of-def-or-class 'either))
942 (beginning-of-line)
943 (setq cur-indent (current-indentation)))
944 ;; HACK: want to go to the next correct definition location. We
945 ;; explicitly list them here but it would be better to have them
946 ;; in a list.
947 (setq def-pos
948 (or (match-beginning class-paren)
949 (match-beginning def-paren)))
950 ;; if we don't have a starting indent level, take this one
951 (or start-indent
952 (setq start-indent cur-indent))
953 ;; if we don't have class name yet, take this one
954 (or prev-name
955 (setq prev-name def-name))
956 ;; what level is the next definition on? must be same, deeper
957 ;; or shallower indentation
958 (cond
959 ;; Skip code in comments and strings
960 ((py-in-literal))
961 ;; at the same indent level, add it to the list...
962 ((= start-indent cur-indent)
963 (push (cons def-name def-pos) index-alist))
964 ;; deeper indented expression, recurse
965 ((< start-indent cur-indent)
966 ;; the point is currently on the expression we're supposed to
967 ;; start on, so go back to the last expression. The recursive
968 ;; call will find this place again and add it to the correct
969 ;; list
970 (re-search-backward py-imenu-generic-regexp (point-min) 'move)
971 (setq sub-method-alist (py-imenu-create-index-engine cur-indent))
972 (if sub-method-alist
973 ;; we put the last element on the index-alist on the start
974 ;; of the submethod alist so the user can still get to it.
975 (let ((save-elmt (pop index-alist)))
976 (push (cons prev-name
977 (cons save-elmt sub-method-alist))
978 index-alist))))
979 ;; found less indented expression, we're done.
981 (setq looking-p nil)
982 (re-search-backward py-imenu-generic-regexp (point-min) t)))
983 ;; end-cond
984 (setq prev-name def-name)
985 (and looking-p
986 (setq looking-p
987 (re-search-forward py-imenu-generic-regexp
988 (point-max) 'move))))
989 (nreverse index-alist)))
993 (defun py-choose-shell-by-shebang ()
994 "Choose CPython or JPython mode by looking at #! on the first line.
995 Returns the appropriate mode function.
996 Used by `py-choose-shell', and similar to but distinct from
997 `set-auto-mode', though it uses `auto-mode-interpreter-regexp' (if available)."
998 ;; look for an interpreter specified in the first line
999 ;; similar to set-auto-mode (files.el)
1000 (let* ((re (if (boundp 'auto-mode-interpreter-regexp)
1001 auto-mode-interpreter-regexp
1002 ;; stolen from Emacs 21.2
1003 "#![ \t]?\\([^ \t\n]*/bin/env[ \t]\\)?\\([^ \t\n]+\\)"))
1004 (interpreter (save-excursion
1005 (goto-char (point-min))
1006 (if (looking-at re)
1007 (match-string 2)
1008 "")))
1009 elt)
1010 ;; Map interpreter name to a mode.
1011 (setq elt (assoc (file-name-nondirectory interpreter)
1012 py-shell-alist))
1013 (and elt (caddr elt))))
1017 (defun py-choose-shell-by-import ()
1018 "Choose CPython or JPython mode based imports.
1019 If a file imports any packages in `py-jpython-packages', within
1020 `py-import-check-point-max' characters from the start of the file,
1021 return `jpython', otherwise return nil."
1022 (let (mode)
1023 (save-excursion
1024 (goto-char (point-min))
1025 (while (and (not mode)
1026 (search-forward-regexp
1027 "^\\(\\(from\\)\\|\\(import\\)\\) \\([^ \t\n.]+\\)"
1028 py-import-check-point-max t))
1029 (setq mode (and (member (match-string 4) py-jpython-packages)
1030 'jpython
1031 ))))
1032 mode))
1035 (defun py-choose-shell ()
1036 "Choose CPython or JPython mode. Returns the appropriate mode function.
1037 This does the following:
1038 - look for an interpreter with `py-choose-shell-by-shebang'
1039 - examine imports using `py-choose-shell-by-import'
1040 - default to the variable `py-default-interpreter'"
1041 (interactive)
1042 (or (py-choose-shell-by-shebang)
1043 (py-choose-shell-by-import)
1044 py-default-interpreter
1045 ; 'cpython ;; don't use to py-default-interpreter, because default
1046 ; ;; is only way to choose CPython
1050 ;;;###autoload
1051 (defun python-mode ()
1052 "Major mode for editing Python files.
1053 To submit a problem report, enter `\\[py-submit-bug-report]' from a
1054 `python-mode' buffer. Do `\\[py-describe-mode]' for detailed
1055 documentation. To see what version of `python-mode' you are running,
1056 enter `\\[py-version]'.
1058 This mode knows about Python indentation, tokens, comments and
1059 continuation lines. Paragraphs are separated by blank lines only.
1061 COMMANDS
1062 \\{py-mode-map}
1063 VARIABLES
1065 py-indent-offset\t\tindentation increment
1066 py-block-comment-prefix\t\tcomment string used by `comment-region'
1067 py-python-command\t\tshell command to invoke Python interpreter
1068 py-temp-directory\t\tdirectory used for temp files (if needed)
1069 py-beep-if-tab-change\t\tring the bell if `tab-width' is changed"
1070 (interactive)
1071 ;; set up local variables
1072 (kill-all-local-variables)
1073 (make-local-variable 'font-lock-defaults)
1074 (make-local-variable 'paragraph-separate)
1075 (make-local-variable 'paragraph-start)
1076 (make-local-variable 'require-final-newline)
1077 (make-local-variable 'comment-start)
1078 (make-local-variable 'comment-end)
1079 (make-local-variable 'comment-start-skip)
1080 (make-local-variable 'comment-column)
1081 (make-local-variable 'comment-indent-function)
1082 (make-local-variable 'indent-region-function)
1083 (make-local-variable 'indent-line-function)
1084 (make-local-variable 'add-log-current-defun-function)
1086 (set-syntax-table py-mode-syntax-table)
1087 (setq major-mode 'python-mode
1088 mode-name "Python"
1089 local-abbrev-table python-mode-abbrev-table
1090 font-lock-defaults '(python-font-lock-keywords)
1091 paragraph-separate "^[ \t]*$"
1092 paragraph-start "^[ \t]*$"
1093 require-final-newline t
1094 comment-start "# "
1095 comment-end ""
1096 comment-start-skip "# *"
1097 comment-column 40
1098 comment-indent-function 'py-comment-indent-function
1099 indent-region-function 'py-indent-region
1100 indent-line-function 'py-indent-line
1101 ;; tell add-log.el how to find the current function/method/variable
1102 add-log-current-defun-function 'py-current-defun
1104 (use-local-map py-mode-map)
1105 ;; add the menu
1106 (if py-menu
1107 (easy-menu-add py-menu))
1108 ;; Emacs 19 requires this
1109 (if (boundp 'comment-multi-line)
1110 (setq comment-multi-line nil))
1111 ;; Install Imenu if available
1112 (when (py-safe (require 'imenu))
1113 (setq imenu-create-index-function #'py-imenu-create-index-function)
1114 (setq imenu-generic-expression py-imenu-generic-expression)
1115 (if (fboundp 'imenu-add-to-menubar)
1116 (imenu-add-to-menubar (format "%s-%s" "IM" mode-name)))
1118 ;; Run the mode hook. Note that py-mode-hook is deprecated.
1119 (if python-mode-hook
1120 (run-hooks 'python-mode-hook)
1121 (run-hooks 'py-mode-hook))
1122 ;; Now do the automagical guessing
1123 (if py-smart-indentation
1124 (let ((offset py-indent-offset))
1125 ;; It's okay if this fails to guess a good value
1126 (if (and (py-safe (py-guess-indent-offset))
1127 (<= py-indent-offset 8)
1128 (>= py-indent-offset 2))
1129 (setq offset py-indent-offset))
1130 (setq py-indent-offset offset)
1131 ;; Only turn indent-tabs-mode off if tab-width !=
1132 ;; py-indent-offset. Never turn it on, because the user must
1133 ;; have explicitly turned it off.
1134 (if (/= tab-width py-indent-offset)
1135 (setq indent-tabs-mode nil))
1137 ;; Set the default shell if not already set
1138 (when (null py-which-shell)
1139 (py-toggle-shells (py-choose-shell))))
1142 (defun jpython-mode ()
1143 "Major mode for editing JPython/Jython files.
1144 This is a simple wrapper around `python-mode'.
1145 It runs `jpython-mode-hook' then calls `python-mode.'
1146 It is added to `interpreter-mode-alist' and `py-choose-shell'.
1148 (interactive)
1149 (python-mode)
1150 (py-toggle-shells 'jpython)
1151 (when jpython-mode-hook
1152 (run-hooks 'jpython-mode-hook)))
1155 ;; It's handy to add recognition of Python files to the
1156 ;; interpreter-mode-alist and to auto-mode-alist. With the former, we
1157 ;; can specify different `derived-modes' based on the #! line, but
1158 ;; with the latter, we can't. So we just won't add them if they're
1159 ;; already added.
1160 (let ((modes '(("jpython" . jpython-mode)
1161 ("jython" . jpython-mode)
1162 ("python" . python-mode))))
1163 (while modes
1164 (when (not (assoc (car modes) interpreter-mode-alist))
1165 (push (car modes) interpreter-mode-alist))
1166 (setq modes (cdr modes))))
1168 (when (not (or (rassq 'python-mode auto-mode-alist)
1169 (rassq 'jpython-mode auto-mode-alist)))
1170 (push '("\\.py$" . python-mode) auto-mode-alist))
1174 ;; electric characters
1175 (defun py-outdent-p ()
1176 "Returns non-nil if the current line should dedent one level."
1177 (save-excursion
1178 (and (progn (back-to-indentation)
1179 (looking-at py-outdent-re))
1180 ;; short circuit infloop on illegal construct
1181 (not (bobp))
1182 (progn (forward-line -1)
1183 (py-goto-initial-line)
1184 (back-to-indentation)
1185 (while (or (looking-at py-blank-or-comment-re)
1186 (bobp))
1187 (backward-to-indentation 1))
1188 (not (looking-at py-no-outdent-re)))
1191 (defun py-electric-colon (arg)
1192 "Insert a colon.
1193 In certain cases the line is dedented appropriately. If a numeric
1194 argument ARG is provided, that many colons are inserted
1195 non-electrically. Electric behavior is inhibited inside a string or
1196 comment."
1197 (interactive "P")
1198 (self-insert-command (prefix-numeric-value arg))
1199 ;; are we in a string or comment?
1200 (if (save-excursion
1201 (let ((pps (parse-partial-sexp (save-excursion
1202 (py-beginning-of-def-or-class)
1203 (point))
1204 (point))))
1205 (not (or (nth 3 pps) (nth 4 pps)))))
1206 (save-excursion
1207 (let ((here (point))
1208 (outdent 0)
1209 (indent (py-compute-indentation t)))
1210 (if (and (not arg)
1211 (py-outdent-p)
1212 (= indent (save-excursion
1213 (py-next-statement -1)
1214 (py-compute-indentation t)))
1216 (setq outdent py-indent-offset))
1217 ;; Don't indent, only dedent. This assumes that any lines
1218 ;; that are already dedented relative to
1219 ;; py-compute-indentation were put there on purpose. It's
1220 ;; highly annoying to have `:' indent for you. Use TAB, C-c
1221 ;; C-l or C-c C-r to adjust. TBD: Is there a better way to
1222 ;; determine this???
1223 (if (< (current-indentation) indent) nil
1224 (goto-char here)
1225 (beginning-of-line)
1226 (delete-horizontal-space)
1227 (indent-to (- indent outdent))
1228 )))))
1231 ;; Python subprocess utilities and filters
1232 (defun py-execute-file (proc filename)
1233 "Send to Python interpreter process PROC \"execfile('FILENAME')\".
1234 Make that process's buffer visible and force display. Also make
1235 comint believe the user typed this string so that
1236 `kill-output-from-shell' does The Right Thing."
1237 (let ((curbuf (current-buffer))
1238 (procbuf (process-buffer proc))
1239 ; (comint-scroll-to-bottom-on-output t)
1240 (msg (format "## working on region in file %s...\n" filename))
1241 (cmd (format "execfile(r'%s')\n" filename)))
1242 (unwind-protect
1243 (save-excursion
1244 (set-buffer procbuf)
1245 (goto-char (point-max))
1246 (move-marker (process-mark proc) (point))
1247 (funcall (process-filter proc) proc msg))
1248 (set-buffer curbuf))
1249 (process-send-string proc cmd)))
1251 (defun py-comint-output-filter-function (string)
1252 "Watch output for Python prompt and exec next file waiting in queue.
1253 This function is appropriate for `comint-output-filter-functions'."
1254 ;; TBD: this should probably use split-string
1255 (when (and (or (string-equal string ">>> ")
1256 (and (>= (length string) 5)
1257 (string-equal (substring string -5) "\n>>> ")))
1258 py-file-queue)
1259 (pop-to-buffer (current-buffer))
1260 (py-safe (delete-file (car py-file-queue)))
1261 (setq py-file-queue (cdr py-file-queue))
1262 (if py-file-queue
1263 (let ((pyproc (get-buffer-process (current-buffer))))
1264 (py-execute-file pyproc (car py-file-queue))))
1267 (defun py-pdbtrack-overlay-arrow (activation)
1268 "Activate or de arrow at beginning-of-line in current buffer."
1269 ;; This was derived/simplified from edebug-overlay-arrow
1270 (cond (activation
1271 (setq overlay-arrow-position (make-marker))
1272 (setq overlay-arrow-string "=>")
1273 (set-marker overlay-arrow-position (py-point 'bol) (current-buffer))
1274 (setq py-pdbtrack-is-tracking-p t))
1275 (overlay-arrow-position
1276 (setq overlay-arrow-position nil)
1277 (setq py-pdbtrack-is-tracking-p nil))
1280 (defun py-pdbtrack-track-stack-file (text)
1281 "Show the file indicated by the pdb stack entry line, in a separate window.
1283 Activity is disabled if the buffer-local variable
1284 `py-pdbtrack-do-tracking-p' is nil.
1286 We depend on the pdb input prompt matching `py-pdbtrack-input-prompt'
1287 at the beginning of the line.
1289 If the traceback target file path is invalid, we look for the most
1290 recently visited python-mode buffer which either has the name of the
1291 current function \(or class) or which defines the function \(or
1292 class). This is to provide for remote scripts, eg, Zope's 'Script
1293 (Python)' - put a _copy_ of the script in a python-mode buffer named
1294 for the script and pdbtrack will find it.)"
1295 ;; Instead of trying to piece things together from partial text
1296 ;; (which can be almost useless depending on Emacs version), we
1297 ;; monitor to the point where we have the next pdb prompt, and then
1298 ;; check all text from comint-last-input-end to process-mark.
1300 ;; Also, we're very conservative about clearing the overlay arrow,
1301 ;; to minimize residue. This means, for instance, that executing
1302 ;; other pdb commands wipe out the highlight. You can always do a
1303 ;; 'where' (aka 'w') command to reveal the overlay arrow.
1304 (let* ((origbuf (current-buffer))
1305 (currproc (get-buffer-process origbuf)))
1307 (if (not (and currproc py-pdbtrack-do-tracking-p))
1308 (py-pdbtrack-overlay-arrow nil)
1310 (let* ((procmark (process-mark currproc))
1311 (block (buffer-substring (max comint-last-input-end
1312 (- procmark
1313 py-pdbtrack-track-range))
1314 procmark))
1315 target target_fname target_lineno)
1317 (if (not (string-match (concat py-pdbtrack-input-prompt "$") block))
1318 (py-pdbtrack-overlay-arrow nil)
1320 (setq target (py-pdbtrack-get-source-buffer block))
1322 (if (stringp target)
1323 (message "pdbtrack: %s" target)
1325 (setq target_lineno (car target))
1326 (setq target_buffer (cadr target))
1327 (setq target_fname (buffer-file-name target_buffer))
1328 (switch-to-buffer-other-window target_buffer)
1329 (goto-line target_lineno)
1330 (message "pdbtrack: line %s, file %s" target_lineno target_fname)
1331 (py-pdbtrack-overlay-arrow t)
1332 (pop-to-buffer origbuf t)
1334 )))))
1337 (defun py-pdbtrack-get-source-buffer (block)
1338 "Return line number and buffer of code indicated by block's traceback text.
1340 We look first to visit the file indicated in the trace.
1342 Failing that, we look for the most recently visited python-mode buffer
1343 with the same name or having
1344 having the named function.
1346 If we're unable find the source code we return a string describing the
1347 problem as best as we can determine."
1349 (if (not (string-match py-pdbtrack-stack-entry-regexp block))
1351 "Traceback cue not found"
1353 (let* ((filename (match-string 1 block))
1354 (lineno (string-to-int (match-string 2 block)))
1355 (funcname (match-string 3 block))
1356 funcbuffer)
1358 (cond ((file-exists-p filename)
1359 (list lineno (find-file-noselect filename)))
1361 ((setq funcbuffer (py-pdbtrack-grub-for-buffer funcname lineno))
1362 (if (string-match "/Script (Python)$" filename)
1363 ;; Add in number of lines for leading '##' comments:
1364 (setq lineno
1365 (+ lineno
1366 (save-excursion
1367 (set-buffer funcbuffer)
1368 (count-lines
1369 (point-min)
1370 (max (point-min)
1371 (string-match "^\\([^#]\\|#[^#]\\|#$\\)"
1372 (buffer-substring (point-min)
1373 (point-max)
1374 funcbuffer))
1375 ))))))
1376 (list lineno funcbuffer))
1378 ((= (elt filename 0) ?\<)
1379 (format "(Non-file source: '%s')" filename))
1381 (t (format "Function/file not found: %s(), %s" funcname filename)))
1386 (defun py-pdbtrack-grub-for-buffer (funcname lineno)
1387 "Find most recent buffer itself named or having function funcname.
1389 We first check the last buffer this function found, if any, then walk
1390 throught the buffer-list history for python-mode buffers that are
1391 named for funcname or define a function funcname."
1392 (let ((buffers (buffer-list))
1393 curbuf
1394 got)
1395 (if (and py-pdbtrack-last-grubbed-buffer
1396 (member py-pdbtrack-last-grubbed-buffer buffers))
1397 ; Prefer last grubbed buffer by putting it at the front of the list:
1398 (setq buffers (cons py-pdbtrack-last-grubbed-buffer buffers)))
1399 (while (and buffers (not got))
1400 (setq buf (car buffers)
1401 buffers (cdr buffers))
1402 (if (and (save-excursion (set-buffer buf)
1403 (string= major-mode "python-mode"))
1404 (or (string-match funcname (buffer-name buf))
1405 (string-match (concat "^\\s-*\\(def\\|class\\)\\s-+"
1406 funcname "\\s-*(")
1407 (buffer-substring (point-min buf)
1408 (point-max buf)
1409 buf))))
1410 (setq got buf)))
1411 (setq py-pdbtrack-last-grubbed-buffer got)))
1413 (defun py-postprocess-output-buffer (buf)
1414 "Highlight exceptions found in BUF.
1415 If an exception occurred return t, otherwise return nil. BUF must exist."
1416 (let (line file bol err-p)
1417 (save-excursion
1418 (set-buffer buf)
1419 (beginning-of-buffer)
1420 (while (re-search-forward py-traceback-line-re nil t)
1421 (setq file (match-string 1)
1422 line (string-to-int (match-string 2))
1423 bol (py-point 'bol))
1424 (py-highlight-line bol (py-point 'eol) file line)))
1425 (when (and py-jump-on-exception line)
1426 (beep)
1427 (py-jump-to-exception file line)
1428 (setq err-p t))
1429 err-p))
1433 ;;; Subprocess commands
1435 ;; only used when (memq 'broken-temp-names py-emacs-features)
1436 (defvar py-serial-number 0)
1437 (defvar py-exception-buffer nil)
1438 (defconst py-output-buffer "*Python Output*")
1439 (make-variable-buffer-local 'py-output-buffer)
1441 ;; for toggling between CPython and JPython
1442 (defvar py-which-shell nil)
1443 (defvar py-which-args py-python-command-args)
1444 (defvar py-which-bufname "Python")
1445 (make-variable-buffer-local 'py-which-shell)
1446 (make-variable-buffer-local 'py-which-args)
1447 (make-variable-buffer-local 'py-which-bufname)
1449 (defun py-toggle-shells (arg)
1450 "Toggles between the CPython and JPython shells.
1452 With positive argument ARG (interactively \\[universal-argument]),
1453 uses the CPython shell, with negative ARG uses the JPython shell, and
1454 with a zero argument, toggles the shell.
1456 Programmatically, ARG can also be one of the symbols `cpython' or
1457 `jpython', equivalent to positive arg and negative arg respectively."
1458 (interactive "P")
1459 ;; default is to toggle
1460 (if (null arg)
1461 (setq arg 0))
1462 ;; preprocess arg
1463 (cond
1464 ((equal arg 0)
1465 ;; toggle
1466 (if (string-equal py-which-bufname "Python")
1467 (setq arg -1)
1468 (setq arg 1)))
1469 ((equal arg 'cpython) (setq arg 1))
1470 ((equal arg 'jpython) (setq arg -1)))
1471 (let (msg)
1472 (cond
1473 ((< 0 arg)
1474 ;; set to CPython
1475 (setq py-which-shell py-python-command
1476 py-which-args py-python-command-args
1477 py-which-bufname "Python"
1478 msg "CPython"
1479 mode-name "Python"))
1480 ((> 0 arg)
1481 (setq py-which-shell py-jpython-command
1482 py-which-args py-jpython-command-args
1483 py-which-bufname "JPython"
1484 msg "JPython"
1485 mode-name "JPython"))
1487 (message "Using the %s shell" msg)
1488 (setq py-output-buffer (format "*%s Output*" py-which-bufname))))
1490 ;;;###autoload
1491 (defun py-shell (&optional argprompt)
1492 "Start an interactive Python interpreter in another window.
1493 This is like Shell mode, except that Python is running in the window
1494 instead of a shell. See the `Interactive Shell' and `Shell Mode'
1495 sections of the Emacs manual for details, especially for the key
1496 bindings active in the `*Python*' buffer.
1498 With optional \\[universal-argument], the user is prompted for the
1499 flags to pass to the Python interpreter. This has no effect when this
1500 command is used to switch to an existing process, only when a new
1501 process is started. If you use this, you will probably want to ensure
1502 that the current arguments are retained (they will be included in the
1503 prompt). This argument is ignored when this function is called
1504 programmatically, or when running in Emacs 19.34 or older.
1506 Note: You can toggle between using the CPython interpreter and the
1507 JPython interpreter by hitting \\[py-toggle-shells]. This toggles
1508 buffer local variables which control whether all your subshell
1509 interactions happen to the `*JPython*' or `*Python*' buffers (the
1510 latter is the name used for the CPython buffer).
1512 Warning: Don't use an interactive Python if you change sys.ps1 or
1513 sys.ps2 from their default values, or if you're running code that
1514 prints `>>> ' or `... ' at the start of a line. `python-mode' can't
1515 distinguish your output from Python's output, and assumes that `>>> '
1516 at the start of a line is a prompt from Python. Similarly, the Emacs
1517 Shell mode code assumes that both `>>> ' and `... ' at the start of a
1518 line are Python prompts. Bad things can happen if you fool either
1519 mode.
1521 Warning: If you do any editing *in* the process buffer *while* the
1522 buffer is accepting output from Python, do NOT attempt to `undo' the
1523 changes. Some of the output (nowhere near the parts you changed!) may
1524 be lost if you do. This appears to be an Emacs bug, an unfortunate
1525 interaction between undo and process filters; the same problem exists in
1526 non-Python process buffers using the default (Emacs-supplied) process
1527 filter."
1528 (interactive "P")
1529 ;; Set the default shell if not already set
1530 (when (null py-which-shell)
1531 (py-toggle-shells py-default-interpreter))
1532 (let ((args py-which-args))
1533 (when (and argprompt
1534 (interactive-p)
1535 (fboundp 'split-string))
1536 ;; TBD: Perhaps force "-i" in the final list?
1537 (setq args (split-string
1538 (read-string (concat py-which-bufname
1539 " arguments: ")
1540 (concat
1541 (mapconcat 'identity py-which-args " ") " ")
1542 ))))
1543 (switch-to-buffer-other-window
1544 (apply 'make-comint py-which-bufname py-which-shell nil args))
1545 (make-local-variable 'comint-prompt-regexp)
1546 (setq comint-prompt-regexp "^>>> \\|^[.][.][.] \\|^(pdb) ")
1547 (add-hook 'comint-output-filter-functions
1548 'py-comint-output-filter-function)
1549 ;; pdbtrack
1550 (add-hook 'comint-output-filter-functions 'py-pdbtrack-track-stack-file)
1551 (setq py-pdbtrack-do-tracking-p t)
1552 (set-syntax-table py-mode-syntax-table)
1553 (use-local-map py-shell-map)
1554 (run-hooks 'py-shell-hook)
1557 (defun py-clear-queue ()
1558 "Clear the queue of temporary files waiting to execute."
1559 (interactive)
1560 (let ((n (length py-file-queue)))
1561 (mapcar 'delete-file py-file-queue)
1562 (setq py-file-queue nil)
1563 (message "%d pending files de-queued." n)))
1566 (defun py-execute-region (start end &optional async)
1567 "Execute the region in a Python interpreter.
1569 The region is first copied into a temporary file (in the directory
1570 `py-temp-directory'). If there is no Python interpreter shell
1571 running, this file is executed synchronously using
1572 `shell-command-on-region'. If the program is long running, use
1573 \\[universal-argument] to run the command asynchronously in its own
1574 buffer.
1576 When this function is used programmatically, arguments START and END
1577 specify the region to execute, and optional third argument ASYNC, if
1578 non-nil, specifies to run the command asynchronously in its own
1579 buffer.
1581 If the Python interpreter shell is running, the region is execfile()'d
1582 in that shell. If you try to execute regions too quickly,
1583 `python-mode' will queue them up and execute them one at a time when
1584 it sees a `>>> ' prompt from Python. Each time this happens, the
1585 process buffer is popped into a window (if it's not already in some
1586 window) so you can see it, and a comment of the form
1588 \t## working on region in file <name>...
1590 is inserted at the end. See also the command `py-clear-queue'."
1591 (interactive "r\nP")
1592 ;; Skip ahead to the first non-blank line
1593 (let* ((proc (get-process py-which-bufname))
1594 (temp (if (memq 'broken-temp-names py-emacs-features)
1595 (let
1596 ((sn py-serial-number)
1597 (pid (and (fboundp 'emacs-pid) (emacs-pid))))
1598 (setq py-serial-number (1+ py-serial-number))
1599 (if pid
1600 (format "python-%d-%d" sn pid)
1601 (format "python-%d" sn)))
1602 (make-temp-name "python-")))
1603 (file (concat (expand-file-name temp py-temp-directory) ".py"))
1604 (cur (current-buffer))
1605 (buf (get-buffer-create file))
1606 shell)
1607 ;; Write the contents of the buffer, watching out for indented regions.
1608 (save-excursion
1609 (goto-char start)
1610 (beginning-of-line)
1611 (while (and (looking-at "\\s *$")
1612 (< (point) end))
1613 (forward-line 1))
1614 (setq start (point))
1615 (or (< start end)
1616 (error "Region is empty"))
1617 (let ((needs-if (/= (py-point 'bol) (py-point 'boi))))
1618 (set-buffer buf)
1619 (python-mode)
1620 (when needs-if
1621 (insert "if 1:\n"))
1622 (insert-buffer-substring cur start end)
1623 ;; Set the shell either to the #! line command, or to the
1624 ;; py-which-shell buffer local variable.
1625 (setq shell (or (py-choose-shell-by-shebang)
1626 (py-choose-shell-by-import)
1627 py-which-shell))))
1628 (cond
1629 ;; always run the code in its own asynchronous subprocess
1630 (async
1631 ;; User explicitly wants this to run in its own async subprocess
1632 (save-excursion
1633 (set-buffer buf)
1634 (write-region (point-min) (point-max) file nil 'nomsg))
1635 (let* ((buf (generate-new-buffer-name py-output-buffer))
1636 ;; TBD: a horrible hack, but why create new Custom variables?
1637 (arg (if (string-equal py-which-bufname "Python")
1638 "-u" "")))
1639 (start-process py-which-bufname buf shell arg file)
1640 (pop-to-buffer buf)
1641 (py-postprocess-output-buffer buf)
1642 ;; TBD: clean up the temporary file!
1644 ;; if the Python interpreter shell is running, queue it up for
1645 ;; execution there.
1646 (proc
1647 ;; use the existing python shell
1648 (save-excursion
1649 (set-buffer buf)
1650 (write-region (point-min) (point-max) file nil 'nomsg))
1651 (if (not py-file-queue)
1652 (py-execute-file proc file)
1653 (message "File %s queued for execution" file))
1654 (setq py-file-queue (append py-file-queue (list file)))
1655 (setq py-exception-buffer (cons file (current-buffer))))
1657 ;; TBD: a horrible hack, but why create new Custom variables?
1658 (let ((cmd (concat shell (if (string-equal py-which-bufname "JPython")
1659 " -" ""))))
1660 ;; otherwise either run it synchronously in a subprocess
1661 (save-excursion
1662 (set-buffer buf)
1663 (shell-command-on-region (point-min) (point-max)
1664 cmd py-output-buffer))
1665 ;; shell-command-on-region kills the output buffer if it never
1666 ;; existed and there's no output from the command
1667 (if (not (get-buffer py-output-buffer))
1668 (message "No output.")
1669 (setq py-exception-buffer (current-buffer))
1670 (let ((err-p (py-postprocess-output-buffer py-output-buffer)))
1671 (pop-to-buffer py-output-buffer)
1672 (if err-p
1673 (pop-to-buffer py-exception-buffer)))
1676 ;; Clean up after ourselves.
1677 (kill-buffer buf)))
1680 ;; Code execution commands
1681 (defun py-execute-buffer (&optional async)
1682 "Send the contents of the buffer to a Python interpreter.
1683 If the file local variable `py-master-file' is non-nil, execute the
1684 named file instead of the buffer's file.
1686 If there is a *Python* process buffer it is used. If a clipping
1687 restriction is in effect, only the accessible portion of the buffer is
1688 sent. A trailing newline will be supplied if needed.
1690 See the `\\[py-execute-region]' docs for an account of some
1691 subtleties, including the use of the optional ASYNC argument."
1692 (interactive "P")
1693 (if py-master-file
1694 (let* ((filename (expand-file-name py-master-file))
1695 (buffer (or (get-file-buffer filename)
1696 (find-file-noselect filename))))
1697 (set-buffer buffer)))
1698 (py-execute-region (point-min) (point-max) async))
1700 (defun py-execute-import-or-reload (&optional async)
1701 "Import the current buffer's file in a Python interpreter.
1703 If the file has already been imported, then do reload instead to get
1704 the latest version.
1706 If the file's name does not end in \".py\", then do execfile instead.
1708 If the current buffer is not visiting a file, do `py-execute-buffer'
1709 instead.
1711 If the file local variable `py-master-file' is non-nil, import or
1712 reload the named file instead of the buffer's file. The file may be
1713 saved based on the value of `py-execute-import-or-reload-save-p'.
1715 See the `\\[py-execute-region]' docs for an account of some
1716 subtleties, including the use of the optional ASYNC argument.
1718 This may be preferable to `\\[py-execute-buffer]' because:
1720 - Definitions stay in their module rather than appearing at top
1721 level, where they would clutter the global namespace and not affect
1722 uses of qualified names (MODULE.NAME).
1724 - The Python debugger gets line number information about the functions."
1725 (interactive "P")
1726 ;; Check file local variable py-master-file
1727 (if py-master-file
1728 (let* ((filename (expand-file-name py-master-file))
1729 (buffer (or (get-file-buffer filename)
1730 (find-file-noselect filename))))
1731 (set-buffer buffer)))
1732 (let ((file (buffer-file-name (current-buffer))))
1733 (if file
1734 (progn
1735 ;; Maybe save some buffers
1736 (save-some-buffers (not py-ask-about-save) nil)
1737 (py-execute-string
1738 (if (string-match "\\.py$" file)
1739 (let ((f (file-name-sans-extension
1740 (file-name-nondirectory file))))
1741 (format "if globals().has_key('%s'):\n reload(%s)\nelse:\n import %s\n"
1742 f f f))
1743 (format "execfile(r'%s')\n" file))
1744 async))
1745 ;; else
1746 (py-execute-buffer async))))
1749 (defun py-execute-def-or-class (&optional async)
1750 "Send the current function or class definition to a Python interpreter.
1752 If there is a *Python* process buffer it is used.
1754 See the `\\[py-execute-region]' docs for an account of some
1755 subtleties, including the use of the optional ASYNC argument."
1756 (interactive "P")
1757 (save-excursion
1758 (py-mark-def-or-class)
1759 ;; mark is before point
1760 (py-execute-region (mark) (point) async)))
1763 (defun py-execute-string (string &optional async)
1764 "Send the argument STRING to a Python interpreter.
1766 If there is a *Python* process buffer it is used.
1768 See the `\\[py-execute-region]' docs for an account of some
1769 subtleties, including the use of the optional ASYNC argument."
1770 (interactive "sExecute Python command: ")
1771 (save-excursion
1772 (set-buffer (get-buffer-create
1773 (generate-new-buffer-name " *Python Command*")))
1774 (insert string)
1775 (py-execute-region (point-min) (point-max) async)))
1779 (defun py-jump-to-exception (file line)
1780 "Jump to the Python code in FILE at LINE."
1781 (let ((buffer (cond ((string-equal file "<stdin>")
1782 (if (consp py-exception-buffer)
1783 (cdr py-exception-buffer)
1784 py-exception-buffer))
1785 ((and (consp py-exception-buffer)
1786 (string-equal file (car py-exception-buffer)))
1787 (cdr py-exception-buffer))
1788 ((py-safe (find-file-noselect file)))
1789 ;; could not figure out what file the exception
1790 ;; is pointing to, so prompt for it
1791 (t (find-file (read-file-name "Exception file: "
1793 file t))))))
1794 (pop-to-buffer buffer)
1795 ;; Force Python mode
1796 (if (not (eq major-mode 'python-mode))
1797 (python-mode))
1798 (goto-line line)
1799 (message "Jumping to exception in file %s on line %d" file line)))
1801 (defun py-mouseto-exception (event)
1802 "Jump to the code which caused the Python exception at EVENT.
1803 EVENT is usually a mouse click."
1804 (interactive "e")
1805 (cond
1806 ((fboundp 'event-point)
1807 ;; XEmacs
1808 (let* ((point (event-point event))
1809 (buffer (event-buffer event))
1810 (e (and point buffer (extent-at point buffer 'py-exc-info)))
1811 (info (and e (extent-property e 'py-exc-info))))
1812 (message "Event point: %d, info: %s" point info)
1813 (and info
1814 (py-jump-to-exception (car info) (cdr info)))
1816 ;; Emacs -- Please port this!
1819 (defun py-goto-exception ()
1820 "Go to the line indicated by the traceback."
1821 (interactive)
1822 (let (file line)
1823 (save-excursion
1824 (beginning-of-line)
1825 (if (looking-at py-traceback-line-re)
1826 (setq file (match-string 1)
1827 line (string-to-int (match-string 2)))))
1828 (if (not file)
1829 (error "Not on a traceback line"))
1830 (py-jump-to-exception file line)))
1832 (defun py-find-next-exception (start buffer searchdir errwhere)
1833 "Find the next Python exception and jump to the code that caused it.
1834 START is the buffer position in BUFFER from which to begin searching
1835 for an exception. SEARCHDIR is a function, either
1836 `re-search-backward' or `re-search-forward' indicating the direction
1837 to search. ERRWHERE is used in an error message if the limit (top or
1838 bottom) of the trackback stack is encountered."
1839 (let (file line)
1840 (save-excursion
1841 (set-buffer buffer)
1842 (goto-char (py-point start))
1843 (if (funcall searchdir py-traceback-line-re nil t)
1844 (setq file (match-string 1)
1845 line (string-to-int (match-string 2)))))
1846 (if (and file line)
1847 (py-jump-to-exception file line)
1848 (error "%s of traceback" errwhere))))
1850 (defun py-down-exception (&optional bottom)
1851 "Go to the next line down in the traceback.
1852 With \\[univeral-argument] (programmatically, optional argument
1853 BOTTOM), jump to the bottom (innermost) exception in the exception
1854 stack."
1855 (interactive "P")
1856 (let* ((proc (get-process "Python"))
1857 (buffer (if proc "*Python*" py-output-buffer)))
1858 (if bottom
1859 (py-find-next-exception 'eob buffer 're-search-backward "Bottom")
1860 (py-find-next-exception 'eol buffer 're-search-forward "Bottom"))))
1862 (defun py-up-exception (&optional top)
1863 "Go to the previous line up in the traceback.
1864 With \\[universal-argument] (programmatically, optional argument TOP)
1865 jump to the top (outermost) exception in the exception stack."
1866 (interactive "P")
1867 (let* ((proc (get-process "Python"))
1868 (buffer (if proc "*Python*" py-output-buffer)))
1869 (if top
1870 (py-find-next-exception 'bob buffer 're-search-forward "Top")
1871 (py-find-next-exception 'bol buffer 're-search-backward "Top"))))
1874 ;; Electric deletion
1875 (defun py-electric-backspace (arg)
1876 "Delete preceding character or levels of indentation.
1877 Deletion is performed by calling the function in `py-backspace-function'
1878 with a single argument (the number of characters to delete).
1880 If point is at the leftmost column, delete the preceding newline.
1882 Otherwise, if point is at the leftmost non-whitespace character of a
1883 line that is neither a continuation line nor a non-indenting comment
1884 line, or if point is at the end of a blank line, this command reduces
1885 the indentation to match that of the line that opened the current
1886 block of code. The line that opened the block is displayed in the
1887 echo area to help you keep track of where you are. With
1888 \\[universal-argument] dedents that many blocks (but not past column
1889 zero).
1891 Otherwise the preceding character is deleted, converting a tab to
1892 spaces if needed so that only a single column position is deleted.
1893 \\[universal-argument] specifies how many characters to delete;
1894 default is 1.
1896 When used programmatically, argument ARG specifies the number of
1897 blocks to dedent, or the number of characters to delete, as indicated
1898 above."
1899 (interactive "*p")
1900 (if (or (/= (current-indentation) (current-column))
1901 (bolp)
1902 (py-continuation-line-p)
1903 ; (not py-honor-comment-indentation)
1904 ; (looking-at "#[^ \t\n]") ; non-indenting #
1906 (funcall py-backspace-function arg)
1907 ;; else indent the same as the colon line that opened the block
1908 ;; force non-blank so py-goto-block-up doesn't ignore it
1909 (insert-char ?* 1)
1910 (backward-char)
1911 (let ((base-indent 0) ; indentation of base line
1912 (base-text "") ; and text of base line
1913 (base-found-p nil))
1914 (save-excursion
1915 (while (< 0 arg)
1916 (condition-case nil ; in case no enclosing block
1917 (progn
1918 (py-goto-block-up 'no-mark)
1919 (setq base-indent (current-indentation)
1920 base-text (py-suck-up-leading-text)
1921 base-found-p t))
1922 (error nil))
1923 (setq arg (1- arg))))
1924 (delete-char 1) ; toss the dummy character
1925 (delete-horizontal-space)
1926 (indent-to base-indent)
1927 (if base-found-p
1928 (message "Closes block: %s" base-text)))))
1931 (defun py-electric-delete (arg)
1932 "Delete preceding or following character or levels of whitespace.
1934 The behavior of this function depends on the variable
1935 `delete-key-deletes-forward'. If this variable is nil (or does not
1936 exist, as in older Emacsen and non-XEmacs versions), then this
1937 function behaves identically to \\[c-electric-backspace].
1939 If `delete-key-deletes-forward' is non-nil and is supported in your
1940 Emacs, then deletion occurs in the forward direction, by calling the
1941 function in `py-delete-function'.
1943 \\[universal-argument] (programmatically, argument ARG) specifies the
1944 number of characters to delete (default is 1)."
1945 (interactive "*p")
1946 (if (or (and (fboundp 'delete-forward-p) ;XEmacs 21
1947 (delete-forward-p))
1948 (and (boundp 'delete-key-deletes-forward) ;XEmacs 20
1949 delete-key-deletes-forward))
1950 (funcall py-delete-function arg)
1951 (py-electric-backspace arg)))
1953 ;; required for pending-del and delsel modes
1954 (put 'py-electric-backspace 'delete-selection 'supersede) ;delsel
1955 (put 'py-electric-backspace 'pending-delete 'supersede) ;pending-del
1956 (put 'py-electric-delete 'delete-selection 'supersede) ;delsel
1957 (put 'py-electric-delete 'pending-delete 'supersede) ;pending-del
1961 (defun py-indent-line (&optional arg)
1962 "Fix the indentation of the current line according to Python rules.
1963 With \\[universal-argument] (programmatically, the optional argument
1964 ARG non-nil), ignore dedenting rules for block closing statements
1965 (e.g. return, raise, break, continue, pass)
1967 This function is normally bound to `indent-line-function' so
1968 \\[indent-for-tab-command] will call it."
1969 (interactive "P")
1970 (let* ((ci (current-indentation))
1971 (move-to-indentation-p (<= (current-column) ci))
1972 (need (py-compute-indentation (not arg))))
1973 ;; see if we need to dedent
1974 (if (py-outdent-p)
1975 (setq need (- need py-indent-offset)))
1976 (if (/= ci need)
1977 (save-excursion
1978 (beginning-of-line)
1979 (delete-horizontal-space)
1980 (indent-to need)))
1981 (if move-to-indentation-p (back-to-indentation))))
1983 (defun py-newline-and-indent ()
1984 "Strives to act like the Emacs `newline-and-indent'.
1985 This is just `strives to' because correct indentation can't be computed
1986 from scratch for Python code. In general, deletes the whitespace before
1987 point, inserts a newline, and takes an educated guess as to how you want
1988 the new line indented."
1989 (interactive)
1990 (let ((ci (current-indentation)))
1991 (if (< ci (current-column)) ; if point beyond indentation
1992 (newline-and-indent)
1993 ;; else try to act like newline-and-indent "normally" acts
1994 (beginning-of-line)
1995 (insert-char ?\n 1)
1996 (move-to-column ci))))
1998 (defun py-compute-indentation (honor-block-close-p)
1999 "Compute Python indentation.
2000 When HONOR-BLOCK-CLOSE-P is non-nil, statements such as `return',
2001 `raise', `break', `continue', and `pass' force one level of
2002 dedenting."
2003 (save-excursion
2004 (beginning-of-line)
2005 (let* ((bod (py-point 'bod))
2006 (pps (parse-partial-sexp bod (point)))
2007 (boipps (parse-partial-sexp bod (py-point 'boi)))
2008 placeholder)
2009 (cond
2010 ;; are we inside a multi-line string or comment?
2011 ((or (and (nth 3 pps) (nth 3 boipps))
2012 (and (nth 4 pps) (nth 4 boipps)))
2013 (save-excursion
2014 (if (not py-align-multiline-strings-p) 0
2015 ;; skip back over blank & non-indenting comment lines
2016 ;; note: will skip a blank or non-indenting comment line
2017 ;; that happens to be a continuation line too
2018 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#[ \t\n]\\)" nil 'move)
2019 (back-to-indentation)
2020 (current-column))))
2021 ;; are we on a continuation line?
2022 ((py-continuation-line-p)
2023 (let ((startpos (point))
2024 (open-bracket-pos (py-nesting-level))
2025 endpos searching found state)
2026 (if open-bracket-pos
2027 (progn
2028 ;; align with first item in list; else a normal
2029 ;; indent beyond the line with the open bracket
2030 (goto-char (1+ open-bracket-pos)) ; just beyond bracket
2031 ;; is the first list item on the same line?
2032 (skip-chars-forward " \t")
2033 (if (null (memq (following-char) '(?\n ?# ?\\)))
2034 ; yes, so line up with it
2035 (current-column)
2036 ;; first list item on another line, or doesn't exist yet
2037 (forward-line 1)
2038 (while (and (< (point) startpos)
2039 (looking-at "[ \t]*[#\n\\\\]")) ; skip noise
2040 (forward-line 1))
2041 (if (and (< (point) startpos)
2042 (/= startpos
2043 (save-excursion
2044 (goto-char (1+ open-bracket-pos))
2045 (forward-comment (point-max))
2046 (point))))
2047 ;; again mimic the first list item
2048 (current-indentation)
2049 ;; else they're about to enter the first item
2050 (goto-char open-bracket-pos)
2051 (setq placeholder (point))
2052 (py-goto-initial-line)
2053 (py-goto-beginning-of-tqs
2054 (save-excursion (nth 3 (parse-partial-sexp
2055 placeholder (point)))))
2056 (+ (current-indentation) py-indent-offset))))
2058 ;; else on backslash continuation line
2059 (forward-line -1)
2060 (if (py-continuation-line-p) ; on at least 3rd line in block
2061 (current-indentation) ; so just continue the pattern
2062 ;; else started on 2nd line in block, so indent more.
2063 ;; if base line is an assignment with a start on a RHS,
2064 ;; indent to 2 beyond the leftmost "="; else skip first
2065 ;; chunk of non-whitespace characters on base line, + 1 more
2066 ;; column
2067 (end-of-line)
2068 (setq endpos (point)
2069 searching t)
2070 (back-to-indentation)
2071 (setq startpos (point))
2072 ;; look at all "=" from left to right, stopping at first
2073 ;; one not nested in a list or string
2074 (while searching
2075 (skip-chars-forward "^=" endpos)
2076 (if (= (point) endpos)
2077 (setq searching nil)
2078 (forward-char 1)
2079 (setq state (parse-partial-sexp startpos (point)))
2080 (if (and (zerop (car state)) ; not in a bracket
2081 (null (nth 3 state))) ; & not in a string
2082 (progn
2083 (setq searching nil) ; done searching in any case
2084 (setq found
2085 (not (or
2086 (eq (following-char) ?=)
2087 (memq (char-after (- (point) 2))
2088 '(?< ?> ?!)))))))))
2089 (if (or (not found) ; not an assignment
2090 (looking-at "[ \t]*\\\\")) ; <=><spaces><backslash>
2091 (progn
2092 (goto-char startpos)
2093 (skip-chars-forward "^ \t\n")))
2094 ;; if this is a continuation for a block opening
2095 ;; statement, add some extra offset.
2096 (+ (current-column) (if (py-statement-opens-block-p)
2097 py-continuation-offset 0)
2099 ))))
2101 ;; not on a continuation line
2102 ((bobp) (current-indentation))
2104 ;; Dfn: "Indenting comment line". A line containing only a
2105 ;; comment, but which is treated like a statement for
2106 ;; indentation calculation purposes. Such lines are only
2107 ;; treated specially by the mode; they are not treated
2108 ;; specially by the Python interpreter.
2110 ;; The rules for indenting comment lines are a line where:
2111 ;; - the first non-whitespace character is `#', and
2112 ;; - the character following the `#' is whitespace, and
2113 ;; - the line is dedented with respect to (i.e. to the left
2114 ;; of) the indentation of the preceding non-blank line.
2116 ;; The first non-blank line following an indenting comment
2117 ;; line is given the same amount of indentation as the
2118 ;; indenting comment line.
2120 ;; All other comment-only lines are ignored for indentation
2121 ;; purposes.
2123 ;; Are we looking at a comment-only line which is *not* an
2124 ;; indenting comment line? If so, we assume that it's been
2125 ;; placed at the desired indentation, so leave it alone.
2126 ;; Indenting comment lines are aligned as statements down
2127 ;; below.
2128 ((and (looking-at "[ \t]*#[^ \t\n]")
2129 ;; NOTE: this test will not be performed in older Emacsen
2130 (fboundp 'forward-comment)
2131 (<= (current-indentation)
2132 (save-excursion
2133 (forward-comment (- (point-max)))
2134 (current-indentation))))
2135 (current-indentation))
2137 ;; else indentation based on that of the statement that
2138 ;; precedes us; use the first line of that statement to
2139 ;; establish the base, in case the user forced a non-std
2140 ;; indentation for the continuation lines (if any)
2142 ;; skip back over blank & non-indenting comment lines note:
2143 ;; will skip a blank or non-indenting comment line that
2144 ;; happens to be a continuation line too. use fast Emacs 19
2145 ;; function if it's there.
2146 (if (and (eq py-honor-comment-indentation nil)
2147 (fboundp 'forward-comment))
2148 (forward-comment (- (point-max)))
2149 (let ((prefix-re (concat py-block-comment-prefix "[ \t]*"))
2150 done)
2151 (while (not done)
2152 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#\\)" nil 'move)
2153 (setq done (or (bobp)
2154 (and (eq py-honor-comment-indentation t)
2155 (save-excursion
2156 (back-to-indentation)
2157 (not (looking-at prefix-re))
2159 (and (not (eq py-honor-comment-indentation t))
2160 (save-excursion
2161 (back-to-indentation)
2162 (and (not (looking-at prefix-re))
2163 (or (looking-at "[^#]")
2164 (not (zerop (current-column)))
2169 ;; if we landed inside a string, go to the beginning of that
2170 ;; string. this handles triple quoted, multi-line spanning
2171 ;; strings.
2172 (py-goto-beginning-of-tqs (nth 3 (parse-partial-sexp bod (point))))
2173 ;; now skip backward over continued lines
2174 (setq placeholder (point))
2175 (py-goto-initial-line)
2176 ;; we may *now* have landed in a TQS, so find the beginning of
2177 ;; this string.
2178 (py-goto-beginning-of-tqs
2179 (save-excursion (nth 3 (parse-partial-sexp
2180 placeholder (point)))))
2181 (+ (current-indentation)
2182 (if (py-statement-opens-block-p)
2183 py-indent-offset
2184 (if (and honor-block-close-p (py-statement-closes-block-p))
2185 (- py-indent-offset)
2186 0)))
2187 )))))
2189 (defun py-guess-indent-offset (&optional global)
2190 "Guess a good value for, and change, `py-indent-offset'.
2192 By default, make a buffer-local copy of `py-indent-offset' with the
2193 new value, so that other Python buffers are not affected. With
2194 \\[universal-argument] (programmatically, optional argument GLOBAL),
2195 change the global value of `py-indent-offset'. This affects all
2196 Python buffers (that don't have their own buffer-local copy), both
2197 those currently existing and those created later in the Emacs session.
2199 Some people use a different value for `py-indent-offset' than you use.
2200 There's no excuse for such foolishness, but sometimes you have to deal
2201 with their ugly code anyway. This function examines the file and sets
2202 `py-indent-offset' to what it thinks it was when they created the
2203 mess.
2205 Specifically, it searches forward from the statement containing point,
2206 looking for a line that opens a block of code. `py-indent-offset' is
2207 set to the difference in indentation between that line and the Python
2208 statement following it. If the search doesn't succeed going forward,
2209 it's tried again going backward."
2210 (interactive "P") ; raw prefix arg
2211 (let (new-value
2212 (start (point))
2213 (restart (point))
2214 (found nil)
2215 colon-indent)
2216 (py-goto-initial-line)
2217 (while (not (or found (eobp)))
2218 (when (and (re-search-forward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2219 (not (py-in-literal restart)))
2220 (setq restart (point))
2221 (py-goto-initial-line)
2222 (if (py-statement-opens-block-p)
2223 (setq found t)
2224 (goto-char restart))))
2225 (unless found
2226 (goto-char start)
2227 (py-goto-initial-line)
2228 (while (not (or found (bobp)))
2229 (setq found (and
2230 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2231 (or (py-goto-initial-line) t) ; always true -- side effect
2232 (py-statement-opens-block-p)))))
2233 (setq colon-indent (current-indentation)
2234 found (and found (zerop (py-next-statement 1)))
2235 new-value (- (current-indentation) colon-indent))
2236 (goto-char start)
2237 (if (not found)
2238 (error "Sorry, couldn't guess a value for py-indent-offset")
2239 (funcall (if global 'kill-local-variable 'make-local-variable)
2240 'py-indent-offset)
2241 (setq py-indent-offset new-value)
2242 (or noninteractive
2243 (message "%s value of py-indent-offset set to %d"
2244 (if global "Global" "Local")
2245 py-indent-offset)))
2248 (defun py-comment-indent-function ()
2249 "Python version of `comment-indent-function'."
2250 ;; This is required when filladapt is turned off. Without it, when
2251 ;; filladapt is not used, comments which start in column zero
2252 ;; cascade one character to the right
2253 (save-excursion
2254 (beginning-of-line)
2255 (let ((eol (py-point 'eol)))
2256 (and comment-start-skip
2257 (re-search-forward comment-start-skip eol t)
2258 (setq eol (match-beginning 0)))
2259 (goto-char eol)
2260 (skip-chars-backward " \t")
2261 (max comment-column (+ (current-column) (if (bolp) 0 1)))
2264 (defun py-narrow-to-defun (&optional class)
2265 "Make text outside current defun invisible.
2266 The defun visible is the one that contains point or follows point.
2267 Optional CLASS is passed directly to `py-beginning-of-def-or-class'."
2268 (interactive "P")
2269 (save-excursion
2270 (widen)
2271 (py-end-of-def-or-class class)
2272 (let ((end (point)))
2273 (py-beginning-of-def-or-class class)
2274 (narrow-to-region (point) end))))
2277 (defun py-shift-region (start end count)
2278 "Indent lines from START to END by COUNT spaces."
2279 (save-excursion
2280 (goto-char end)
2281 (beginning-of-line)
2282 (setq end (point))
2283 (goto-char start)
2284 (beginning-of-line)
2285 (setq start (point))
2286 (indent-rigidly start end count)))
2288 (defun py-shift-region-left (start end &optional count)
2289 "Shift region of Python code to the left.
2290 The lines from the line containing the start of the current region up
2291 to (but not including) the line containing the end of the region are
2292 shifted to the left, by `py-indent-offset' columns.
2294 If a prefix argument is given, the region is instead shifted by that
2295 many columns. With no active region, dedent only the current line.
2296 You cannot dedent the region if any line is already at column zero."
2297 (interactive
2298 (let ((p (point))
2299 (m (mark))
2300 (arg current-prefix-arg))
2301 (if m
2302 (list (min p m) (max p m) arg)
2303 (list p (save-excursion (forward-line 1) (point)) arg))))
2304 ;; if any line is at column zero, don't shift the region
2305 (save-excursion
2306 (goto-char start)
2307 (while (< (point) end)
2308 (back-to-indentation)
2309 (if (and (zerop (current-column))
2310 (not (looking-at "\\s *$")))
2311 (error "Region is at left edge"))
2312 (forward-line 1)))
2313 (py-shift-region start end (- (prefix-numeric-value
2314 (or count py-indent-offset))))
2315 (py-keep-region-active))
2317 (defun py-shift-region-right (start end &optional count)
2318 "Shift region of Python code to the right.
2319 The lines from the line containing the start of the current region up
2320 to (but not including) the line containing the end of the region are
2321 shifted to the right, by `py-indent-offset' columns.
2323 If a prefix argument is given, the region is instead shifted by that
2324 many columns. With no active region, indent only the current line."
2325 (interactive
2326 (let ((p (point))
2327 (m (mark))
2328 (arg current-prefix-arg))
2329 (if m
2330 (list (min p m) (max p m) arg)
2331 (list p (save-excursion (forward-line 1) (point)) arg))))
2332 (py-shift-region start end (prefix-numeric-value
2333 (or count py-indent-offset)))
2334 (py-keep-region-active))
2336 (defun py-indent-region (start end &optional indent-offset)
2337 "Reindent a region of Python code.
2339 The lines from the line containing the start of the current region up
2340 to (but not including) the line containing the end of the region are
2341 reindented. If the first line of the region has a non-whitespace
2342 character in the first column, the first line is left alone and the
2343 rest of the region is reindented with respect to it. Else the entire
2344 region is reindented with respect to the (closest code or indenting
2345 comment) statement immediately preceding the region.
2347 This is useful when code blocks are moved or yanked, when enclosing
2348 control structures are introduced or removed, or to reformat code
2349 using a new value for the indentation offset.
2351 If a numeric prefix argument is given, it will be used as the value of
2352 the indentation offset. Else the value of `py-indent-offset' will be
2353 used.
2355 Warning: The region must be consistently indented before this function
2356 is called! This function does not compute proper indentation from
2357 scratch (that's impossible in Python), it merely adjusts the existing
2358 indentation to be correct in context.
2360 Warning: This function really has no idea what to do with
2361 non-indenting comment lines, and shifts them as if they were indenting
2362 comment lines. Fixing this appears to require telepathy.
2364 Special cases: whitespace is deleted from blank lines; continuation
2365 lines are shifted by the same amount their initial line was shifted,
2366 in order to preserve their relative indentation with respect to their
2367 initial line; and comment lines beginning in column 1 are ignored."
2368 (interactive "*r\nP") ; region; raw prefix arg
2369 (save-excursion
2370 (goto-char end) (beginning-of-line) (setq end (point-marker))
2371 (goto-char start) (beginning-of-line)
2372 (let ((py-indent-offset (prefix-numeric-value
2373 (or indent-offset py-indent-offset)))
2374 (indents '(-1)) ; stack of active indent levels
2375 (target-column 0) ; column to which to indent
2376 (base-shifted-by 0) ; amount last base line was shifted
2377 (indent-base (if (looking-at "[ \t\n]")
2378 (py-compute-indentation t)
2381 (while (< (point) end)
2382 (setq ci (current-indentation))
2383 ;; figure out appropriate target column
2384 (cond
2385 ((or (eq (following-char) ?#) ; comment in column 1
2386 (looking-at "[ \t]*$")) ; entirely blank
2387 (setq target-column 0))
2388 ((py-continuation-line-p) ; shift relative to base line
2389 (setq target-column (+ ci base-shifted-by)))
2390 (t ; new base line
2391 (if (> ci (car indents)) ; going deeper; push it
2392 (setq indents (cons ci indents))
2393 ;; else we should have seen this indent before
2394 (setq indents (memq ci indents)) ; pop deeper indents
2395 (if (null indents)
2396 (error "Bad indentation in region, at line %d"
2397 (save-restriction
2398 (widen)
2399 (1+ (count-lines 1 (point)))))))
2400 (setq target-column (+ indent-base
2401 (* py-indent-offset
2402 (- (length indents) 2))))
2403 (setq base-shifted-by (- target-column ci))))
2404 ;; shift as needed
2405 (if (/= ci target-column)
2406 (progn
2407 (delete-horizontal-space)
2408 (indent-to target-column)))
2409 (forward-line 1))))
2410 (set-marker end nil))
2412 (defun py-comment-region (beg end &optional arg)
2413 "Like `comment-region' but uses double hash (`#') comment starter."
2414 (interactive "r\nP")
2415 (let ((comment-start py-block-comment-prefix))
2416 (comment-region beg end arg)))
2419 ;; Functions for moving point
2420 (defun py-previous-statement (count)
2421 "Go to the start of the COUNTth preceding Python statement.
2422 By default, goes to the previous statement. If there is no such
2423 statement, goes to the first statement. Return count of statements
2424 left to move. `Statements' do not include blank, comment, or
2425 continuation lines."
2426 (interactive "p") ; numeric prefix arg
2427 (if (< count 0) (py-next-statement (- count))
2428 (py-goto-initial-line)
2429 (let (start)
2430 (while (and
2431 (setq start (point)) ; always true -- side effect
2432 (> count 0)
2433 (zerop (forward-line -1))
2434 (py-goto-statement-at-or-above))
2435 (setq count (1- count)))
2436 (if (> count 0) (goto-char start)))
2437 count))
2439 (defun py-next-statement (count)
2440 "Go to the start of next Python statement.
2441 If the statement at point is the i'th Python statement, goes to the
2442 start of statement i+COUNT. If there is no such statement, goes to the
2443 last statement. Returns count of statements left to move. `Statements'
2444 do not include blank, comment, or continuation lines."
2445 (interactive "p") ; numeric prefix arg
2446 (if (< count 0) (py-previous-statement (- count))
2447 (beginning-of-line)
2448 (let (start)
2449 (while (and
2450 (setq start (point)) ; always true -- side effect
2451 (> count 0)
2452 (py-goto-statement-below))
2453 (setq count (1- count)))
2454 (if (> count 0) (goto-char start)))
2455 count))
2457 (defun py-goto-block-up (&optional nomark)
2458 "Move up to start of current block.
2459 Go to the statement that starts the smallest enclosing block; roughly
2460 speaking, this will be the closest preceding statement that ends with a
2461 colon and is indented less than the statement you started on. If
2462 successful, also sets the mark to the starting point.
2464 `\\[py-mark-block]' can be used afterward to mark the whole code
2465 block, if desired.
2467 If called from a program, the mark will not be set if optional argument
2468 NOMARK is not nil."
2469 (interactive)
2470 (let ((start (point))
2471 (found nil)
2472 initial-indent)
2473 (py-goto-initial-line)
2474 ;; if on blank or non-indenting comment line, use the preceding stmt
2475 (if (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
2476 (progn
2477 (py-goto-statement-at-or-above)
2478 (setq found (py-statement-opens-block-p))))
2479 ;; search back for colon line indented less
2480 (setq initial-indent (current-indentation))
2481 (if (zerop initial-indent)
2482 ;; force fast exit
2483 (goto-char (point-min)))
2484 (while (not (or found (bobp)))
2485 (setq found
2486 (and
2487 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2488 (or (py-goto-initial-line) t) ; always true -- side effect
2489 (< (current-indentation) initial-indent)
2490 (py-statement-opens-block-p))))
2491 (if found
2492 (progn
2493 (or nomark (push-mark start))
2494 (back-to-indentation))
2495 (goto-char start)
2496 (error "Enclosing block not found"))))
2498 (defun py-beginning-of-def-or-class (&optional class count)
2499 "Move point to start of `def' or `class'.
2501 Searches back for the closest preceding `def'. If you supply a prefix
2502 arg, looks for a `class' instead. The docs below assume the `def'
2503 case; just substitute `class' for `def' for the other case.
2504 Programmatically, if CLASS is `either', then moves to either `class'
2505 or `def'.
2507 When second optional argument is given programmatically, move to the
2508 COUNTth start of `def'.
2510 If point is in a `def' statement already, and after the `d', simply
2511 moves point to the start of the statement.
2513 Otherwise (i.e. when point is not in a `def' statement, or at or
2514 before the `d' of a `def' statement), searches for the closest
2515 preceding `def' statement, and leaves point at its start. If no such
2516 statement can be found, leaves point at the start of the buffer.
2518 Returns t iff a `def' statement is found by these rules.
2520 Note that doing this command repeatedly will take you closer to the
2521 start of the buffer each time.
2523 To mark the current `def', see `\\[py-mark-def-or-class]'."
2524 (interactive "P") ; raw prefix arg
2525 (setq count (or count 1))
2526 (let ((at-or-before-p (<= (current-column) (current-indentation)))
2527 (start-of-line (goto-char (py-point 'bol)))
2528 (start-of-stmt (goto-char (py-point 'bos)))
2529 (start-re (cond ((eq class 'either) "^[ \t]*\\(class\\|def\\)\\>")
2530 (class "^[ \t]*class\\>")
2531 (t "^[ \t]*def\\>")))
2533 ;; searching backward
2534 (if (and (< 0 count)
2535 (or (/= start-of-stmt start-of-line)
2536 (not at-or-before-p)))
2537 (end-of-line))
2538 ;; search forward
2539 (if (and (> 0 count)
2540 (zerop (current-column))
2541 (looking-at start-re))
2542 (end-of-line))
2543 (if (re-search-backward start-re nil 'move count)
2544 (goto-char (match-beginning 0)))))
2546 ;; Backwards compatibility
2547 (defalias 'beginning-of-python-def-or-class 'py-beginning-of-def-or-class)
2549 (defun py-end-of-def-or-class (&optional class count)
2550 "Move point beyond end of `def' or `class' body.
2552 By default, looks for an appropriate `def'. If you supply a prefix
2553 arg, looks for a `class' instead. The docs below assume the `def'
2554 case; just substitute `class' for `def' for the other case.
2555 Programmatically, if CLASS is `either', then moves to either `class'
2556 or `def'.
2558 When second optional argument is given programmatically, move to the
2559 COUNTth end of `def'.
2561 If point is in a `def' statement already, this is the `def' we use.
2563 Else, if the `def' found by `\\[py-beginning-of-def-or-class]'
2564 contains the statement you started on, that's the `def' we use.
2566 Otherwise, we search forward for the closest following `def', and use that.
2568 If a `def' can be found by these rules, point is moved to the start of
2569 the line immediately following the `def' block, and the position of the
2570 start of the `def' is returned.
2572 Else point is moved to the end of the buffer, and nil is returned.
2574 Note that doing this command repeatedly will take you closer to the
2575 end of the buffer each time.
2577 To mark the current `def', see `\\[py-mark-def-or-class]'."
2578 (interactive "P") ; raw prefix arg
2579 (if (and count (/= count 1))
2580 (py-beginning-of-def-or-class (- 1 count)))
2581 (let ((start (progn (py-goto-initial-line) (point)))
2582 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2583 (class "class")
2584 (t "def")))
2585 (state 'not-found))
2586 ;; move point to start of appropriate def/class
2587 (if (looking-at (concat "[ \t]*" which "\\>")) ; already on one
2588 (setq state 'at-beginning)
2589 ;; else see if py-beginning-of-def-or-class hits container
2590 (if (and (py-beginning-of-def-or-class class)
2591 (progn (py-goto-beyond-block)
2592 (> (point) start)))
2593 (setq state 'at-end)
2594 ;; else search forward
2595 (goto-char start)
2596 (if (re-search-forward (concat "^[ \t]*" which "\\>") nil 'move)
2597 (progn (setq state 'at-beginning)
2598 (beginning-of-line)))))
2599 (cond
2600 ((eq state 'at-beginning) (py-goto-beyond-block) t)
2601 ((eq state 'at-end) t)
2602 ((eq state 'not-found) nil)
2603 (t (error "Internal error in `py-end-of-def-or-class'")))))
2605 ;; Backwards compabitility
2606 (defalias 'end-of-python-def-or-class 'py-end-of-def-or-class)
2609 ;; Functions for marking regions
2610 (defun py-mark-block (&optional extend just-move)
2611 "Mark following block of lines. With prefix arg, mark structure.
2612 Easier to use than explain. It sets the region to an `interesting'
2613 block of succeeding lines. If point is on a blank line, it goes down to
2614 the next non-blank line. That will be the start of the region. The end
2615 of the region depends on the kind of line at the start:
2617 - If a comment, the region will include all succeeding comment lines up
2618 to (but not including) the next non-comment line (if any).
2620 - Else if a prefix arg is given, and the line begins one of these
2621 structures:
2623 if elif else try except finally for while def class
2625 the region will be set to the body of the structure, including
2626 following blocks that `belong' to it, but excluding trailing blank
2627 and comment lines. E.g., if on a `try' statement, the `try' block
2628 and all (if any) of the following `except' and `finally' blocks
2629 that belong to the `try' structure will be in the region. Ditto
2630 for if/elif/else, for/else and while/else structures, and (a bit
2631 degenerate, since they're always one-block structures) def and
2632 class blocks.
2634 - Else if no prefix argument is given, and the line begins a Python
2635 block (see list above), and the block is not a `one-liner' (i.e.,
2636 the statement ends with a colon, not with code), the region will
2637 include all succeeding lines up to (but not including) the next
2638 code statement (if any) that's indented no more than the starting
2639 line, except that trailing blank and comment lines are excluded.
2640 E.g., if the starting line begins a multi-statement `def'
2641 structure, the region will be set to the full function definition,
2642 but without any trailing `noise' lines.
2644 - Else the region will include all succeeding lines up to (but not
2645 including) the next blank line, or code or indenting-comment line
2646 indented strictly less than the starting line. Trailing indenting
2647 comment lines are included in this case, but not trailing blank
2648 lines.
2650 A msg identifying the location of the mark is displayed in the echo
2651 area; or do `\\[exchange-point-and-mark]' to flip down to the end.
2653 If called from a program, optional argument EXTEND plays the role of
2654 the prefix arg, and if optional argument JUST-MOVE is not nil, just
2655 moves to the end of the block (& does not set mark or display a msg)."
2656 (interactive "P") ; raw prefix arg
2657 (py-goto-initial-line)
2658 ;; skip over blank lines
2659 (while (and
2660 (looking-at "[ \t]*$") ; while blank line
2661 (not (eobp))) ; & somewhere to go
2662 (forward-line 1))
2663 (if (eobp)
2664 (error "Hit end of buffer without finding a non-blank stmt"))
2665 (let ((initial-pos (point))
2666 (initial-indent (current-indentation))
2667 last-pos ; position of last stmt in region
2668 (followers
2669 '((if elif else) (elif elif else) (else)
2670 (try except finally) (except except) (finally)
2671 (for else) (while else)
2672 (def) (class) ) )
2673 first-symbol next-symbol)
2675 (cond
2676 ;; if comment line, suck up the following comment lines
2677 ((looking-at "[ \t]*#")
2678 (re-search-forward "^[ \t]*[^ \t#]" nil 'move) ; look for non-comment
2679 (re-search-backward "^[ \t]*#") ; and back to last comment in block
2680 (setq last-pos (point)))
2682 ;; else if line is a block line and EXTEND given, suck up
2683 ;; the whole structure
2684 ((and extend
2685 (setq first-symbol (py-suck-up-first-keyword) )
2686 (assq first-symbol followers))
2687 (while (and
2688 (or (py-goto-beyond-block) t) ; side effect
2689 (forward-line -1) ; side effect
2690 (setq last-pos (point)) ; side effect
2691 (py-goto-statement-below)
2692 (= (current-indentation) initial-indent)
2693 (setq next-symbol (py-suck-up-first-keyword))
2694 (memq next-symbol (cdr (assq first-symbol followers))))
2695 (setq first-symbol next-symbol)))
2697 ;; else if line *opens* a block, search for next stmt indented <=
2698 ((py-statement-opens-block-p)
2699 (while (and
2700 (setq last-pos (point)) ; always true -- side effect
2701 (py-goto-statement-below)
2702 (> (current-indentation) initial-indent)
2705 ;; else plain code line; stop at next blank line, or stmt or
2706 ;; indenting comment line indented <
2708 (while (and
2709 (setq last-pos (point)) ; always true -- side effect
2710 (or (py-goto-beyond-final-line) t)
2711 (not (looking-at "[ \t]*$")) ; stop at blank line
2713 (>= (current-indentation) initial-indent)
2714 (looking-at "[ \t]*#[^ \t\n]"))) ; ignore non-indenting #
2715 nil)))
2717 ;; skip to end of last stmt
2718 (goto-char last-pos)
2719 (py-goto-beyond-final-line)
2721 ;; set mark & display
2722 (if just-move
2723 () ; just return
2724 (push-mark (point) 'no-msg)
2725 (forward-line -1)
2726 (message "Mark set after: %s" (py-suck-up-leading-text))
2727 (goto-char initial-pos))))
2729 (defun py-mark-def-or-class (&optional class)
2730 "Set region to body of def (or class, with prefix arg) enclosing point.
2731 Pushes the current mark, then point, on the mark ring (all language
2732 modes do this, but although it's handy it's never documented ...).
2734 In most Emacs language modes, this function bears at least a
2735 hallucinogenic resemblance to `\\[py-end-of-def-or-class]' and
2736 `\\[py-beginning-of-def-or-class]'.
2738 And in earlier versions of Python mode, all 3 were tightly connected.
2739 Turned out that was more confusing than useful: the `goto start' and
2740 `goto end' commands are usually used to search through a file, and
2741 people expect them to act a lot like `search backward' and `search
2742 forward' string-search commands. But because Python `def' and `class'
2743 can nest to arbitrary levels, finding the smallest def containing
2744 point cannot be done via a simple backward search: the def containing
2745 point may not be the closest preceding def, or even the closest
2746 preceding def that's indented less. The fancy algorithm required is
2747 appropriate for the usual uses of this `mark' command, but not for the
2748 `goto' variations.
2750 So the def marked by this command may not be the one either of the
2751 `goto' commands find: If point is on a blank or non-indenting comment
2752 line, moves back to start of the closest preceding code statement or
2753 indenting comment line. If this is a `def' statement, that's the def
2754 we use. Else searches for the smallest enclosing `def' block and uses
2755 that. Else signals an error.
2757 When an enclosing def is found: The mark is left immediately beyond
2758 the last line of the def block. Point is left at the start of the
2759 def, except that: if the def is preceded by a number of comment lines
2760 followed by (at most) one optional blank line, point is left at the
2761 start of the comments; else if the def is preceded by a blank line,
2762 point is left at its start.
2764 The intent is to mark the containing def/class and its associated
2765 documentation, to make moving and duplicating functions and classes
2766 pleasant."
2767 (interactive "P") ; raw prefix arg
2768 (let ((start (point))
2769 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2770 (class "class")
2771 (t "def"))))
2772 (push-mark start)
2773 (if (not (py-go-up-tree-to-keyword which))
2774 (progn (goto-char start)
2775 (error "Enclosing %s not found"
2776 (if (eq class 'either)
2777 "def or class"
2778 which)))
2779 ;; else enclosing def/class found
2780 (setq start (point))
2781 (py-goto-beyond-block)
2782 (push-mark (point))
2783 (goto-char start)
2784 (if (zerop (forward-line -1)) ; if there is a preceding line
2785 (progn
2786 (if (looking-at "[ \t]*$") ; it's blank
2787 (setq start (point)) ; so reset start point
2788 (goto-char start)) ; else try again
2789 (if (zerop (forward-line -1))
2790 (if (looking-at "[ \t]*#") ; a comment
2791 ;; look back for non-comment line
2792 ;; tricky: note that the regexp matches a blank
2793 ;; line, cuz \n is in the 2nd character class
2794 (and
2795 (re-search-backward "^[ \t]*[^ \t#]" nil 'move)
2796 (forward-line 1))
2797 ;; no comment, so go back
2798 (goto-char start)))))))
2799 (exchange-point-and-mark)
2800 (py-keep-region-active))
2802 ;; ripped from cc-mode
2803 (defun py-forward-into-nomenclature (&optional arg)
2804 "Move forward to end of a nomenclature section or word.
2805 With \\[universal-argument] (programmatically, optional argument ARG),
2806 do it that many times.
2808 A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2809 (interactive "p")
2810 (let ((case-fold-search nil))
2811 (if (> arg 0)
2812 (re-search-forward
2813 "\\(\\W\\|[_]\\)*\\([A-Z]*[a-z0-9]*\\)"
2814 (point-max) t arg)
2815 (while (and (< arg 0)
2816 (re-search-backward
2817 "\\(\\W\\|[a-z0-9]\\)[A-Z]+\\|\\(\\W\\|[_]\\)\\w+"
2818 (point-min) 0))
2819 (forward-char 1)
2820 (setq arg (1+ arg)))))
2821 (py-keep-region-active))
2823 (defun py-backward-into-nomenclature (&optional arg)
2824 "Move backward to beginning of a nomenclature section or word.
2825 With optional ARG, move that many times. If ARG is negative, move
2826 forward.
2828 A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2829 (interactive "p")
2830 (py-forward-into-nomenclature (- arg))
2831 (py-keep-region-active))
2835 ;; pdbtrack functions
2836 (defun py-pdbtrack-toggle-stack-tracking (arg)
2837 (interactive "P")
2838 (if (not (get-buffer-process (current-buffer)))
2839 (error "No process associated with buffer '%s'" (current-buffer)))
2840 ;; missing or 0 is toggle, >0 turn on, <0 turn off
2841 (if (or (not arg)
2842 (zerop (setq arg (prefix-numeric-value arg))))
2843 (setq py-pdbtrack-do-tracking-p (not py-pdbtrack-do-tracking-p))
2844 (setq py-pdbtrack-do-tracking-p (> arg 0)))
2845 (message "%sabled Python's pdbtrack"
2846 (if py-pdbtrack-do-tracking-p "En" "Dis")))
2848 (defun turn-on-pdbtrack ()
2849 (interactive)
2850 (py-pdbtrack-toggle-stack-tracking 1))
2852 (defun turn-off-pdbtrack ()
2853 (interactive)
2854 (py-pdbtrack-toggle-stack-tracking 0))
2858 ;; Pychecker
2859 (defun py-pychecker-run (command)
2860 "*Run pychecker (default on the file currently visited)."
2861 (interactive
2862 (let ((default
2863 (format "%s %s %s" py-pychecker-command
2864 (mapconcat 'identity py-pychecker-command-args " ")
2865 (buffer-file-name)))
2866 (last (when py-pychecker-history
2867 (let* ((lastcmd (car py-pychecker-history))
2868 (cmd (cdr (reverse (split-string lastcmd))))
2869 (newcmd (reverse (cons (buffer-file-name) cmd))))
2870 (mapconcat 'identity newcmd " ")))))
2872 (list
2873 (read-shell-command "Run pychecker like this: "
2874 (if last
2875 last
2876 default)
2877 'py-pychecker-history))))
2878 (save-some-buffers (not py-ask-about-save) nil)
2879 (compile-internal command "No more errors"))
2883 ;; pydoc commands. The guts of this function is stolen from XEmacs's
2884 ;; symbol-near-point, but without the useless regexp-quote call on the
2885 ;; results, nor the interactive bit. Also, we've added the temporary
2886 ;; syntax table setting, which Skip originally had broken out into a
2887 ;; separate function. Note that Emacs doesn't have the original
2888 ;; function.
2889 (defun py-symbol-near-point ()
2890 "Return the first textual item to the nearest point."
2891 ;; alg stolen from etag.el
2892 (save-excursion
2893 (with-syntax-table py-dotted-expression-syntax-table
2894 (if (or (bobp) (not (memq (char-syntax (char-before)) '(?w ?_))))
2895 (while (not (looking-at "\\sw\\|\\s_\\|\\'"))
2896 (forward-char 1)))
2897 (while (looking-at "\\sw\\|\\s_")
2898 (forward-char 1))
2899 (if (re-search-backward "\\sw\\|\\s_" nil t)
2900 (progn (forward-char 1)
2901 (buffer-substring (point)
2902 (progn (forward-sexp -1)
2903 (while (looking-at "\\s'")
2904 (forward-char 1))
2905 (point))))
2906 nil))))
2908 (defun py-help-at-point ()
2909 "Get help from Python based on the symbol nearest point."
2910 (interactive)
2911 (let* ((sym (py-symbol-near-point))
2912 (base (substring sym 0 (or (search "." sym :from-end t) 0)))
2913 cmd)
2914 (if (not (equal base ""))
2915 (setq cmd (concat "import " base "\n")))
2916 (setq cmd (concat "import pydoc\n"
2918 "try: pydoc.help('" sym "')\n"
2919 "except: print 'No help available on:', \"" sym "\""))
2920 (message cmd)
2921 (py-execute-string cmd)
2922 (set-buffer "*Python Output*")
2923 ;; BAW: Should we really be leaving the output buffer in help-mode?
2924 (help-mode)))
2928 ;; Documentation functions
2930 ;; dump the long form of the mode blurb; does the usual doc escapes,
2931 ;; plus lines of the form ^[vc]:name$ to suck variable & command docs
2932 ;; out of the right places, along with the keys they're on & current
2933 ;; values
2934 (defun py-dump-help-string (str)
2935 (with-output-to-temp-buffer "*Help*"
2936 (let ((locals (buffer-local-variables))
2937 funckind funcname func funcdoc
2938 (start 0) mstart end
2939 keys )
2940 (while (string-match "^%\\([vc]\\):\\(.+\\)\n" str start)
2941 (setq mstart (match-beginning 0) end (match-end 0)
2942 funckind (substring str (match-beginning 1) (match-end 1))
2943 funcname (substring str (match-beginning 2) (match-end 2))
2944 func (intern funcname))
2945 (princ (substitute-command-keys (substring str start mstart)))
2946 (cond
2947 ((equal funckind "c") ; command
2948 (setq funcdoc (documentation func)
2949 keys (concat
2950 "Key(s): "
2951 (mapconcat 'key-description
2952 (where-is-internal func py-mode-map)
2953 ", "))))
2954 ((equal funckind "v") ; variable
2955 (setq funcdoc (documentation-property func 'variable-documentation)
2956 keys (if (assq func locals)
2957 (concat
2958 "Local/Global values: "
2959 (prin1-to-string (symbol-value func))
2960 " / "
2961 (prin1-to-string (default-value func)))
2962 (concat
2963 "Value: "
2964 (prin1-to-string (symbol-value func))))))
2965 (t ; unexpected
2966 (error "Error in py-dump-help-string, tag `%s'" funckind)))
2967 (princ (format "\n-> %s:\t%s\t%s\n\n"
2968 (if (equal funckind "c") "Command" "Variable")
2969 funcname keys))
2970 (princ funcdoc)
2971 (terpri)
2972 (setq start end))
2973 (princ (substitute-command-keys (substring str start))))
2974 (print-help-return-message)))
2976 (defun py-describe-mode ()
2977 "Dump long form of Python-mode docs."
2978 (interactive)
2979 (py-dump-help-string "Major mode for editing Python files.
2980 Knows about Python indentation, tokens, comments and continuation lines.
2981 Paragraphs are separated by blank lines only.
2983 Major sections below begin with the string `@'; specific function and
2984 variable docs begin with `->'.
2986 @EXECUTING PYTHON CODE
2988 \\[py-execute-import-or-reload]\timports or reloads the file in the Python interpreter
2989 \\[py-execute-buffer]\tsends the entire buffer to the Python interpreter
2990 \\[py-execute-region]\tsends the current region
2991 \\[py-execute-def-or-class]\tsends the current function or class definition
2992 \\[py-execute-string]\tsends an arbitrary string
2993 \\[py-shell]\tstarts a Python interpreter window; this will be used by
2994 \tsubsequent Python execution commands
2995 %c:py-execute-import-or-reload
2996 %c:py-execute-buffer
2997 %c:py-execute-region
2998 %c:py-execute-def-or-class
2999 %c:py-execute-string
3000 %c:py-shell
3002 @VARIABLES
3004 py-indent-offset\tindentation increment
3005 py-block-comment-prefix\tcomment string used by comment-region
3007 py-python-command\tshell command to invoke Python interpreter
3008 py-temp-directory\tdirectory used for temp files (if needed)
3010 py-beep-if-tab-change\tring the bell if tab-width is changed
3011 %v:py-indent-offset
3012 %v:py-block-comment-prefix
3013 %v:py-python-command
3014 %v:py-temp-directory
3015 %v:py-beep-if-tab-change
3017 @KINDS OF LINES
3019 Each physical line in the file is either a `continuation line' (the
3020 preceding line ends with a backslash that's not part of a comment, or
3021 the paren/bracket/brace nesting level at the start of the line is
3022 non-zero, or both) or an `initial line' (everything else).
3024 An initial line is in turn a `blank line' (contains nothing except
3025 possibly blanks or tabs), a `comment line' (leftmost non-blank
3026 character is `#'), or a `code line' (everything else).
3028 Comment Lines
3030 Although all comment lines are treated alike by Python, Python mode
3031 recognizes two kinds that act differently with respect to indentation.
3033 An `indenting comment line' is a comment line with a blank, tab or
3034 nothing after the initial `#'. The indentation commands (see below)
3035 treat these exactly as if they were code lines: a line following an
3036 indenting comment line will be indented like the comment line. All
3037 other comment lines (those with a non-whitespace character immediately
3038 following the initial `#') are `non-indenting comment lines', and
3039 their indentation is ignored by the indentation commands.
3041 Indenting comment lines are by far the usual case, and should be used
3042 whenever possible. Non-indenting comment lines are useful in cases
3043 like these:
3045 \ta = b # a very wordy single-line comment that ends up being
3046 \t #... continued onto another line
3048 \tif a == b:
3049 ##\t\tprint 'panic!' # old code we've `commented out'
3050 \t\treturn a
3052 Since the `#...' and `##' comment lines have a non-whitespace
3053 character following the initial `#', Python mode ignores them when
3054 computing the proper indentation for the next line.
3056 Continuation Lines and Statements
3058 The Python-mode commands generally work on statements instead of on
3059 individual lines, where a `statement' is a comment or blank line, or a
3060 code line and all of its following continuation lines (if any)
3061 considered as a single logical unit. The commands in this mode
3062 generally (when it makes sense) automatically move to the start of the
3063 statement containing point, even if point happens to be in the middle
3064 of some continuation line.
3067 @INDENTATION
3069 Primarily for entering new code:
3070 \t\\[indent-for-tab-command]\t indent line appropriately
3071 \t\\[py-newline-and-indent]\t insert newline, then indent
3072 \t\\[py-electric-backspace]\t reduce indentation, or delete single character
3074 Primarily for reindenting existing code:
3075 \t\\[py-guess-indent-offset]\t guess py-indent-offset from file content; change locally
3076 \t\\[universal-argument] \\[py-guess-indent-offset]\t ditto, but change globally
3078 \t\\[py-indent-region]\t reindent region to match its context
3079 \t\\[py-shift-region-left]\t shift region left by py-indent-offset
3080 \t\\[py-shift-region-right]\t shift region right by py-indent-offset
3082 Unlike most programming languages, Python uses indentation, and only
3083 indentation, to specify block structure. Hence the indentation supplied
3084 automatically by Python-mode is just an educated guess: only you know
3085 the block structure you intend, so only you can supply correct
3086 indentation.
3088 The \\[indent-for-tab-command] and \\[py-newline-and-indent] keys try to suggest plausible indentation, based on
3089 the indentation of preceding statements. E.g., assuming
3090 py-indent-offset is 4, after you enter
3091 \tif a > 0: \\[py-newline-and-indent]
3092 the cursor will be moved to the position of the `_' (_ is not a
3093 character in the file, it's just used here to indicate the location of
3094 the cursor):
3095 \tif a > 0:
3096 \t _
3097 If you then enter `c = d' \\[py-newline-and-indent], the cursor will move
3099 \tif a > 0:
3100 \t c = d
3101 \t _
3102 Python-mode cannot know whether that's what you intended, or whether
3103 \tif a > 0:
3104 \t c = d
3106 was your intent. In general, Python-mode either reproduces the
3107 indentation of the (closest code or indenting-comment) preceding
3108 statement, or adds an extra py-indent-offset blanks if the preceding
3109 statement has `:' as its last significant (non-whitespace and non-
3110 comment) character. If the suggested indentation is too much, use
3111 \\[py-electric-backspace] to reduce it.
3113 Continuation lines are given extra indentation. If you don't like the
3114 suggested indentation, change it to something you do like, and Python-
3115 mode will strive to indent later lines of the statement in the same way.
3117 If a line is a continuation line by virtue of being in an unclosed
3118 paren/bracket/brace structure (`list', for short), the suggested
3119 indentation depends on whether the current line contains the first item
3120 in the list. If it does, it's indented py-indent-offset columns beyond
3121 the indentation of the line containing the open bracket. If you don't
3122 like that, change it by hand. The remaining items in the list will mimic
3123 whatever indentation you give to the first item.
3125 If a line is a continuation line because the line preceding it ends with
3126 a backslash, the third and following lines of the statement inherit their
3127 indentation from the line preceding them. The indentation of the second
3128 line in the statement depends on the form of the first (base) line: if
3129 the base line is an assignment statement with anything more interesting
3130 than the backslash following the leftmost assigning `=', the second line
3131 is indented two columns beyond that `='. Else it's indented to two
3132 columns beyond the leftmost solid chunk of non-whitespace characters on
3133 the base line.
3135 Warning: indent-region should not normally be used! It calls \\[indent-for-tab-command]
3136 repeatedly, and as explained above, \\[indent-for-tab-command] can't guess the block
3137 structure you intend.
3138 %c:indent-for-tab-command
3139 %c:py-newline-and-indent
3140 %c:py-electric-backspace
3143 The next function may be handy when editing code you didn't write:
3144 %c:py-guess-indent-offset
3147 The remaining `indent' functions apply to a region of Python code. They
3148 assume the block structure (equals indentation, in Python) of the region
3149 is correct, and alter the indentation in various ways while preserving
3150 the block structure:
3151 %c:py-indent-region
3152 %c:py-shift-region-left
3153 %c:py-shift-region-right
3155 @MARKING & MANIPULATING REGIONS OF CODE
3157 \\[py-mark-block]\t mark block of lines
3158 \\[py-mark-def-or-class]\t mark smallest enclosing def
3159 \\[universal-argument] \\[py-mark-def-or-class]\t mark smallest enclosing class
3160 \\[comment-region]\t comment out region of code
3161 \\[universal-argument] \\[comment-region]\t uncomment region of code
3162 %c:py-mark-block
3163 %c:py-mark-def-or-class
3164 %c:comment-region
3166 @MOVING POINT
3168 \\[py-previous-statement]\t move to statement preceding point
3169 \\[py-next-statement]\t move to statement following point
3170 \\[py-goto-block-up]\t move up to start of current block
3171 \\[py-beginning-of-def-or-class]\t move to start of def
3172 \\[universal-argument] \\[py-beginning-of-def-or-class]\t move to start of class
3173 \\[py-end-of-def-or-class]\t move to end of def
3174 \\[universal-argument] \\[py-end-of-def-or-class]\t move to end of class
3176 The first two move to one statement beyond the statement that contains
3177 point. A numeric prefix argument tells them to move that many
3178 statements instead. Blank lines, comment lines, and continuation lines
3179 do not count as `statements' for these commands. So, e.g., you can go
3180 to the first code statement in a file by entering
3181 \t\\[beginning-of-buffer]\t to move to the top of the file
3182 \t\\[py-next-statement]\t to skip over initial comments and blank lines
3183 Or do `\\[py-previous-statement]' with a huge prefix argument.
3184 %c:py-previous-statement
3185 %c:py-next-statement
3186 %c:py-goto-block-up
3187 %c:py-beginning-of-def-or-class
3188 %c:py-end-of-def-or-class
3190 @LITTLE-KNOWN EMACS COMMANDS PARTICULARLY USEFUL IN PYTHON MODE
3192 `\\[indent-new-comment-line]' is handy for entering a multi-line comment.
3194 `\\[set-selective-display]' with a `small' prefix arg is ideally suited for viewing the
3195 overall class and def structure of a module.
3197 `\\[back-to-indentation]' moves point to a line's first non-blank character.
3199 `\\[indent-relative]' is handy for creating odd indentation.
3201 @OTHER EMACS HINTS
3203 If you don't like the default value of a variable, change its value to
3204 whatever you do like by putting a `setq' line in your .emacs file.
3205 E.g., to set the indentation increment to 4, put this line in your
3206 .emacs:
3207 \t(setq py-indent-offset 4)
3208 To see the value of a variable, do `\\[describe-variable]' and enter the variable
3209 name at the prompt.
3211 When entering a key sequence like `C-c C-n', it is not necessary to
3212 release the CONTROL key after doing the `C-c' part -- it suffices to
3213 press the CONTROL key, press and release `c' (while still holding down
3214 CONTROL), press and release `n' (while still holding down CONTROL), &
3215 then release CONTROL.
3217 Entering Python mode calls with no arguments the value of the variable
3218 `python-mode-hook', if that value exists and is not nil; for backward
3219 compatibility it also tries `py-mode-hook'; see the `Hooks' section of
3220 the Elisp manual for details.
3222 Obscure: When python-mode is first loaded, it looks for all bindings
3223 to newline-and-indent in the global keymap, and shadows them with
3224 local bindings to py-newline-and-indent."))
3226 (require 'info-look)
3227 ;; The info-look package does not always provide this function (it
3228 ;; appears this is the case with XEmacs 21.1)
3229 (when (fboundp 'info-lookup-maybe-add-help)
3230 (info-lookup-maybe-add-help
3231 :mode 'python-mode
3232 :regexp "[a-zA-Z0-9_]+"
3233 :doc-spec '(("(python-lib)Module Index")
3234 ("(python-lib)Class-Exception-Object Index")
3235 ("(python-lib)Function-Method-Variable Index")
3236 ("(python-lib)Miscellaneous Index")))
3240 ;; Helper functions
3241 (defvar py-parse-state-re
3242 (concat
3243 "^[ \t]*\\(elif\\|else\\|while\\|def\\|class\\)\\>"
3244 "\\|"
3245 "^[^ #\t\n]"))
3247 (defun py-parse-state ()
3248 "Return the parse state at point (see `parse-partial-sexp' docs)."
3249 (save-excursion
3250 (let ((here (point))
3251 pps done)
3252 (while (not done)
3253 ;; back up to the first preceding line (if any; else start of
3254 ;; buffer) that begins with a popular Python keyword, or a
3255 ;; non- whitespace and non-comment character. These are good
3256 ;; places to start parsing to see whether where we started is
3257 ;; at a non-zero nesting level. It may be slow for people who
3258 ;; write huge code blocks or huge lists ... tough beans.
3259 (re-search-backward py-parse-state-re nil 'move)
3260 (beginning-of-line)
3261 ;; In XEmacs, we have a much better way to test for whether
3262 ;; we're in a triple-quoted string or not. Emacs does not
3263 ;; have this built-in function, which is its loss because
3264 ;; without scanning from the beginning of the buffer, there's
3265 ;; no accurate way to determine this otherwise.
3266 (save-excursion (setq pps (parse-partial-sexp (point) here)))
3267 ;; make sure we don't land inside a triple-quoted string
3268 (setq done (or (not (nth 3 pps))
3269 (bobp)))
3270 ;; Just go ahead and short circuit the test back to the
3271 ;; beginning of the buffer. This will be slow, but not
3272 ;; nearly as slow as looping through many
3273 ;; re-search-backwards.
3274 (if (not done)
3275 (goto-char (point-min))))
3276 pps)))
3278 (defun py-nesting-level ()
3279 "Return the buffer position of the last unclosed enclosing list.
3280 If nesting level is zero, return nil."
3281 (let ((status (py-parse-state)))
3282 (if (zerop (car status))
3283 nil ; not in a nest
3284 (car (cdr status))))) ; char# of open bracket
3286 (defun py-backslash-continuation-line-p ()
3287 "Return t iff preceding line ends with backslash that is not in a comment."
3288 (save-excursion
3289 (beginning-of-line)
3290 (and
3291 ;; use a cheap test first to avoid the regexp if possible
3292 ;; use 'eq' because char-after may return nil
3293 (eq (char-after (- (point) 2)) ?\\ )
3294 ;; make sure; since eq test passed, there is a preceding line
3295 (forward-line -1) ; always true -- side effect
3296 (looking-at py-continued-re))))
3298 (defun py-continuation-line-p ()
3299 "Return t iff current line is a continuation line."
3300 (save-excursion
3301 (beginning-of-line)
3302 (or (py-backslash-continuation-line-p)
3303 (py-nesting-level))))
3305 (defun py-goto-beginning-of-tqs (delim)
3306 "Go to the beginning of the triple quoted string we find ourselves in.
3307 DELIM is the TQS string delimiter character we're searching backwards
3308 for."
3309 (let ((skip (and delim (make-string 1 delim)))
3310 (continue t))
3311 (when skip
3312 (save-excursion
3313 (while continue
3314 (py-safe (search-backward skip))
3315 (setq continue (and (not (bobp))
3316 (= (char-before) ?\\))))
3317 (if (and (= (char-before) delim)
3318 (= (char-before (1- (point))) delim))
3319 (setq skip (make-string 3 delim))))
3320 ;; we're looking at a triple-quoted string
3321 (py-safe (search-backward skip)))))
3323 (defun py-goto-initial-line ()
3324 "Go to the initial line of the current statement.
3325 Usually this is the line we're on, but if we're on the 2nd or
3326 following lines of a continuation block, we need to go up to the first
3327 line of the block."
3328 ;; Tricky: We want to avoid quadratic-time behavior for long
3329 ;; continued blocks, whether of the backslash or open-bracket
3330 ;; varieties, or a mix of the two. The following manages to do that
3331 ;; in the usual cases.
3333 ;; Also, if we're sitting inside a triple quoted string, this will
3334 ;; drop us at the line that begins the string.
3335 (let (open-bracket-pos)
3336 (while (py-continuation-line-p)
3337 (beginning-of-line)
3338 (if (py-backslash-continuation-line-p)
3339 (while (py-backslash-continuation-line-p)
3340 (forward-line -1))
3341 ;; else zip out of nested brackets/braces/parens
3342 (while (setq open-bracket-pos (py-nesting-level))
3343 (goto-char open-bracket-pos)))))
3344 (beginning-of-line))
3346 (defun py-goto-beyond-final-line ()
3347 "Go to the point just beyond the fine line of the current statement.
3348 Usually this is the start of the next line, but if this is a
3349 multi-line statement we need to skip over the continuation lines."
3350 ;; Tricky: Again we need to be clever to avoid quadratic time
3351 ;; behavior.
3353 ;; XXX: Not quite the right solution, but deals with multi-line doc
3354 ;; strings
3355 (if (looking-at (concat "[ \t]*\\(" py-stringlit-re "\\)"))
3356 (goto-char (match-end 0)))
3358 (forward-line 1)
3359 (let (state)
3360 (while (and (py-continuation-line-p)
3361 (not (eobp)))
3362 ;; skip over the backslash flavor
3363 (while (and (py-backslash-continuation-line-p)
3364 (not (eobp)))
3365 (forward-line 1))
3366 ;; if in nest, zip to the end of the nest
3367 (setq state (py-parse-state))
3368 (if (and (not (zerop (car state)))
3369 (not (eobp)))
3370 (progn
3371 (parse-partial-sexp (point) (point-max) 0 nil state)
3372 (forward-line 1))))))
3374 (defun py-statement-opens-block-p ()
3375 "Return t iff the current statement opens a block.
3376 I.e., iff it ends with a colon that is not in a comment. Point should
3377 be at the start of a statement."
3378 (save-excursion
3379 (let ((start (point))
3380 (finish (progn (py-goto-beyond-final-line) (1- (point))))
3381 (searching t)
3382 (answer nil)
3383 state)
3384 (goto-char start)
3385 (while searching
3386 ;; look for a colon with nothing after it except whitespace, and
3387 ;; maybe a comment
3388 (if (re-search-forward ":\\([ \t]\\|\\\\\n\\)*\\(#.*\\)?$"
3389 finish t)
3390 (if (eq (point) finish) ; note: no `else' clause; just
3391 ; keep searching if we're not at
3392 ; the end yet
3393 ;; sure looks like it opens a block -- but it might
3394 ;; be in a comment
3395 (progn
3396 (setq searching nil) ; search is done either way
3397 (setq state (parse-partial-sexp start
3398 (match-beginning 0)))
3399 (setq answer (not (nth 4 state)))))
3400 ;; search failed: couldn't find another interesting colon
3401 (setq searching nil)))
3402 answer)))
3404 (defun py-statement-closes-block-p ()
3405 "Return t iff the current statement closes a block.
3406 I.e., if the line starts with `return', `raise', `break', `continue',
3407 and `pass'. This doesn't catch embedded statements."
3408 (let ((here (point)))
3409 (py-goto-initial-line)
3410 (back-to-indentation)
3411 (prog1
3412 (looking-at (concat py-block-closing-keywords-re "\\>"))
3413 (goto-char here))))
3415 (defun py-goto-beyond-block ()
3416 "Go to point just beyond the final line of block begun by the current line.
3417 This is the same as where `py-goto-beyond-final-line' goes unless
3418 we're on colon line, in which case we go to the end of the block.
3419 Assumes point is at the beginning of the line."
3420 (if (py-statement-opens-block-p)
3421 (py-mark-block nil 'just-move)
3422 (py-goto-beyond-final-line)))
3424 (defun py-goto-statement-at-or-above ()
3425 "Go to the start of the first statement at or preceding point.
3426 Return t if there is such a statement, otherwise nil. `Statement'
3427 does not include blank lines, comments, or continuation lines."
3428 (py-goto-initial-line)
3429 (if (looking-at py-blank-or-comment-re)
3430 ;; skip back over blank & comment lines
3431 ;; note: will skip a blank or comment line that happens to be
3432 ;; a continuation line too
3433 (if (re-search-backward "^[ \t]*[^ \t#\n]" nil t)
3434 (progn (py-goto-initial-line) t)
3435 nil)
3438 (defun py-goto-statement-below ()
3439 "Go to start of the first statement following the statement containing point.
3440 Return t if there is such a statement, otherwise nil. `Statement'
3441 does not include blank lines, comments, or continuation lines."
3442 (beginning-of-line)
3443 (let ((start (point)))
3444 (py-goto-beyond-final-line)
3445 (while (and
3446 (or (looking-at py-blank-or-comment-re)
3447 (py-in-literal))
3448 (not (eobp)))
3449 (forward-line 1))
3450 (if (eobp)
3451 (progn (goto-char start) nil)
3452 t)))
3454 (defun py-go-up-tree-to-keyword (key)
3455 "Go to begining of statement starting with KEY, at or preceding point.
3457 KEY is a regular expression describing a Python keyword. Skip blank
3458 lines and non-indenting comments. If the statement found starts with
3459 KEY, then stop, otherwise go back to first enclosing block starting
3460 with KEY. If successful, leave point at the start of the KEY line and
3461 return t. Otherwise, leav point at an undefined place and return nil."
3462 ;; skip blanks and non-indenting #
3463 (py-goto-initial-line)
3464 (while (and
3465 (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
3466 (zerop (forward-line -1))) ; go back
3467 nil)
3468 (py-goto-initial-line)
3469 (let* ((re (concat "[ \t]*" key "\\b"))
3470 (case-fold-search nil) ; let* so looking-at sees this
3471 (found (looking-at re))
3472 (dead nil))
3473 (while (not (or found dead))
3474 (condition-case nil ; in case no enclosing block
3475 (py-goto-block-up 'no-mark)
3476 (error (setq dead t)))
3477 (or dead (setq found (looking-at re))))
3478 (beginning-of-line)
3479 found))
3481 (defun py-suck-up-leading-text ()
3482 "Return string in buffer from start of indentation to end of line.
3483 Prefix with \"...\" if leading whitespace was skipped."
3484 (save-excursion
3485 (back-to-indentation)
3486 (concat
3487 (if (bolp) "" "...")
3488 (buffer-substring (point) (progn (end-of-line) (point))))))
3490 (defun py-suck-up-first-keyword ()
3491 "Return first keyword on the line as a Lisp symbol.
3492 `Keyword' is defined (essentially) as the regular expression
3493 ([a-z]+). Returns nil if none was found."
3494 (let ((case-fold-search nil))
3495 (if (looking-at "[ \t]*\\([a-z]+\\)\\b")
3496 (intern (buffer-substring (match-beginning 1) (match-end 1)))
3497 nil)))
3499 (defun py-current-defun ()
3500 "Python value for `add-log-current-defun-function'.
3501 This tells add-log.el how to find the current function/method/variable."
3502 (save-excursion
3503 (if (re-search-backward py-defun-start-re nil t)
3504 (or (match-string 3)
3505 (let ((method (match-string 2)))
3506 (if (and (not (zerop (length (match-string 1))))
3507 (re-search-backward py-class-start-re nil t))
3508 (concat (match-string 1) "." method)
3509 method)))
3510 nil)))
3513 (defconst py-help-address "python-mode@python.org"
3514 "Address accepting submission of bug reports.")
3516 (defun py-version ()
3517 "Echo the current version of `python-mode' in the minibuffer."
3518 (interactive)
3519 (message "Using `python-mode' version %s" py-version)
3520 (py-keep-region-active))
3522 ;; only works under Emacs 19
3523 ;(eval-when-compile
3524 ; (require 'reporter))
3526 (defun py-submit-bug-report (enhancement-p)
3527 "Submit via mail a bug report on `python-mode'.
3528 With \\[universal-argument] (programmatically, argument ENHANCEMENT-P
3529 non-nil) just submit an enhancement request."
3530 (interactive
3531 (list (not (y-or-n-p
3532 "Is this a bug report (hit `n' to send other comments)? "))))
3533 (let ((reporter-prompt-for-summary-p (if enhancement-p
3534 "(Very) brief summary: "
3535 t)))
3536 (require 'reporter)
3537 (reporter-submit-bug-report
3538 py-help-address ;address
3539 (concat "python-mode " py-version) ;pkgname
3540 ;; varlist
3541 (if enhancement-p nil
3542 '(py-python-command
3543 py-indent-offset
3544 py-block-comment-prefix
3545 py-temp-directory
3546 py-beep-if-tab-change))
3547 nil ;pre-hooks
3548 nil ;post-hooks
3549 "Dear Barry,") ;salutation
3550 (if enhancement-p nil
3551 (set-mark (point))
3552 (insert
3553 "Please replace this text with a sufficiently large code sample\n\
3554 and an exact recipe so that I can reproduce your problem. Failure\n\
3555 to do so may mean a greater delay in fixing your bug.\n\n")
3556 (exchange-point-and-mark)
3557 (py-keep-region-active))))
3560 (defun py-kill-emacs-hook ()
3561 "Delete files in `py-file-queue'.
3562 These are Python temporary files awaiting execution."
3563 (mapcar #'(lambda (filename)
3564 (py-safe (delete-file filename)))
3565 py-file-queue))
3567 ;; arrange to kill temp files when Emacs exists
3568 (add-hook 'kill-emacs-hook 'py-kill-emacs-hook)
3569 (add-hook 'comint-output-filter-functions 'py-pdbtrack-track-stack-file)
3571 ;; Add a designator to the minor mode strings
3572 (or (assq 'py-pdbtrack-minor-mode-string minor-mode-alist)
3573 (push '(py-pdbtrack-is-tracking-p py-pdbtrack-minor-mode-string)
3574 minor-mode-alist))
3578 ;;; paragraph and string filling code from Bernhard Herzog
3579 ;;; see http://mail.python.org/pipermail/python-list/2002-May/103189.html
3581 (defun py-fill-comment (&optional justify)
3582 "Fill the comment paragraph around point"
3583 (let (;; Non-nil if the current line contains a comment.
3584 has-comment
3586 ;; If has-comment, the appropriate fill-prefix for the comment.
3587 comment-fill-prefix)
3589 ;; Figure out what kind of comment we are looking at.
3590 (save-excursion
3591 (beginning-of-line)
3592 (cond
3593 ;; A line with nothing but a comment on it?
3594 ((looking-at "[ \t]*#[# \t]*")
3595 (setq has-comment t
3596 comment-fill-prefix (buffer-substring (match-beginning 0)
3597 (match-end 0))))
3599 ;; A line with some code, followed by a comment? Remember that the hash
3600 ;; which starts the comment shouldn't be part of a string or character.
3601 ((progn
3602 (while (not (looking-at "#\\|$"))
3603 (skip-chars-forward "^#\n\"'\\")
3604 (cond
3605 ((eq (char-after (point)) ?\\) (forward-char 2))
3606 ((memq (char-after (point)) '(?\" ?')) (forward-sexp 1))))
3607 (looking-at "#+[\t ]*"))
3608 (setq has-comment t)
3609 (setq comment-fill-prefix
3610 (concat (make-string (current-column) ? )
3611 (buffer-substring (match-beginning 0) (match-end 0)))))))
3613 (if (not has-comment)
3614 (fill-paragraph justify)
3616 ;; Narrow to include only the comment, and then fill the region.
3617 (save-restriction
3618 (narrow-to-region
3620 ;; Find the first line we should include in the region to fill.
3621 (save-excursion
3622 (while (and (zerop (forward-line -1))
3623 (looking-at "^[ \t]*#")))
3625 ;; We may have gone to far. Go forward again.
3626 (or (looking-at "^[ \t]*#")
3627 (forward-line 1))
3628 (point))
3630 ;; Find the beginning of the first line past the region to fill.
3631 (save-excursion
3632 (while (progn (forward-line 1)
3633 (looking-at "^[ \t]*#")))
3634 (point)))
3636 ;; Lines with only hashes on them can be paragraph boundaries.
3637 (let ((paragraph-start (concat paragraph-start "\\|[ \t#]*$"))
3638 (paragraph-separate (concat paragraph-separate "\\|[ \t#]*$"))
3639 (fill-prefix comment-fill-prefix))
3640 ;;(message "paragraph-start %S paragraph-separate %S"
3641 ;;paragraph-start paragraph-separate)
3642 (fill-paragraph justify))))
3646 (defun py-fill-string (start &optional justify)
3647 "Fill the paragraph around (point) in the string starting at start"
3648 ;; basic strategy: narrow to the string and call the default
3649 ;; implementation
3650 (let (;; the start of the string's contents
3651 string-start
3652 ;; the end of the string's contents
3653 string-end
3654 ;; length of the string's delimiter
3655 delim-length
3656 ;; The string delimiter
3657 delim
3660 (save-excursion
3661 (goto-char start)
3662 (if (looking-at "\\('''\\|\"\"\"\\|'\\|\"\\)\\\\?\n?")
3663 (setq string-start (match-end 0)
3664 delim-length (- (match-end 1) (match-beginning 1))
3665 delim (buffer-substring-no-properties (match-beginning 1)
3666 (match-end 1)))
3667 (error "The parameter start is not the beginning of a python string"))
3669 ;; if the string is the first token on a line and doesn't start with
3670 ;; a newline, fill as if the string starts at the beginning of the
3671 ;; line. this helps with one line docstrings
3672 (save-excursion
3673 (beginning-of-line)
3674 (and (/= (char-before string-start) ?\n)
3675 (looking-at (concat "[ \t]*" delim))
3676 (setq string-start (point))))
3678 (forward-sexp (if (= delim-length 3) 2 1))
3680 ;; with both triple quoted strings and single/double quoted strings
3681 ;; we're now directly behind the first char of the end delimiter
3682 ;; (this doesn't work correctly when the triple quoted string
3683 ;; contains the quote mark itself). The end of the string's contents
3684 ;; is one less than point
3685 (setq string-end (1- (point))))
3687 ;; Narrow to the string's contents and fill the current paragraph
3688 (save-restriction
3689 (narrow-to-region string-start string-end)
3690 (let ((ends-with-newline (= (char-before (point-max)) ?\n)))
3691 (fill-paragraph justify)
3692 (if (and (not ends-with-newline)
3693 (= (char-before (point-max)) ?\n))
3694 ;; the default fill-paragraph implementation has inserted a
3695 ;; newline at the end. Remove it again.
3696 (save-excursion
3697 (goto-char (point-max))
3698 (delete-char -1)))))
3700 ;; return t to indicate that we've done our work
3703 (defun py-fill-paragraph (&optional justify)
3704 "Like \\[fill-paragraph], but handle Python comments and strings.
3705 If any of the current line is a comment, fill the comment or the
3706 paragraph of it that point is in, preserving the comment's indentation
3707 and initial `#'s.
3708 If point is inside a string, narrow to that string and fill.
3710 (interactive "P")
3711 (let* ((bod (py-point 'bod))
3712 (pps (parse-partial-sexp bod (point))))
3713 (cond
3714 ;; are we inside a comment or on a line with only whitespace before
3715 ;; the comment start?
3716 ((or (nth 4 pps)
3717 (save-excursion (beginning-of-line) (looking-at "[ \t]*#")))
3718 (py-fill-comment justify))
3719 ;; are we inside a string?
3720 ((nth 3 pps)
3721 (py-fill-string (nth 2 pps)))
3722 ;; otherwise use the default
3724 (fill-paragraph justify)))))
3728 (provide 'python-mode)
3729 ;;; python-mode.el ends here