blob: f2ba5e0cd1b1bb986d58b7c052130788d168cba8 [file] [log] [blame]
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001;;; python-mode.el --- Major mode for editing Python programs
2
3;; Copyright (C) 1992,1993,1994 Tim Peters
4
Barry Warsawb2d5e622002-04-22 15:29:27 +00005;; Author: 1995-2002 Barry A. Warsaw
Barry Warsawfec75d61995-07-05 23:26:15 +00006;; 1992-1994 Tim Peters
Barry Warsawa97a3f31997-11-04 18:47:06 +00007;; Maintainer: python-mode@python.org
8;; Created: Feb 1992
9;; Keywords: python languages oop
Barry Warsaw7b0f5681995-03-08 21:33:04 +000010
Barry Warsaw19b1c612001-07-06 20:27:29 +000011(defconst py-version "$Revision$"
Barry Warsawc72c11c1997-08-09 06:42:08 +000012 "`python-mode' version number.")
13
Barry Warsawcfec3591995-03-10 15:58:16 +000014;; 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.
Barry Warsaw7b0f5681995-03-08 21:33:04 +000019
20;;; Commentary:
Barry Warsaw755c6711996-08-01 20:02:55 +000021
Barry Warsaw7b0f5681995-03-08 21:33:04 +000022;; This is a major mode for editing Python programs. It was developed
Barry Warsaw261f87d1996-08-20 19:57:34 +000023;; by Tim Peters after an original idea by Michael A. Guravage. Tim
Barry Warsawf7039e21998-08-20 22:10:46 +000024;; subsequently left the net; in 1995, Barry Warsaw inherited the mode
Barry Warsaw38e21e71998-10-27 22:09:25 +000025;; and is the current maintainer. Tim's now back but disavows all
26;; responsibility for the mode. Smart Tim :-)
Barry Warsaw7b0f5681995-03-08 21:33:04 +000027
Barry Warsaw4f577d22001-04-11 20:23:17 +000028;; pdbtrack support contributed by Ken Manheimer, April 2001.
29
Barry Warsawb2d5e622002-04-22 15:29:27 +000030;; Please use the SourceForge Python project to submit bugs or
31;; patches:
Barry Warsaw4f577d22001-04-11 20:23:17 +000032;;
33;; http://sourceforge.net/projects/python
Barry Warsaw37231521997-12-11 17:23:13 +000034
35;; FOR MORE INFORMATION:
36
Barry Warsaw4f577d22001-04-11 20:23:17 +000037;; There is some information on python-mode.el at
38
Barry Warsawf7039e21998-08-20 22:10:46 +000039;; http://www.python.org/emacs/python-mode/
40;;
Barry Warsawb2d5e622002-04-22 15:29:27 +000041;; It does contain links to other packages that you might find useful,
42;; such as pdb interfaces, OO-Browser links, etc.
Barry Warsaw37231521997-12-11 17:23:13 +000043
44;; BUG REPORTING:
Barry Warsaw7ae77681994-12-12 20:38:05 +000045
Barry Warsaw4f577d22001-04-11 20:23:17 +000046;; 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
Barry Warsawaffc0ca1997-11-03 16:59:38 +000050;; concise code sample and a recipe for reproducing the bug. Send
51;; suggestions and other comments to python-mode@python.org.
52
53;; When in a Python mode buffer, do a C-h m for more help. It's
Barry Warsaw37231521997-12-11 17:23:13 +000054;; doubtful that a texinfo manual would be very useful, but if you
55;; want to contribute one, I'll certainly accept it!
Barry Warsawb5e0ecb1995-03-14 18:32:54 +000056
Barry Warsaw7b0f5681995-03-08 21:33:04 +000057;;; Code:
58
Barry Warsaw6dfbe5d1998-08-20 21:51:27 +000059(require 'comint)
Barry Warsawc72c11c1997-08-09 06:42:08 +000060(require 'custom)
Barry Warsaw4f577d22001-04-11 20:23:17 +000061(require 'cl)
Barry Warsaw1f4fed62002-07-17 13:45:00 +000062(require 'compile)
Barry Warsawc72c11c1997-08-09 06:42:08 +000063
Barry Warsaw7b0f5681995-03-08 21:33:04 +000064
65;; user definable variables
66;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
Barry Warsaw7ae77681994-12-12 20:38:05 +000067
Barry Warsawc72c11c1997-08-09 06:42:08 +000068(defgroup python nil
69 "Support for the Python programming language, <http://www.python.org/>"
Barry Warsaw5ed843f1999-07-28 22:06:06 +000070 :group 'languages
71 :prefix "py-")
Barry Warsaw7ae77681994-12-12 20:38:05 +000072
Barry Warsawc72c11c1997-08-09 06:42:08 +000073(defcustom py-python-command "python"
74 "*Shell command used to start Python interpreter."
75 :type 'string
76 :group 'python)
77
Barry Warsawa2398801998-04-09 23:28:20 +000078(defcustom py-jpython-command "jpython"
79 "*Shell command used to start the JPython interpreter."
80 :type 'string
Barry Warsaw5ed843f1999-07-28 22:06:06 +000081 :group 'python
82 :tag "JPython Command")
Barry Warsawa2398801998-04-09 23:28:20 +000083
Barry Warsawaa384fd1999-02-16 23:36:16 +000084(defcustom py-default-interpreter 'cpython
85 "*Which Python interpreter is used by default.
86The value for this variable can be either `cpython' or `jpython'.
87
88When the value is `cpython', the variables `py-python-command' and
89`py-python-command-args' are consulted to determine the interpreter
90and arguments to use.
91
92When the value is `jpython', the variables `py-jpython-command' and
93`py-jpython-command-args' are consulted to determine the interpreter
94and arguments to use.
95
Barry Warsaw11f21561999-07-28 21:59:43 +000096Note that this variable is consulted only the first time that a Python
97mode buffer is visited during an Emacs session. After that, use
Barry Warsawaa384fd1999-02-16 23:36:16 +000098\\[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)
102
Barry Warsaw8f972b71998-02-05 20:45:49 +0000103(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)
107
Barry Warsawa2398801998-04-09 23:28:20 +0000108(defcustom py-jpython-command-args '("-i")
109 "*List of string arguments to be used when starting a JPython shell."
110 :type '(repeat string)
Barry Warsaw5ed843f1999-07-28 22:06:06 +0000111 :group 'python
112 :tag "JPython Command Args")
Barry Warsawa2398801998-04-09 23:28:20 +0000113
Barry Warsawc72c11c1997-08-09 06:42:08 +0000114(defcustom py-indent-offset 4
Barry Warsaw41a05c71998-08-10 16:33:12 +0000115 "*Amount of offset per level of indentation.
116`\\[py-guess-indent-offset]' can usually guess a good value when
117you're editing someone else's Python code."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000118 :type 'integer
119 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000120
Barry Warsawfd4c9e82001-06-18 23:40:35 +0000121(defcustom py-continuation-offset 4
Barry Warsaw40fb4522001-07-06 20:07:13 +0000122 "*Additional amount of offset to give for some continuation lines.
Barry Warsawfd4c9e82001-06-18 23:40:35 +0000123Continuation lines are those that immediately follow a backslash
Barry Warsaw40fb4522001-07-06 20:07:13 +0000124terminated line. Only those continuation lines for a block opening
125statement are given this extra offset."
Barry Warsawfd4c9e82001-06-18 23:40:35 +0000126 :type 'integer
127 :group 'python)
128
Barry Warsaw742a5111998-03-13 17:29:15 +0000129(defcustom py-smart-indentation t
130 "*Should `python-mode' try to automagically set some indentation variables?
131When this variable is non-nil, two things happen when a buffer is set
132to `python-mode':
133
Barry Warsawc0d2d511999-06-03 22:18:59 +0000134 1. `py-indent-offset' is guessed from existing code in the buffer.
Barry Warsaw639eea61998-03-16 18:12:13 +0000135 Only guessed values between 2 and 8 are considered. If a valid
Barry Warsaw742a5111998-03-13 17:29:15 +0000136 guess can't be made (perhaps because you are visiting a new
Barry Warsaw639eea61998-03-16 18:12:13 +0000137 file), then the value in `py-indent-offset' is used.
Barry Warsaw742a5111998-03-13 17:29:15 +0000138
Barry Warsaw639eea61998-03-16 18:12:13 +0000139 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.
Barry Warsaw742a5111998-03-13 17:29:15 +0000144
Barry Warsaw8046bef1998-03-13 20:04:52 +0000145Note that both these settings occur *after* `python-mode-hook' is run,
146so if you want to defeat the automagic configuration, you must also
147set `py-smart-indentation' to nil in your `python-mode-hook'."
Barry Warsaw742a5111998-03-13 17:29:15 +0000148 :type 'boolean
149 :group 'python)
150
Barry Warsawc72c11c1997-08-09 06:42:08 +0000151(defcustom py-align-multiline-strings-p t
152 "*Flag describing how multi-line triple quoted strings are aligned.
Barry Warsaw095e9c61995-09-19 20:01:42 +0000153When this flag is non-nil, continuation lines are lined up under the
154preceding line's indentation. When this flag is nil, continuation
Barry Warsawc72c11c1997-08-09 06:42:08 +0000155lines 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)
Barry Warsaw095e9c61995-09-19 20:01:42 +0000159
Barry Warsaw218eb751998-09-22 19:51:47 +0000160(defcustom py-block-comment-prefix "##"
Barry Warsaw867a32a1996-03-07 18:30:26 +0000161 "*String used by \\[comment-region] to comment out a block of code.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000162This should follow the convention for non-indenting comment lines so
163that the indentation commands won't get confused (i.e., the string
164should be of the form `#x...' where `x' is not a blank or a tab, and
Barry Warsaw218eb751998-09-22 19:51:47 +0000165`...' is arbitrary). However, this string should not end in whitespace."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000166 :type 'string
167 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000168
Barry Warsawc72c11c1997-08-09 06:42:08 +0000169(defcustom py-honor-comment-indentation t
Barry Warsaw6d627751996-03-06 18:41:38 +0000170 "*Controls how comment lines influence subsequent indentation.
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000171
Barry Warsaw6d627751996-03-06 18:41:38 +0000172When nil, all comment lines are skipped for indentation purposes, and
Barry Warsawc72c11c1997-08-09 06:42:08 +0000173if possible, a faster algorithm is used (i.e. X/Emacs 19 and beyond).
Barry Warsaw6d627751996-03-06 18:41:38 +0000174
175When t, lines that begin with a single `#' are a hint to subsequent
176line indentation. If the previous line is such a comment line (as
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000177opposed to one that starts with `py-block-comment-prefix'), then its
Barry Warsaw6d627751996-03-06 18:41:38 +0000178indentation is used as a hint for this line's indentation. Lines that
179begin with `py-block-comment-prefix' are ignored for indentation
180purposes.
181
Barry Warsawd36cfe42002-03-15 16:46:46 +0000182When not nil or t, comment lines that begin with a single `#' are used
183as indentation hints, unless the comment character is in column zero."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000184 :type '(choice
185 (const :tag "Skip all comment lines (fast)" nil)
186 (const :tag "Single # `sets' indentation for next line" t)
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000187 (const :tag "Single # `sets' indentation except at column zero"
188 other)
Barry Warsawc72c11c1997-08-09 06:42:08 +0000189 )
190 :group 'python)
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000191
Barry Warsaw516b6201997-08-09 06:43:20 +0000192(defcustom py-temp-directory
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000193 (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))))
Barry Warsaw7ae77681994-12-12 20:38:05 +0000199 (or (funcall ok (getenv "TMPDIR"))
200 (funcall ok "/usr/tmp")
201 (funcall ok "/tmp")
Barry Warsawd1648372002-03-18 18:53:56 +0000202 (funcall ok "/var/tmp")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000203 (funcall ok ".")
204 (error
Barry Warsaw6c6db0a1998-02-25 16:33:56 +0000205 "Couldn't find a usable temp directory -- set `py-temp-directory'")))
Barry Warsawd1648372002-03-18 18:53:56 +0000206 "*Directory used for temporary files created by a *Python* process.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000207By default, the first directory from this list that exists and that you
Barry Warsawd1648372002-03-18 18:53:56 +0000208can write into: the value (if any) of the environment variable TMPDIR,
209/usr/tmp, /tmp, /var/tmp, or the current directory."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000210 :type 'string
211 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000212
Barry Warsaw516b6201997-08-09 06:43:20 +0000213(defcustom py-beep-if-tab-change t
Barry Warsaw41a05c71998-08-10 16:33:12 +0000214 "*Ring the bell if `tab-width' is changed.
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000215If a comment of the form
216
217 \t# vi:set tabsize=<number>:
218
219is found before the first code line when the file is entered, and the
220current value of (the general Emacs variable) `tab-width' does not
221equal <number>, `tab-width' is set to <number>, a message saying so is
222displayed in the echo area, and if `py-beep-if-tab-change' is non-nil
Barry Warsawc72c11c1997-08-09 06:42:08 +0000223the Emacs bell is also rung as a warning."
224 :type 'boolean
225 :group 'python)
226
Barry Warsaw9981d221997-12-03 05:25:48 +0000227(defcustom py-jump-on-exception t
228 "*Jump to innermost exception frame in *Python Output* buffer.
Barry Warsaw12c92941998-08-10 21:44:37 +0000229When this variable is non-nil and an exception occurs when running
Barry Warsaw9981d221997-12-03 05:25:48 +0000230Python code synchronously in a subprocess, jump immediately to the
Barry Warsaw12c92941998-08-10 21:44:37 +0000231source code of the innermost traceback frame."
Barry Warsaw3bfed5b1998-05-19 16:25:04 +0000232 :type 'boolean
233 :group 'python)
234
235(defcustom py-ask-about-save t
236 "If not nil, ask about which buffers to save before executing some code.
237Otherwise, all modified buffers are saved without asking."
238 :type 'boolean
239 :group 'python)
Barry Warsaw9981d221997-12-03 05:25:48 +0000240
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000241(defcustom py-backspace-function 'backward-delete-char-untabify
242 "*Function called by `py-electric-backspace' when deleting backwards."
243 :type 'function
244 :group 'python)
245
246(defcustom py-delete-function 'delete-char
247 "*Function called by `py-electric-delete' when deleting forwards."
248 :type 'function
249 :group 'python)
250
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000251(defcustom py-imenu-show-method-args-p nil
252 "*Controls echoing of arguments of functions & methods in the Imenu buffer.
253When non-nil, arguments are printed."
254 :type 'boolean
255 :group 'python)
256(make-variable-buffer-local 'py-indent-offset)
257
Barry Warsaw4f577d22001-04-11 20:23:17 +0000258(defcustom py-pdbtrack-do-tracking-p t
259 "*Controls whether the pdbtrack feature is enabled or not.
260When non-nil, pdbtrack is enabled in all comint-based buffers,
261e.g. shell buffers and the *Python* buffer. When using pdb to debug a
262Python program, pdbtrack notices the pdb prompt and displays the
263source file and line that the program is stopped at, much the same way
264as 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)
268
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)
273
Barry Warsaw88491612002-04-25 21:31:47 +0000274(defcustom py-import-check-point-max
275 20000
276 "Maximum number of characters to search for a Java-ish import statement.
277When `python-mode' tries to calculate the shell to use (either a
278CPython 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
280file heading imports to see if they look Java-like."
281 :type 'integer
282 :group 'python
283 )
284
285(defcustom py-jpython-packages
286 '("java" "javax" "org" "com")
287 "Imported packages that imply `jpython-mode'."
288 :type '(repeat string)
289 :group 'python)
290
Barry Warsawc0ecb531998-01-20 21:43:34 +0000291;; Not customizable
292(defvar py-master-file nil
293 "If non-nil, execute the named file instead of the buffer's file.
Barry Warsaw50b3eb61998-02-25 15:57:47 +0000294The intent is to allow you to set this variable in the file's local
Barry Warsawc0ecb531998-01-20 21:43:34 +0000295variable section, e.g.:
296
297 # Local Variables:
298 # py-master-file: \"master.py\"
299 # End:
300
Barry Warsaw41a05c71998-08-10 16:33:12 +0000301so that typing \\[py-execute-buffer] in that buffer executes the named
Barry Warsaw1bbc0311998-10-27 21:54:56 +0000302master file instead of the buffer's file. If the file name has a
303relative path, the value of variable `default-directory' for the
304buffer is prepended to come up with a file name.")
Barry Warsawc0ecb531998-01-20 21:43:34 +0000305(make-variable-buffer-local 'py-master-file)
306
Barry Warsaw29a90f02002-04-22 21:48:20 +0000307(defcustom py-pychecker-command "pychecker"
308 "*Shell command used to run Pychecker."
309 :type 'string
310 :group 'python
311 :tag "Pychecker Command")
312
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")
318
Barry Warsaw88491612002-04-25 21:31:47 +0000319(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'
324to select the appropriate python interpreter mode for a file.")
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000325
Barry Warsawc72c11c1997-08-09 06:42:08 +0000326
327;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
328;; NO USER DEFINABLE VARIABLES BEYOND THIS POINT
329
Barry Warsaw5e21cb01997-11-05 18:41:11 +0000330(defconst py-emacs-features
331 (let (features)
Barry Warsaw5e21cb01997-11-05 18:41:11 +0000332 features)
Barry Warsawc12c62e1997-09-04 04:18:07 +0000333 "A list of features extant in the Emacs you are using.
Barry Warsaw6ae21ad1997-11-06 14:36:49 +0000334There are many flavors of Emacs out there, with different levels of
335support for features needed by `python-mode'.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000336
Barry Warsaw29a90f02002-04-22 21:48:20 +0000337;; 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)
341
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)
346
Barry Warsawfb07f401997-02-24 03:37:22 +0000347(defvar python-font-lock-keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000348 (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"
Barry Warsawe275c422001-06-19 18:24:42 +0000355 "return" "while" "yield"
Barry Warsawb8f11661997-11-06 14:35:15 +0000356 )
357 "\\|"))
358 (kw2 (mapconcat 'identity
359 '("else:" "except:" "finally:" "try:")
360 "\\|"))
361 )
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000362 (list
Barry Warsawef3c8911997-11-05 18:55:50 +0000363 ;; keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000364 (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)
Barry Warsawe0c182f2000-12-27 17:41:47 +0000368 ;; `as' but only in "import foo as bar"
369 '("[ \t]*\\(\\bfrom\\b.*\\)?\\bimport\\b.*\\b\\(as\\)\\b" . 2)
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000370 ;; 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)
Barry Warsaw29a90f02002-04-22 21:48:20 +0000376 ;; pseudo-keywords
377 '("\\b\\(self\\|None\\|True\\|False\\|Ellipsis\\)\\b"
378 1 py-pseudo-keyword-face)
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000379 ))
Barry Warsaw62d9d6e1996-03-06 20:32:27 +0000380 "Additional expressions to highlight in Python mode.")
Barry Warsawfb07f401997-02-24 03:37:22 +0000381(put 'python-mode 'font-lock-defaults '(python-font-lock-keywords))
382
Barry Warsawe467bfb1997-11-26 05:40:58 +0000383;; have to bind py-file-queue before installing the kill-emacs-hook
Barry Warsaw7ae77681994-12-12 20:38:05 +0000384(defvar py-file-queue nil
385 "Queue of Python temp files awaiting execution.
386Currently-active file is at the head of the list.")
387
Barry Warsaw4f577d22001-04-11 20:23:17 +0000388(defvar py-pdbtrack-is-tracking-p nil)
Ken Manheimered6000a2003-03-03 17:09:44 +0000389(defvar py-pdbtrack-last-grubbed-buffer nil
390 "Record of the last buffer used when the source path was invalid.
391
392This buffer is consulted before the buffer-list history for satisfying
393`py-pdbtrack-grub-for-buffer', since it's the most often the likely
394prospect as debugging continues.")
395(make-variable-buffer-local 'py-pdbtrack-last-grubbed-buffer)
Barry Warsaw29a90f02002-04-22 21:48:20 +0000396(defvar py-pychecker-history nil)
Barry Warsaw4f577d22001-04-11 20:23:17 +0000397
398
Barry Warsawc72c11c1997-08-09 06:42:08 +0000399
400;; Constants
401
Barry Warsawc72c11c1997-08-09 06:42:08 +0000402(defconst py-stringlit-re
403 (concat
Barry Warsaw751f4931998-05-19 16:06:21 +0000404 ;; 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.
407 ;;
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
Barry Warsawc72c11c1997-08-09 06:42:08 +0000417 "\\|" ; or
Barry Warsaw751f4931998-05-19 16:06:21 +0000418 "[rR]?\"\\([^\"\n\\]\\|\\\\.\\)*\"" ; double-quoted
Barry Warsaw41a05c71998-08-10 16:33:12 +0000419 )
420 "Regular expression matching a Python string literal.")
Barry Warsaw751f4931998-05-19 16:06:21 +0000421
Barry Warsawc72c11c1997-08-09 06:42:08 +0000422(defconst py-continued-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000423 ;; This is tricky because a trailing backslash does not mean
424 ;; continuation if it's in a comment
Barry Warsawc72c11c1997-08-09 06:42:08 +0000425 (concat
426 "\\(" "[^#'\"\n\\]" "\\|" py-stringlit-re "\\)*"
Barry Warsaw41a05c71998-08-10 16:33:12 +0000427 "\\\\$")
428 "Regular expression matching Python backslash continuation lines.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000429
Barry Warsaw41a05c71998-08-10 16:33:12 +0000430(defconst py-blank-or-comment-re "[ \t]*\\($\\|#\\)"
Barry Warsaw71c3adb1998-08-10 16:34:33 +0000431 "Regular expression matching a blank or comment line.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000432
Barry Warsawc72c11c1997-08-09 06:42:08 +0000433(defconst py-outdent-re
434 (concat "\\(" (mapconcat 'identity
435 '("else:"
436 "except\\(\\s +.*\\)?:"
437 "finally:"
438 "elif\\s +.*:")
439 "\\|")
Barry Warsaw41a05c71998-08-10 16:33:12 +0000440 "\\)")
441 "Regular expression matching statements to be dedented one level.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000442
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000443(defconst py-block-closing-keywords-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000444 "\\(return\\|raise\\|break\\|continue\\|pass\\)"
445 "Regular expression matching keywords which typically close a block.")
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000446
Barry Warsawc72c11c1997-08-09 06:42:08 +0000447(defconst py-no-outdent-re
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000448 (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]")
458 )
459 "\\|")
Barry Warsaw41a05c71998-08-10 16:33:12 +0000460 "\\)")
461 "Regular expression matching lines not to dedent after.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000462
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000463(defconst py-defun-start-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000464 "^\\([ \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.
Barry Warsaw71c3adb1998-08-10 16:34:33 +0000468 "Regular expression matching a function, method, or variable assignment.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000469
Barry Warsaw41a05c71998-08-10 16:33:12 +0000470(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.")
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000475
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000476(defconst py-traceback-line-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000477 "[ \t]+File \"\\([^\"]+\\)\", line \\([0-9]+\\)"
478 "Regular expression that describes tracebacks.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000479
Barry Warsaw4f577d22001-04-11 20:23:17 +0000480;; pdbtrack contants
481(defconst py-pdbtrack-stack-entry-regexp
Ken Manheimere7aca522003-03-03 00:35:32 +0000482; "^> \\([^(]+\\)(\\([0-9]+\\))\\([?a-zA-Z0-9_]+\\)()"
483 "^> \\(.*\\)(\\([0-9]+\\))\\([?a-zA-Z0-9_]+\\)()"
Barry Warsaw4f577d22001-04-11 20:23:17 +0000484 "Regular expression pdbtrack uses to find a stack trace entry.")
485
Ken Manheimer2448f1b2003-05-01 21:07:32 +0000486(defconst py-pdbtrack-input-prompt "\n[(<]*pdb[>)]+ "
Barry Warsaw4f577d22001-04-11 20:23:17 +0000487 "Regular expression pdbtrack uses to recognize a pdb prompt.")
488
489(defconst py-pdbtrack-track-range 10000
490 "Max number of characters from end of buffer to search for stack entry.")
491
Barry Warsawc72c11c1997-08-09 06:42:08 +0000492
493
Barry Warsawc72c11c1997-08-09 06:42:08 +0000494;; Major mode boilerplate
495
Barry Warsaw7ae77681994-12-12 20:38:05 +0000496;; define a mode-specific abbrev table for those who use such things
497(defvar python-mode-abbrev-table nil
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000498 "Abbrev table in use in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000499(define-abbrev-table 'python-mode-abbrev-table nil)
500
Barry Warsaw7ae77681994-12-12 20:38:05 +0000501(defvar python-mode-hook nil
502 "*Hook called by `python-mode'.")
503
Barry Warsaw88491612002-04-25 21:31:47 +0000504(defvar jpython-mode-hook nil
505 "*Hook called by `jpython-mode'. `jpython-mode' also calls
506`python-mode-hook'.")
507
Barry Warsaw56bd2ed2002-04-25 15:44:17 +0000508(defvar py-shell-hook nil
509 "*Hook called by `py-shell'.")
510
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000511;; In previous version of python-mode.el, the hook was incorrectly
512;; called py-mode-hook, and was not defvar'd. Deprecate its use.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000513(and (fboundp 'make-obsolete-variable)
514 (make-obsolete-variable 'py-mode-hook 'python-mode-hook))
515
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000516(defvar py-mode-map ()
517 "Keymap used in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000518(if py-mode-map
Barry Warsawc72c11c1997-08-09 06:42:08 +0000519 nil
Barry Warsaw7ae77681994-12-12 20:38:05 +0000520 (setq py-mode-map (make-sparse-keymap))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000521 ;; 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)
Skip Montanaro6c5bc342002-12-31 16:56:20 +0000528 ;; paragraph and string filling
529 (define-key py-mode-map "\eq" 'py-fill-paragraph)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000530 ;; subprocess commands
531 (define-key py-mode-map "\C-c\C-c" 'py-execute-buffer)
Barry Warsaw820273d1998-05-19 15:54:45 +0000532 (define-key py-mode-map "\C-c\C-m" 'py-execute-import-or-reload)
Barry Warsaw1d0364b1998-05-19 16:15:26 +0000533 (define-key py-mode-map "\C-c\C-s" 'py-execute-string)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000534 (define-key py-mode-map "\C-c|" 'py-execute-region)
Barry Warsaw820273d1998-05-19 15:54:45 +0000535 (define-key py-mode-map "\e\C-x" 'py-execute-def-or-class)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000536 (define-key py-mode-map "\C-c!" 'py-shell)
Barry Warsawa2398801998-04-09 23:28:20 +0000537 (define-key py-mode-map "\C-c\C-t" 'py-toggle-shells)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000538 ;; 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.
541 ;;
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))
Barry Warsaw8c4a8de1997-11-26 20:30:33 +0000555 ;; 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)
Barry Warsaw2518c671997-11-05 00:51:08 +0000558 (define-key py-mode-map "\C-c\C-k" 'py-mark-block)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000559 ;; 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)
Barry Warsaw4f577d22001-04-11 20:23:17 +0000562 (define-key py-mode-map "\C-c\C-d" 'py-pdbtrack-toggle-stack-tracking)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000563 (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)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000566 (define-key py-mode-map "\C-c#" 'py-comment-region)
567 (define-key py-mode-map "\C-c?" 'py-describe-mode)
Barry Warsawa7cc43b2002-04-22 17:15:19 +0000568 (define-key py-mode-map "\C-c\C-h" 'py-help-at-point)
Barry Warsawab0e86c1998-05-19 15:31:46 +0000569 (define-key py-mode-map "\e\C-a" 'py-beginning-of-def-or-class)
570 (define-key py-mode-map "\e\C-e" 'py-end-of-def-or-class)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000571 (define-key py-mode-map "\C-c-" 'py-up-exception)
572 (define-key py-mode-map "\C-c=" 'py-down-exception)
Barry Warsawf8ddb6a1999-01-18 21:49:39 +0000573 ;; stuff that is `standard' but doesn't interface well with
574 ;; python-mode, which forces us to rebind to special commands
575 (define-key py-mode-map "\C-xnd" 'py-narrow-to-defun)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000576 ;; information
577 (define-key py-mode-map "\C-c\C-b" 'py-submit-bug-report)
578 (define-key py-mode-map "\C-c\C-v" 'py-version)
Barry Warsaw29a90f02002-04-22 21:48:20 +0000579 (define-key py-mode-map "\C-c\C-w" 'py-pychecker-run)
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000580 ;; shadow global bindings for newline-and-indent w/ the py- version.
581 ;; BAW - this is extremely bad form, but I'm not going to change it
582 ;; for now.
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000583 (mapcar #'(lambda (key)
584 (define-key py-mode-map key 'py-newline-and-indent))
585 (where-is-internal 'newline-and-indent))
Barry Warsawf19feb81999-01-21 17:06:11 +0000586 ;; Force RET to be py-newline-and-indent even if it didn't get
587 ;; mapped by the above code. motivation: Emacs' default binding for
588 ;; RET is `newline' and C-j is `newline-and-indent'. Most Pythoneers
589 ;; expect RET to do a `py-newline-and-indent' and any Emacsers who
590 ;; dislike this are probably knowledgeable enough to do a rebind.
591 ;; However, we do *not* change C-j since many Emacsers have already
592 ;; swapped RET and C-j and they don't want C-j bound to `newline' to
593 ;; change.
594 (define-key py-mode-map "\C-m" 'py-newline-and-indent)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000595 )
596
597(defvar py-mode-output-map nil
Barry Warsaw41a05c71998-08-10 16:33:12 +0000598 "Keymap used in *Python Output* buffers.")
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000599(if py-mode-output-map
600 nil
601 (setq py-mode-output-map (make-sparse-keymap))
602 (define-key py-mode-output-map [button2] 'py-mouseto-exception)
603 (define-key py-mode-output-map "\C-c\C-c" 'py-goto-exception)
604 ;; TBD: Disable all self-inserting keys. This is bogus, we should
605 ;; really implement this as *Python Output* buffer being read-only
606 (mapcar #' (lambda (key)
607 (define-key py-mode-output-map key
608 #'(lambda () (interactive) (beep))))
609 (where-is-internal 'self-insert-command))
Barry Warsaw850437a1995-03-08 21:50:28 +0000610 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000611
Barry Warsaw6dfbe5d1998-08-20 21:51:27 +0000612(defvar py-shell-map nil
613 "Keymap used in *Python* shell buffers.")
614(if py-shell-map
615 nil
616 (setq py-shell-map (copy-keymap comint-mode-map))
617 (define-key py-shell-map [tab] 'tab-to-tab-stop)
618 (define-key py-shell-map "\C-c-" 'py-up-exception)
619 (define-key py-shell-map "\C-c=" 'py-down-exception)
620 )
621
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000622(defvar py-mode-syntax-table nil
623 "Syntax table used in `python-mode' buffers.")
Barry Warsawa7cc43b2002-04-22 17:15:19 +0000624(when (not py-mode-syntax-table)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000625 (setq py-mode-syntax-table (make-syntax-table))
Barry Warsawc72c11c1997-08-09 06:42:08 +0000626 (modify-syntax-entry ?\( "()" py-mode-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 ;; Add operator symbols misassigned in the std table
633 (modify-syntax-entry ?\$ "." py-mode-syntax-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 ;; For historical reasons, underscore is word class instead of
645 ;; symbol class. GNU conventions say it should be symbol class, but
646 ;; there's a natural conflict between what major mode authors want
647 ;; and what users expect from `forward-word' and `backward-word'.
648 ;; Guido and I have hashed this out and have decided to keep
649 ;; underscore in word class. If you're tempted to change it, try
650 ;; binding M-f and M-b to py-forward-into-nomenclature and
Barry Warsawaa384fd1999-02-16 23:36:16 +0000651 ;; py-backward-into-nomenclature instead. This doesn't help in all
652 ;; situations where you'd want the different behavior
653 ;; (e.g. backward-kill-word).
Barry Warsawc72c11c1997-08-09 06:42:08 +0000654 (modify-syntax-entry ?\_ "w" py-mode-syntax-table)
655 ;; Both single quote and double quote are string delimiters
656 (modify-syntax-entry ?\' "\"" py-mode-syntax-table)
657 (modify-syntax-entry ?\" "\"" py-mode-syntax-table)
658 ;; backquote is open and close paren
659 (modify-syntax-entry ?\` "$" py-mode-syntax-table)
660 ;; comment delimiters
661 (modify-syntax-entry ?\# "<" py-mode-syntax-table)
662 (modify-syntax-entry ?\n ">" py-mode-syntax-table)
663 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000664
Barry Warsawa7cc43b2002-04-22 17:15:19 +0000665;; An auxiliary syntax table which places underscore and dot in the
666;; symbol class for simplicity
667(defvar py-dotted-expression-syntax-table nil
668 "Syntax table used to identify Python dotted expressions.")
669(when (not py-dotted-expression-syntax-table)
670 (setq py-dotted-expression-syntax-table
671 (copy-syntax-table py-mode-syntax-table))
672 (modify-syntax-entry ?_ "_" py-dotted-expression-syntax-table)
673 (modify-syntax-entry ?. "_" py-dotted-expression-syntax-table))
674
Barry Warsawb3e81d51996-09-04 15:12:42 +0000675
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000676
Barry Warsawbc3760b1998-09-14 16:16:18 +0000677;; Utilities
Barry Warsawbc3760b1998-09-14 16:16:18 +0000678(defmacro py-safe (&rest body)
679 "Safely execute BODY, return nil if an error occurred."
680 (` (condition-case nil
681 (progn (,@ body))
682 (error nil))))
683
684(defsubst py-keep-region-active ()
685 "Keep the region active in XEmacs."
686 ;; Ignore byte-compiler warnings you might see. Also note that
687 ;; FSF's Emacs 19 does it differently; its policy doesn't require us
688 ;; to take explicit action.
689 (and (boundp 'zmacs-region-stays)
690 (setq zmacs-region-stays t)))
691
692(defsubst py-point (position)
693 "Returns the value of point at certain commonly referenced POSITIONs.
694POSITION can be one of the following symbols:
695
696 bol -- beginning of line
697 eol -- end of line
698 bod -- beginning of def or class
699 eod -- end of def or class
700 bob -- beginning of buffer
701 eob -- end of buffer
702 boi -- back to indentation
703 bos -- beginning of statement
704
705This function does not modify point or mark."
706 (let ((here (point)))
707 (cond
708 ((eq position 'bol) (beginning-of-line))
709 ((eq position 'eol) (end-of-line))
710 ((eq position 'bod) (py-beginning-of-def-or-class))
711 ((eq position 'eod) (py-end-of-def-or-class))
712 ;; Kind of funny, I know, but useful for py-up-exception.
713 ((eq position 'bob) (beginning-of-buffer))
714 ((eq position 'eob) (end-of-buffer))
715 ((eq position 'boi) (back-to-indentation))
716 ((eq position 'bos) (py-goto-initial-line))
717 (t (error "Unknown buffer position requested: %s" position))
718 )
719 (prog1
720 (point)
721 (goto-char here))))
722
723(defsubst py-highlight-line (from to file line)
724 (cond
725 ((fboundp 'make-extent)
726 ;; XEmacs
727 (let ((e (make-extent from to)))
728 (set-extent-property e 'mouse-face 'highlight)
729 (set-extent-property e 'py-exc-info (cons file line))
730 (set-extent-property e 'keymap py-mode-output-map)))
731 (t
732 ;; Emacs -- Please port this!
733 )
734 ))
735
736(defun py-in-literal (&optional lim)
737 "Return non-nil if point is in a Python literal (a comment or string).
738Optional argument LIM indicates the beginning of the containing form,
739i.e. the limit on how far back to scan."
740 ;; This is the version used for non-XEmacs, which has a nicer
741 ;; interface.
742 ;;
743 ;; WARNING: Watch out for infinite recursion.
744 (let* ((lim (or lim (py-point 'bod)))
745 (state (parse-partial-sexp lim (point))))
746 (cond
747 ((nth 3 state) 'string)
748 ((nth 4 state) 'comment)
749 (t nil))))
750
751;; XEmacs has a built-in function that should make this much quicker.
752;; In this case, lim is ignored
753(defun py-fast-in-literal (&optional lim)
754 "Fast version of `py-in-literal', used only by XEmacs.
755Optional LIM is ignored."
756 ;; don't have to worry about context == 'block-comment
757 (buffer-syntactic-context))
758
759(if (fboundp 'buffer-syntactic-context)
760 (defalias 'py-in-literal 'py-fast-in-literal))
761
762
763
Barry Warsaw42f707f1996-07-29 21:05:05 +0000764;; Menu definitions, only relevent if you have the easymenu.el package
765;; (standard in the latest Emacs 19 and XEmacs 19 distributions).
Barry Warsaw5490a061996-08-06 15:43:33 +0000766(defvar py-menu nil
767 "Menu for Python Mode.
Barry Warsawc72c11c1997-08-09 06:42:08 +0000768This menu will get created automatically if you have the `easymenu'
769package. Note that the latest X/Emacs releases contain this package.")
Barry Warsaw5490a061996-08-06 15:43:33 +0000770
Barry Warsawc72c11c1997-08-09 06:42:08 +0000771(and (py-safe (require 'easymenu) t)
772 (easy-menu-define
773 py-menu py-mode-map "Python Mode menu"
774 '("Python"
775 ["Comment Out Region" py-comment-region (mark)]
776 ["Uncomment Region" (py-comment-region (point) (mark) '(4)) (mark)]
777 "-"
778 ["Mark current block" py-mark-block t]
Barry Warsaw2518c671997-11-05 00:51:08 +0000779 ["Mark current def" py-mark-def-or-class t]
780 ["Mark current class" (py-mark-def-or-class t) t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000781 "-"
782 ["Shift region left" py-shift-region-left (mark)]
783 ["Shift region right" py-shift-region-right (mark)]
784 "-"
Barry Warsaw820273d1998-05-19 15:54:45 +0000785 ["Import/reload file" py-execute-import-or-reload t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000786 ["Execute buffer" py-execute-buffer t]
787 ["Execute region" py-execute-region (mark)]
Barry Warsaw820273d1998-05-19 15:54:45 +0000788 ["Execute def or class" py-execute-def-or-class (mark)]
Barry Warsaw1d0364b1998-05-19 16:15:26 +0000789 ["Execute string" py-execute-string t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000790 ["Start interpreter..." py-shell t]
791 "-"
792 ["Go to start of block" py-goto-block-up t]
Barry Warsawab0e86c1998-05-19 15:31:46 +0000793 ["Go to start of class" (py-beginning-of-def-or-class t) t]
794 ["Move to end of class" (py-end-of-def-or-class t) t]
795 ["Move to start of def" py-beginning-of-def-or-class t]
796 ["Move to end of def" py-end-of-def-or-class t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000797 "-"
798 ["Describe mode" py-describe-mode t]
799 )))
Barry Warsaw42f707f1996-07-29 21:05:05 +0000800
Barry Warsaw81437461996-08-01 19:48:02 +0000801
802
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000803;; Imenu definitions
804(defvar py-imenu-class-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000805 (concat ; <<classes>>
806 "\\(" ;
807 "^[ \t]*" ; newline and maybe whitespace
808 "\\(class[ \t]+[a-zA-Z0-9_]+\\)" ; class name
809 ; possibly multiple superclasses
Barry Warsaw3179fe01998-04-04 21:36:53 +0000810 "\\([ \t]*\\((\\([a-zA-Z0-9_,. \t\n]\\)*)\\)?\\)"
Barry Warsaw81437461996-08-01 19:48:02 +0000811 "[ \t]*:" ; and the final :
812 "\\)" ; >>classes<<
813 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000814 "Regexp for Python classes for use with the Imenu package."
Barry Warsaw81437461996-08-01 19:48:02 +0000815 )
816
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000817(defvar py-imenu-method-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000818 (concat ; <<methods and functions>>
819 "\\(" ;
820 "^[ \t]*" ; new line and maybe whitespace
821 "\\(def[ \t]+" ; function definitions start with def
822 "\\([a-zA-Z0-9_]+\\)" ; name is here
823 ; function arguments...
Barry Warsaw1d5f9881998-10-28 04:08:13 +0000824;; "[ \t]*(\\([-+/a-zA-Z0-9_=,\* \t\n.()\"'#]*\\))"
825 "[ \t]*(\\([^:#]*\\))"
Barry Warsaw81437461996-08-01 19:48:02 +0000826 "\\)" ; end of def
827 "[ \t]*:" ; and then the :
828 "\\)" ; >>methods and functions<<
829 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000830 "Regexp for Python methods/functions for use with the Imenu package."
Barry Warsaw81437461996-08-01 19:48:02 +0000831 )
832
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000833(defvar py-imenu-method-no-arg-parens '(2 8)
834 "Indices into groups of the Python regexp for use with Imenu.
Barry Warsaw81437461996-08-01 19:48:02 +0000835
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000836Using these values will result in smaller Imenu lists, as arguments to
Barry Warsaw81437461996-08-01 19:48:02 +0000837functions are not listed.
838
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000839See the variable `py-imenu-show-method-args-p' for more
Barry Warsaw81437461996-08-01 19:48:02 +0000840information.")
841
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000842(defvar py-imenu-method-arg-parens '(2 7)
Barry Warsaw1bbc0311998-10-27 21:54:56 +0000843 "Indices into groups of the Python regexp for use with imenu.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000844Using these values will result in large Imenu lists, as arguments to
Barry Warsaw81437461996-08-01 19:48:02 +0000845functions are listed.
846
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000847See the variable `py-imenu-show-method-args-p' for more
Barry Warsaw81437461996-08-01 19:48:02 +0000848information.")
849
850;; Note that in this format, this variable can still be used with the
851;; imenu--generic-function. Otherwise, there is no real reason to have
852;; it.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000853(defvar py-imenu-generic-expression
Barry Warsaw81437461996-08-01 19:48:02 +0000854 (cons
855 (concat
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000856 py-imenu-class-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000857 "\\|" ; or...
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000858 py-imenu-method-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000859 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000860 py-imenu-method-no-arg-parens)
861 "Generic Python expression which may be used directly with Imenu.
Barry Warsaw81437461996-08-01 19:48:02 +0000862Used by setting the variable `imenu-generic-expression' to this value.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000863Also, see the function \\[py-imenu-create-index] for a better
864alternative for finding the index.")
Barry Warsaw81437461996-08-01 19:48:02 +0000865
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000866;; These next two variables are used when searching for the Python
Barry Warsaw81437461996-08-01 19:48:02 +0000867;; class/definitions. Just saving some time in accessing the
868;; generic-python-expression, really.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000869(defvar py-imenu-generic-regexp nil)
870(defvar py-imenu-generic-parens nil)
Barry Warsaw81437461996-08-01 19:48:02 +0000871
872
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000873(defun py-imenu-create-index-function ()
874 "Python interface function for the Imenu package.
875Finds all Python classes and functions/methods. Calls function
876\\[py-imenu-create-index-engine]. See that function for the details
877of how this works."
878 (setq py-imenu-generic-regexp (car py-imenu-generic-expression)
879 py-imenu-generic-parens (if py-imenu-show-method-args-p
880 py-imenu-method-arg-parens
881 py-imenu-method-no-arg-parens))
Barry Warsaw81437461996-08-01 19:48:02 +0000882 (goto-char (point-min))
Barry Warsaw1d5f9881998-10-28 04:08:13 +0000883 ;; Warning: When the buffer has no classes or functions, this will
884 ;; return nil, which seems proper according to the Imenu API, but
885 ;; causes an error in the XEmacs port of Imenu. Sigh.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000886 (py-imenu-create-index-engine nil))
Barry Warsaw81437461996-08-01 19:48:02 +0000887
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000888(defun py-imenu-create-index-engine (&optional start-indent)
889 "Function for finding Imenu definitions in Python.
Barry Warsaw81437461996-08-01 19:48:02 +0000890
891Finds all definitions (classes, methods, or functions) in a Python
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000892file for the Imenu package.
Barry Warsaw81437461996-08-01 19:48:02 +0000893
894Returns a possibly nested alist of the form
895
896 (INDEX-NAME . INDEX-POSITION)
897
898The second element of the alist may be an alist, producing a nested
899list as in
900
901 (INDEX-NAME . INDEX-ALIST)
902
903This function should not be called directly, as it calls itself
904recursively and requires some setup. Rather this is the engine for
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000905the function \\[py-imenu-create-index-function].
Barry Warsaw81437461996-08-01 19:48:02 +0000906
907It works recursively by looking for all definitions at the current
908indention level. When it finds one, it adds it to the alist. If it
909finds a definition at a greater indentation level, it removes the
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000910previous definition from the alist. In its place it adds all
Barry Warsaw81437461996-08-01 19:48:02 +0000911definitions found at the next indentation level. When it finds a
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000912definition that is less indented then the current level, it returns
913the alist it has created thus far.
Barry Warsaw81437461996-08-01 19:48:02 +0000914
915The optional argument START-INDENT indicates the starting indentation
916at which to continue looking for Python classes, methods, or
917functions. If this is not supplied, the function uses the indentation
918of the first definition found."
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000919 (let (index-alist
920 sub-method-alist
Barry Warsaw81437461996-08-01 19:48:02 +0000921 looking-p
922 def-name prev-name
923 cur-indent def-pos
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000924 (class-paren (first py-imenu-generic-parens))
925 (def-paren (second py-imenu-generic-parens)))
Barry Warsaw81437461996-08-01 19:48:02 +0000926 (setq looking-p
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000927 (re-search-forward py-imenu-generic-regexp (point-max) t))
Barry Warsaw81437461996-08-01 19:48:02 +0000928 (while looking-p
929 (save-excursion
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000930 ;; used to set def-name to this value but generic-extract-name
931 ;; is new to imenu-1.14. this way it still works with
932 ;; imenu-1.11
933 ;;(imenu--generic-extract-name py-imenu-generic-parens))
Barry Warsaw81437461996-08-01 19:48:02 +0000934 (let ((cur-paren (if (match-beginning class-paren)
935 class-paren def-paren)))
936 (setq def-name
Barry Warsawc8520351997-11-26 06:14:40 +0000937 (buffer-substring-no-properties (match-beginning cur-paren)
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000938 (match-end cur-paren))))
Barry Warsaw93c88cc1998-08-18 02:00:44 +0000939 (save-match-data
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000940 (py-beginning-of-def-or-class 'either))
Barry Warsaw81437461996-08-01 19:48:02 +0000941 (beginning-of-line)
942 (setq cur-indent (current-indentation)))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000943 ;; HACK: want to go to the next correct definition location. We
944 ;; explicitly list them here but it would be better to have them
945 ;; in a list.
Barry Warsaw81437461996-08-01 19:48:02 +0000946 (setq def-pos
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000947 (or (match-beginning class-paren)
948 (match-beginning def-paren)))
Barry Warsaw81437461996-08-01 19:48:02 +0000949 ;; if we don't have a starting indent level, take this one
950 (or start-indent
951 (setq start-indent cur-indent))
Barry Warsaw81437461996-08-01 19:48:02 +0000952 ;; if we don't have class name yet, take this one
953 (or prev-name
954 (setq prev-name def-name))
Barry Warsaw81437461996-08-01 19:48:02 +0000955 ;; what level is the next definition on? must be same, deeper
956 ;; or shallower indentation
957 (cond
Barry Warsaw32a03962002-07-16 16:04:13 +0000958 ;; Skip code in comments and strings
959 ((py-in-literal))
Barry Warsaw81437461996-08-01 19:48:02 +0000960 ;; at the same indent level, add it to the list...
961 ((= start-indent cur-indent)
Barry Warsaw81437461996-08-01 19:48:02 +0000962 (push (cons def-name def-pos) index-alist))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000963 ;; deeper indented expression, recurse
Barry Warsaw81437461996-08-01 19:48:02 +0000964 ((< start-indent cur-indent)
Barry Warsaw81437461996-08-01 19:48:02 +0000965 ;; the point is currently on the expression we're supposed to
966 ;; start on, so go back to the last expression. The recursive
967 ;; call will find this place again and add it to the correct
968 ;; list
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000969 (re-search-backward py-imenu-generic-regexp (point-min) 'move)
970 (setq sub-method-alist (py-imenu-create-index-engine cur-indent))
Barry Warsaw81437461996-08-01 19:48:02 +0000971 (if sub-method-alist
972 ;; we put the last element on the index-alist on the start
973 ;; of the submethod alist so the user can still get to it.
974 (let ((save-elmt (pop index-alist)))
Barry Warsawc8520351997-11-26 06:14:40 +0000975 (push (cons prev-name
Barry Warsaw81437461996-08-01 19:48:02 +0000976 (cons save-elmt sub-method-alist))
977 index-alist))))
Barry Warsaw81437461996-08-01 19:48:02 +0000978 ;; found less indented expression, we're done.
979 (t
980 (setq looking-p nil)
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000981 (re-search-backward py-imenu-generic-regexp (point-min) t)))
982 ;; end-cond
Barry Warsaw81437461996-08-01 19:48:02 +0000983 (setq prev-name def-name)
984 (and looking-p
985 (setq looking-p
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000986 (re-search-forward py-imenu-generic-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000987 (point-max) 'move))))
988 (nreverse index-alist)))
989
Barry Warsaw88491612002-04-25 21:31:47 +0000990
991
992(defun py-choose-shell-by-shebang ()
993 "Choose CPython or JPython mode by looking at #! on the first line.
994Returns the appropriate mode function.
995Used by `py-choose-shell', and similar to but distinct from
996`set-auto-mode', though it uses `auto-mode-interpreter-regexp' (if available)."
997 ;; look for an interpreter specified in the first line
998 ;; similar to set-auto-mode (files.el)
999 (let* ((re (if (boundp 'auto-mode-interpreter-regexp)
1000 auto-mode-interpreter-regexp
1001 ;; stolen from Emacs 21.2
1002 "#![ \t]?\\([^ \t\n]*/bin/env[ \t]\\)?\\([^ \t\n]+\\)"))
1003 (interpreter (save-excursion
1004 (goto-char (point-min))
1005 (if (looking-at re)
1006 (match-string 2)
1007 "")))
1008 elt)
1009 ;; Map interpreter name to a mode.
1010 (setq elt (assoc (file-name-nondirectory interpreter)
1011 py-shell-alist))
1012 (and elt (caddr elt))))
1013
1014
1015
1016(defun py-choose-shell-by-import ()
1017 "Choose CPython or JPython mode based imports.
1018If a file imports any packages in `py-jpython-packages', within
1019`py-import-check-point-max' characters from the start of the file,
1020return `jpython', otherwise return nil."
1021 (let (mode)
1022 (save-excursion
1023 (goto-char (point-min))
1024 (while (and (not mode)
1025 (search-forward-regexp
1026 "^\\(\\(from\\)\\|\\(import\\)\\) \\([^ \t\n.]+\\)"
1027 py-import-check-point-max t))
1028 (setq mode (and (member (match-string 4) py-jpython-packages)
1029 'jpython
1030 ))))
1031 mode))
1032
1033
1034(defun py-choose-shell ()
1035 "Choose CPython or JPython mode. Returns the appropriate mode function.
1036This does the following:
1037 - look for an interpreter with `py-choose-shell-by-shebang'
1038 - examine imports using `py-choose-shell-by-import'
1039 - default to the variable `py-default-interpreter'"
1040 (interactive)
1041 (or (py-choose-shell-by-shebang)
1042 (py-choose-shell-by-import)
1043 py-default-interpreter
1044; 'cpython ;; don't use to py-default-interpreter, because default
1045; ;; is only way to choose CPython
1046 ))
1047
Barry Warsaw42f707f1996-07-29 21:05:05 +00001048
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001049;;;###autoload
Barry Warsaw7ae77681994-12-12 20:38:05 +00001050(defun python-mode ()
1051 "Major mode for editing Python files.
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001052To submit a problem report, enter `\\[py-submit-bug-report]' from a
1053`python-mode' buffer. Do `\\[py-describe-mode]' for detailed
1054documentation. To see what version of `python-mode' you are running,
1055enter `\\[py-version]'.
1056
1057This mode knows about Python indentation, tokens, comments and
1058continuation lines. Paragraphs are separated by blank lines only.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001059
1060COMMANDS
1061\\{py-mode-map}
1062VARIABLES
1063
Barry Warsaw42f707f1996-07-29 21:05:05 +00001064py-indent-offset\t\tindentation increment
Barry Warsaw41a05c71998-08-10 16:33:12 +00001065py-block-comment-prefix\t\tcomment string used by `comment-region'
Barry Warsaw42f707f1996-07-29 21:05:05 +00001066py-python-command\t\tshell command to invoke Python interpreter
Barry Warsaw42f707f1996-07-29 21:05:05 +00001067py-temp-directory\t\tdirectory used for temp files (if needed)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001068py-beep-if-tab-change\t\tring the bell if `tab-width' is changed"
Barry Warsaw7ae77681994-12-12 20:38:05 +00001069 (interactive)
Barry Warsaw615d4a41996-09-04 14:14:10 +00001070 ;; set up local variables
Barry Warsaw7ae77681994-12-12 20:38:05 +00001071 (kill-all-local-variables)
Barry Warsaw615d4a41996-09-04 14:14:10 +00001072 (make-local-variable 'font-lock-defaults)
1073 (make-local-variable 'paragraph-separate)
1074 (make-local-variable 'paragraph-start)
1075 (make-local-variable 'require-final-newline)
1076 (make-local-variable 'comment-start)
Barry Warsaw5c8bef11996-12-17 21:56:10 +00001077 (make-local-variable 'comment-end)
Barry Warsaw615d4a41996-09-04 14:14:10 +00001078 (make-local-variable 'comment-start-skip)
1079 (make-local-variable 'comment-column)
Barry Warsaw003932a1998-07-07 15:11:24 +00001080 (make-local-variable 'comment-indent-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +00001081 (make-local-variable 'indent-region-function)
1082 (make-local-variable 'indent-line-function)
Barry Warsawb3e81d51996-09-04 15:12:42 +00001083 (make-local-variable 'add-log-current-defun-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +00001084 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +00001085 (set-syntax-table py-mode-syntax-table)
Barry Warsaw003932a1998-07-07 15:11:24 +00001086 (setq major-mode 'python-mode
1087 mode-name "Python"
1088 local-abbrev-table python-mode-abbrev-table
1089 font-lock-defaults '(python-font-lock-keywords)
1090 paragraph-separate "^[ \t]*$"
1091 paragraph-start "^[ \t]*$"
1092 require-final-newline t
1093 comment-start "# "
1094 comment-end ""
1095 comment-start-skip "# *"
1096 comment-column 40
1097 comment-indent-function 'py-comment-indent-function
1098 indent-region-function 'py-indent-region
1099 indent-line-function 'py-indent-line
Barry Warsawb3e81d51996-09-04 15:12:42 +00001100 ;; tell add-log.el how to find the current function/method/variable
1101 add-log-current-defun-function 'py-current-defun
Barry Warsawb1f89511996-09-03 16:38:30 +00001102 )
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001103 (use-local-map py-mode-map)
Barry Warsaw42f707f1996-07-29 21:05:05 +00001104 ;; add the menu
1105 (if py-menu
1106 (easy-menu-add py-menu))
Barry Warsaw57697af1995-09-14 20:01:14 +00001107 ;; Emacs 19 requires this
Barry Warsawc72c11c1997-08-09 06:42:08 +00001108 (if (boundp 'comment-multi-line)
Barry Warsaw57697af1995-09-14 20:01:14 +00001109 (setq comment-multi-line nil))
Barry Warsaw6839d3a1998-10-28 00:10:45 +00001110 ;; Install Imenu if available
Barry Warsaw742a5111998-03-13 17:29:15 +00001111 (when (py-safe (require 'imenu))
Barry Warsaw6839d3a1998-10-28 00:10:45 +00001112 (setq imenu-create-index-function #'py-imenu-create-index-function)
1113 (setq imenu-generic-expression py-imenu-generic-expression)
Barry Warsaw742a5111998-03-13 17:29:15 +00001114 (if (fboundp 'imenu-add-to-menubar)
1115 (imenu-add-to-menubar (format "%s-%s" "IM" mode-name)))
1116 )
1117 ;; Run the mode hook. Note that py-mode-hook is deprecated.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001118 (if python-mode-hook
1119 (run-hooks 'python-mode-hook)
Barry Warsaw742a5111998-03-13 17:29:15 +00001120 (run-hooks 'py-mode-hook))
1121 ;; Now do the automagical guessing
1122 (if py-smart-indentation
1123 (let ((offset py-indent-offset))
Barry Warsaw145ab1c1998-05-19 14:49:49 +00001124 ;; It's okay if this fails to guess a good value
Barry Warsaw742a5111998-03-13 17:29:15 +00001125 (if (and (py-safe (py-guess-indent-offset))
1126 (<= py-indent-offset 8)
1127 (>= py-indent-offset 2))
1128 (setq offset py-indent-offset))
1129 (setq py-indent-offset offset)
Barry Warsaw639eea61998-03-16 18:12:13 +00001130 ;; Only turn indent-tabs-mode off if tab-width !=
1131 ;; py-indent-offset. Never turn it on, because the user must
1132 ;; have explicitly turned it off.
1133 (if (/= tab-width py-indent-offset)
1134 (setq indent-tabs-mode nil))
Barry Warsaw11f21561999-07-28 21:59:43 +00001135 ))
1136 ;; Set the default shell if not already set
1137 (when (null py-which-shell)
Barry Warsaw88491612002-04-25 21:31:47 +00001138 (py-toggle-shells (py-choose-shell))))
1139
1140
1141(defun jpython-mode ()
1142 "Major mode for editing JPython/Jython files.
1143This is a simple wrapper around `python-mode'.
1144It runs `jpython-mode-hook' then calls `python-mode.'
1145It is added to `interpreter-mode-alist' and `py-choose-shell'.
1146"
1147 (interactive)
1148 (python-mode)
1149 (py-toggle-shells 'jpython)
1150 (when jpython-mode-hook
1151 (run-hooks 'jpython-mode-hook)))
1152
1153
1154;; It's handy to add recognition of Python files to the
1155;; interpreter-mode-alist and to auto-mode-alist. With the former, we
1156;; can specify different `derived-modes' based on the #! line, but
1157;; with the latter, we can't. So we just won't add them if they're
1158;; already added.
1159(let ((modes '(("jpython" . jpython-mode)
1160 ("jython" . jpython-mode)
1161 ("python" . python-mode))))
1162 (while modes
1163 (when (not (assoc (car modes) interpreter-mode-alist))
Barry Warsawcf22c822002-04-25 21:46:33 +00001164 (push (car modes) interpreter-mode-alist))
Barry Warsaw88491612002-04-25 21:31:47 +00001165 (setq modes (cdr modes))))
1166
1167(when (not (or (rassq 'python-mode auto-mode-alist)
1168 (rassq 'jpython-mode auto-mode-alist)))
1169 (push '("\\.py$" . python-mode) auto-mode-alist))
1170
Barry Warsaw7ae77681994-12-12 20:38:05 +00001171
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001172
Barry Warsawb91b7431995-03-14 15:55:20 +00001173;; electric characters
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001174(defun py-outdent-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00001175 "Returns non-nil if the current line should dedent one level."
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001176 (save-excursion
1177 (and (progn (back-to-indentation)
1178 (looking-at py-outdent-re))
Barry Warsaw1a1c6bb1999-01-09 17:22:38 +00001179 ;; short circuit infloop on illegal construct
1180 (not (bobp))
Barry Warsawf06777d1998-01-21 05:36:18 +00001181 (progn (forward-line -1)
1182 (py-goto-initial-line)
1183 (back-to-indentation)
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001184 (while (or (looking-at py-blank-or-comment-re)
1185 (bobp))
1186 (backward-to-indentation 1))
1187 (not (looking-at py-no-outdent-re)))
1188 )))
Skip Montanaro98a4fbe2003-08-01 04:00:32 +00001189
Barry Warsawb91b7431995-03-14 15:55:20 +00001190(defun py-electric-colon (arg)
1191 "Insert a colon.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001192In certain cases the line is dedented appropriately. If a numeric
1193argument ARG is provided, that many colons are inserted
1194non-electrically. Electric behavior is inhibited inside a string or
1195comment."
Skip Montanaro98a4fbe2003-08-01 04:00:32 +00001196 (interactive "*P")
Barry Warsawb91b7431995-03-14 15:55:20 +00001197 (self-insert-command (prefix-numeric-value arg))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001198 ;; are we in a string or comment?
1199 (if (save-excursion
1200 (let ((pps (parse-partial-sexp (save-excursion
Barry Warsawab0e86c1998-05-19 15:31:46 +00001201 (py-beginning-of-def-or-class)
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001202 (point))
1203 (point))))
1204 (not (or (nth 3 pps) (nth 4 pps)))))
1205 (save-excursion
1206 (let ((here (point))
1207 (outdent 0)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001208 (indent (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001209 (if (and (not arg)
1210 (py-outdent-p)
1211 (= indent (save-excursion
Barry Warsawa7661821996-08-02 16:22:43 +00001212 (py-next-statement -1)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001213 (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001214 )
1215 (setq outdent py-indent-offset))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001216 ;; Don't indent, only dedent. This assumes that any lines
1217 ;; that are already dedented relative to
1218 ;; py-compute-indentation were put there on purpose. It's
1219 ;; highly annoying to have `:' indent for you. Use TAB, C-c
1220 ;; C-l or C-c C-r to adjust. TBD: Is there a better way to
1221 ;; determine this???
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001222 (if (< (current-indentation) indent) nil
1223 (goto-char here)
1224 (beginning-of-line)
1225 (delete-horizontal-space)
1226 (indent-to (- indent outdent))
1227 )))))
Barry Warsawb91b7431995-03-14 15:55:20 +00001228
1229
Barry Warsawa97a3f31997-11-04 18:47:06 +00001230;; Python subprocess utilities and filters
1231(defun py-execute-file (proc filename)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001232 "Send to Python interpreter process PROC \"execfile('FILENAME')\".
1233Make that process's buffer visible and force display. Also make
1234comint believe the user typed this string so that
1235`kill-output-from-shell' does The Right Thing."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001236 (let ((curbuf (current-buffer))
1237 (procbuf (process-buffer proc))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001238; (comint-scroll-to-bottom-on-output t)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001239 (msg (format "## working on region in file %s...\n" filename))
Barry Warsaw02e5f691998-09-24 23:48:40 +00001240 (cmd (format "execfile(r'%s')\n" filename)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001241 (unwind-protect
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001242 (save-excursion
Barry Warsawa97a3f31997-11-04 18:47:06 +00001243 (set-buffer procbuf)
1244 (goto-char (point-max))
1245 (move-marker (process-mark proc) (point))
1246 (funcall (process-filter proc) proc msg))
1247 (set-buffer curbuf))
1248 (process-send-string proc cmd)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001249
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001250(defun py-comint-output-filter-function (string)
1251 "Watch output for Python prompt and exec next file waiting in queue.
1252This function is appropriate for `comint-output-filter-functions'."
Barry Warsaw014e0e21998-11-17 19:24:47 +00001253 ;; TBD: this should probably use split-string
Barry Warsaw4f94c731998-09-25 19:40:10 +00001254 (when (and (or (string-equal string ">>> ")
Barry Warsaw4f94c731998-09-25 19:40:10 +00001255 (and (>= (length string) 5)
1256 (string-equal (substring string -5) "\n>>> ")))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001257 py-file-queue)
Barry Warsaw17afa132002-04-26 15:49:52 +00001258 (pop-to-buffer (current-buffer))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001259 (py-safe (delete-file (car py-file-queue)))
1260 (setq py-file-queue (cdr py-file-queue))
1261 (if py-file-queue
1262 (let ((pyproc (get-buffer-process (current-buffer))))
1263 (py-execute-file pyproc (car py-file-queue))))
1264 ))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001265
Barry Warsaw4f577d22001-04-11 20:23:17 +00001266(defun py-pdbtrack-overlay-arrow (activation)
1267 "Activate or de arrow at beginning-of-line in current buffer."
1268 ;; This was derived/simplified from edebug-overlay-arrow
1269 (cond (activation
1270 (setq overlay-arrow-position (make-marker))
1271 (setq overlay-arrow-string "=>")
1272 (set-marker overlay-arrow-position (py-point 'bol) (current-buffer))
1273 (setq py-pdbtrack-is-tracking-p t))
1274 (overlay-arrow-position
1275 (setq overlay-arrow-position nil)
1276 (setq py-pdbtrack-is-tracking-p nil))
1277 ))
1278
1279(defun py-pdbtrack-track-stack-file (text)
1280 "Show the file indicated by the pdb stack entry line, in a separate window.
1281
1282Activity is disabled if the buffer-local variable
1283`py-pdbtrack-do-tracking-p' is nil.
1284
1285We depend on the pdb input prompt matching `py-pdbtrack-input-prompt'
Ken Manheimere7aca522003-03-03 00:35:32 +00001286at the beginning of the line.
1287
1288If the traceback target file path is invalid, we look for the most
1289recently visited python-mode buffer which either has the name of the
1290current function \(or class) or which defines the function \(or
1291class). This is to provide for remote scripts, eg, Zope's 'Script
Ken Manheimer595adce2003-05-01 20:46:14 +00001292(Python)' - put a _copy_ of the script in a buffer named for the
1293script, and set to python-mode, and pdbtrack will find it.)"
Barry Warsaw4f577d22001-04-11 20:23:17 +00001294 ;; Instead of trying to piece things together from partial text
1295 ;; (which can be almost useless depending on Emacs version), we
1296 ;; monitor to the point where we have the next pdb prompt, and then
1297 ;; check all text from comint-last-input-end to process-mark.
1298 ;;
Ken Manheimere7aca522003-03-03 00:35:32 +00001299 ;; Also, we're very conservative about clearing the overlay arrow,
1300 ;; to minimize residue. This means, for instance, that executing
1301 ;; other pdb commands wipe out the highlight. You can always do a
1302 ;; 'where' (aka 'w') command to reveal the overlay arrow.
Barry Warsaw4f577d22001-04-11 20:23:17 +00001303 (let* ((origbuf (current-buffer))
1304 (currproc (get-buffer-process origbuf)))
Ken Manheimere7aca522003-03-03 00:35:32 +00001305
Barry Warsaw4f577d22001-04-11 20:23:17 +00001306 (if (not (and currproc py-pdbtrack-do-tracking-p))
1307 (py-pdbtrack-overlay-arrow nil)
Ken Manheimere7aca522003-03-03 00:35:32 +00001308
1309 (let* ((procmark (process-mark currproc))
Barry Warsaw4f577d22001-04-11 20:23:17 +00001310 (block (buffer-substring (max comint-last-input-end
1311 (- procmark
1312 py-pdbtrack-track-range))
1313 procmark))
Ken Manheimere7aca522003-03-03 00:35:32 +00001314 target target_fname target_lineno)
1315
Barry Warsaw4f577d22001-04-11 20:23:17 +00001316 (if (not (string-match (concat py-pdbtrack-input-prompt "$") block))
1317 (py-pdbtrack-overlay-arrow nil)
Ken Manheimere7aca522003-03-03 00:35:32 +00001318
1319 (setq target (py-pdbtrack-get-source-buffer block))
1320
1321 (if (stringp target)
1322 (message "pdbtrack: %s" target)
1323
1324 (setq target_lineno (car target))
1325 (setq target_buffer (cadr target))
1326 (setq target_fname (buffer-file-name target_buffer))
1327 (switch-to-buffer-other-window target_buffer)
1328 (goto-line target_lineno)
1329 (message "pdbtrack: line %s, file %s" target_lineno target_fname)
1330 (py-pdbtrack-overlay-arrow t)
1331 (pop-to-buffer origbuf t)
1332
1333 )))))
1334 )
1335
1336(defun py-pdbtrack-get-source-buffer (block)
1337 "Return line number and buffer of code indicated by block's traceback text.
1338
1339We look first to visit the file indicated in the trace.
1340
1341Failing that, we look for the most recently visited python-mode buffer
1342with the same name or having
1343having the named function.
1344
1345If we're unable find the source code we return a string describing the
1346problem as best as we can determine."
1347
1348 (if (not (string-match py-pdbtrack-stack-entry-regexp block))
1349
1350 "Traceback cue not found"
1351
1352 (let* ((filename (match-string 1 block))
1353 (lineno (string-to-int (match-string 2 block)))
1354 (funcname (match-string 3 block))
1355 funcbuffer)
1356
1357 (cond ((file-exists-p filename)
1358 (list lineno (find-file-noselect filename)))
1359
1360 ((setq funcbuffer (py-pdbtrack-grub-for-buffer funcname lineno))
1361 (if (string-match "/Script (Python)$" filename)
1362 ;; Add in number of lines for leading '##' comments:
1363 (setq lineno
1364 (+ lineno
1365 (save-excursion
1366 (set-buffer funcbuffer)
1367 (count-lines
1368 (point-min)
Ken Manheimerad428cd2003-03-03 04:05:03 +00001369 (max (point-min)
1370 (string-match "^\\([^#]\\|#[^#]\\|#$\\)"
1371 (buffer-substring (point-min)
Ken Manheimer8e9b80f2003-06-17 19:18:57 +00001372 (point-max)))
Ken Manheimerad428cd2003-03-03 04:05:03 +00001373 ))))))
Ken Manheimere7aca522003-03-03 00:35:32 +00001374 (list lineno funcbuffer))
1375
1376 ((= (elt filename 0) ?\<)
1377 (format "(Non-file source: '%s')" filename))
1378
Ken Manheimer595adce2003-05-01 20:46:14 +00001379 (t (format "Not found: %s(), %s" funcname filename)))
Ken Manheimere7aca522003-03-03 00:35:32 +00001380 )
1381 )
1382 )
1383
1384(defun py-pdbtrack-grub-for-buffer (funcname lineno)
1385 "Find most recent buffer itself named or having function funcname.
1386
Ken Manheimered6000a2003-03-03 17:09:44 +00001387We first check the last buffer this function found, if any, then walk
1388throught the buffer-list history for python-mode buffers that are
1389named for funcname or define a function funcname."
Ken Manheimere7aca522003-03-03 00:35:32 +00001390 (let ((buffers (buffer-list))
Ken Manheimere7aca522003-03-03 00:35:32 +00001391 curbuf
1392 got)
1393 (while (and buffers (not got))
1394 (setq buf (car buffers)
1395 buffers (cdr buffers))
Ken Manheimered6000a2003-03-03 17:09:44 +00001396 (if (and (save-excursion (set-buffer buf)
1397 (string= major-mode "python-mode"))
1398 (or (string-match funcname (buffer-name buf))
Ken Manheimere7aca522003-03-03 00:35:32 +00001399 (string-match (concat "^\\s-*\\(def\\|class\\)\\s-+"
1400 funcname "\\s-*(")
Ken Manheimer8e9b80f2003-06-17 19:18:57 +00001401 (save-excursion
1402 (set-buffer buf)
1403 (buffer-substring (point-min)
1404 (point-max))))))
Ken Manheimere7aca522003-03-03 00:35:32 +00001405 (setq got buf)))
Ken Manheimered6000a2003-03-03 17:09:44 +00001406 (setq py-pdbtrack-last-grubbed-buffer got)))
Barry Warsaw4f577d22001-04-11 20:23:17 +00001407
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001408(defun py-postprocess-output-buffer (buf)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001409 "Highlight exceptions found in BUF.
1410If an exception occurred return t, otherwise return nil. BUF must exist."
Barry Warsawf9b99f41998-03-26 16:08:59 +00001411 (let (line file bol err-p)
Barry Warsaw9981d221997-12-03 05:25:48 +00001412 (save-excursion
1413 (set-buffer buf)
1414 (beginning-of-buffer)
1415 (while (re-search-forward py-traceback-line-re nil t)
1416 (setq file (match-string 1)
1417 line (string-to-int (match-string 2))
1418 bol (py-point 'bol))
Barry Warsawf9b99f41998-03-26 16:08:59 +00001419 (py-highlight-line bol (py-point 'eol) file line)))
1420 (when (and py-jump-on-exception line)
1421 (beep)
1422 (py-jump-to-exception file line)
1423 (setq err-p t))
1424 err-p))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001425
Barry Warsaw9981d221997-12-03 05:25:48 +00001426
Barry Warsawa97a3f31997-11-04 18:47:06 +00001427
1428;;; Subprocess commands
1429
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001430;; only used when (memq 'broken-temp-names py-emacs-features)
1431(defvar py-serial-number 0)
1432(defvar py-exception-buffer nil)
1433(defconst py-output-buffer "*Python Output*")
Barry Warsawa2398801998-04-09 23:28:20 +00001434(make-variable-buffer-local 'py-output-buffer)
1435
1436;; for toggling between CPython and JPython
Barry Warsawaa384fd1999-02-16 23:36:16 +00001437(defvar py-which-shell nil)
Barry Warsawa2398801998-04-09 23:28:20 +00001438(defvar py-which-args py-python-command-args)
1439(defvar py-which-bufname "Python")
1440(make-variable-buffer-local 'py-which-shell)
1441(make-variable-buffer-local 'py-which-args)
1442(make-variable-buffer-local 'py-which-bufname)
1443
1444(defun py-toggle-shells (arg)
1445 "Toggles between the CPython and JPython shells.
Barry Warsaw11f21561999-07-28 21:59:43 +00001446
Barry Warsaw41a05c71998-08-10 16:33:12 +00001447With positive argument ARG (interactively \\[universal-argument]),
1448uses the CPython shell, with negative ARG uses the JPython shell, and
Barry Warsaw11f21561999-07-28 21:59:43 +00001449with a zero argument, toggles the shell.
1450
1451Programmatically, ARG can also be one of the symbols `cpython' or
1452`jpython', equivalent to positive arg and negative arg respectively."
Barry Warsawa2398801998-04-09 23:28:20 +00001453 (interactive "P")
1454 ;; default is to toggle
1455 (if (null arg)
1456 (setq arg 0))
Barry Warsaw11f21561999-07-28 21:59:43 +00001457 ;; preprocess arg
1458 (cond
1459 ((equal arg 0)
1460 ;; toggle
1461 (if (string-equal py-which-bufname "Python")
1462 (setq arg -1)
1463 (setq arg 1)))
1464 ((equal arg 'cpython) (setq arg 1))
1465 ((equal arg 'jpython) (setq arg -1)))
Barry Warsawa2398801998-04-09 23:28:20 +00001466 (let (msg)
1467 (cond
1468 ((< 0 arg)
1469 ;; set to CPython
1470 (setq py-which-shell py-python-command
1471 py-which-args py-python-command-args
1472 py-which-bufname "Python"
1473 msg "CPython"
1474 mode-name "Python"))
1475 ((> 0 arg)
1476 (setq py-which-shell py-jpython-command
1477 py-which-args py-jpython-command-args
1478 py-which-bufname "JPython"
1479 msg "JPython"
1480 mode-name "JPython"))
1481 )
Barry Warsawea609c11998-04-10 16:08:26 +00001482 (message "Using the %s shell" msg)
Barry Warsawa2398801998-04-09 23:28:20 +00001483 (setq py-output-buffer (format "*%s Output*" py-which-bufname))))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001484
Barry Warsawa97a3f31997-11-04 18:47:06 +00001485;;;###autoload
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001486(defun py-shell (&optional argprompt)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001487 "Start an interactive Python interpreter in another window.
1488This is like Shell mode, except that Python is running in the window
1489instead of a shell. See the `Interactive Shell' and `Shell Mode'
1490sections of the Emacs manual for details, especially for the key
1491bindings active in the `*Python*' buffer.
1492
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001493With optional \\[universal-argument], the user is prompted for the
1494flags to pass to the Python interpreter. This has no effect when this
1495command is used to switch to an existing process, only when a new
1496process is started. If you use this, you will probably want to ensure
1497that the current arguments are retained (they will be included in the
1498prompt). This argument is ignored when this function is called
1499programmatically, or when running in Emacs 19.34 or older.
1500
Barry Warsawa2398801998-04-09 23:28:20 +00001501Note: You can toggle between using the CPython interpreter and the
1502JPython interpreter by hitting \\[py-toggle-shells]. This toggles
1503buffer local variables which control whether all your subshell
1504interactions happen to the `*JPython*' or `*Python*' buffers (the
1505latter is the name used for the CPython buffer).
1506
Barry Warsawa97a3f31997-11-04 18:47:06 +00001507Warning: Don't use an interactive Python if you change sys.ps1 or
1508sys.ps2 from their default values, or if you're running code that
1509prints `>>> ' or `... ' at the start of a line. `python-mode' can't
1510distinguish your output from Python's output, and assumes that `>>> '
1511at the start of a line is a prompt from Python. Similarly, the Emacs
1512Shell mode code assumes that both `>>> ' and `... ' at the start of a
1513line are Python prompts. Bad things can happen if you fool either
1514mode.
1515
1516Warning: If you do any editing *in* the process buffer *while* the
1517buffer is accepting output from Python, do NOT attempt to `undo' the
1518changes. Some of the output (nowhere near the parts you changed!) may
1519be lost if you do. This appears to be an Emacs bug, an unfortunate
1520interaction between undo and process filters; the same problem exists in
1521non-Python process buffers using the default (Emacs-supplied) process
1522filter."
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001523 (interactive "P")
Barry Warsaw50765ab1999-08-10 21:49:00 +00001524 ;; Set the default shell if not already set
1525 (when (null py-which-shell)
1526 (py-toggle-shells py-default-interpreter))
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001527 (let ((args py-which-args))
1528 (when (and argprompt
1529 (interactive-p)
1530 (fboundp 'split-string))
1531 ;; TBD: Perhaps force "-i" in the final list?
1532 (setq args (split-string
1533 (read-string (concat py-which-bufname
1534 " arguments: ")
1535 (concat
1536 (mapconcat 'identity py-which-args " ") " ")
1537 ))))
1538 (switch-to-buffer-other-window
1539 (apply 'make-comint py-which-bufname py-which-shell nil args))
1540 (make-local-variable 'comint-prompt-regexp)
1541 (setq comint-prompt-regexp "^>>> \\|^[.][.][.] \\|^(pdb) ")
1542 (add-hook 'comint-output-filter-functions
1543 'py-comint-output-filter-function)
Barry Warsaw4f577d22001-04-11 20:23:17 +00001544 ;; pdbtrack
1545 (add-hook 'comint-output-filter-functions 'py-pdbtrack-track-stack-file)
1546 (setq py-pdbtrack-do-tracking-p t)
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001547 (set-syntax-table py-mode-syntax-table)
1548 (use-local-map py-shell-map)
Barry Warsaw56bd2ed2002-04-25 15:44:17 +00001549 (run-hooks 'py-shell-hook)
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001550 ))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001551
Barry Warsawa97a3f31997-11-04 18:47:06 +00001552(defun py-clear-queue ()
1553 "Clear the queue of temporary files waiting to execute."
1554 (interactive)
1555 (let ((n (length py-file-queue)))
1556 (mapcar 'delete-file py-file-queue)
1557 (setq py-file-queue nil)
1558 (message "%d pending files de-queued." n)))
1559
Barry Warsaw820273d1998-05-19 15:54:45 +00001560
Barry Warsawa97a3f31997-11-04 18:47:06 +00001561(defun py-execute-region (start end &optional async)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001562 "Execute the region in a Python interpreter.
1563
Barry Warsawa97a3f31997-11-04 18:47:06 +00001564The region is first copied into a temporary file (in the directory
1565`py-temp-directory'). If there is no Python interpreter shell
1566running, this file is executed synchronously using
Barry Warsaw41a05c71998-08-10 16:33:12 +00001567`shell-command-on-region'. If the program is long running, use
1568\\[universal-argument] to run the command asynchronously in its own
1569buffer.
1570
1571When this function is used programmatically, arguments START and END
1572specify the region to execute, and optional third argument ASYNC, if
1573non-nil, specifies to run the command asynchronously in its own
1574buffer.
Barry Warsawa97a3f31997-11-04 18:47:06 +00001575
1576If the Python interpreter shell is running, the region is execfile()'d
1577in that shell. If you try to execute regions too quickly,
1578`python-mode' will queue them up and execute them one at a time when
1579it sees a `>>> ' prompt from Python. Each time this happens, the
1580process buffer is popped into a window (if it's not already in some
1581window) so you can see it, and a comment of the form
1582
1583 \t## working on region in file <name>...
1584
1585is inserted at the end. See also the command `py-clear-queue'."
1586 (interactive "r\nP")
Barry Warsaw4aab68e2002-04-25 19:17:42 +00001587 ;; Skip ahead to the first non-blank line
Barry Warsaw014e0e21998-11-17 19:24:47 +00001588 (let* ((proc (get-process py-which-bufname))
Barry Warsaw5e21cb01997-11-05 18:41:11 +00001589 (temp (if (memq 'broken-temp-names py-emacs-features)
Barry Warsaw1b344241998-08-07 22:24:16 +00001590 (let
1591 ((sn py-serial-number)
1592 (pid (and (fboundp 'emacs-pid) (emacs-pid))))
1593 (setq py-serial-number (1+ py-serial-number))
1594 (if pid
1595 (format "python-%d-%d" sn pid)
1596 (format "python-%d" sn)))
Barry Warsaw2f32fbb1998-02-25 16:45:43 +00001597 (make-temp-name "python-")))
Barry Warsawb2d5e622002-04-22 15:29:27 +00001598 (file (concat (expand-file-name temp py-temp-directory) ".py"))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001599 (cur (current-buffer))
Barry Warsawb2d5e622002-04-22 15:29:27 +00001600 (buf (get-buffer-create file))
1601 shell)
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001602 ;; Write the contents of the buffer, watching out for indented regions.
1603 (save-excursion
1604 (goto-char start)
Barry Warsaw69c92662002-05-12 17:37:46 +00001605 (beginning-of-line)
1606 (while (and (looking-at "\\s *$")
1607 (< (point) end))
1608 (forward-line 1))
1609 (setq start (point))
1610 (or (< start end)
1611 (error "Region is empty"))
Barry Warsaw99eadf42000-06-23 20:24:25 +00001612 (let ((needs-if (/= (py-point 'bol) (py-point 'boi))))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001613 (set-buffer buf)
Barry Warsawb2d5e622002-04-22 15:29:27 +00001614 (python-mode)
Barry Warsaw99eadf42000-06-23 20:24:25 +00001615 (when needs-if
1616 (insert "if 1:\n"))
Barry Warsawa0113cd2002-04-22 16:23:29 +00001617 (insert-buffer-substring cur start end)
1618 ;; Set the shell either to the #! line command, or to the
1619 ;; py-which-shell buffer local variable.
Barry Warsaw88491612002-04-25 21:31:47 +00001620 (setq shell (or (py-choose-shell-by-shebang)
1621 (py-choose-shell-by-import)
1622 py-which-shell))))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001623 (cond
Barry Warsaw145ab1c1998-05-19 14:49:49 +00001624 ;; always run the code in its own asynchronous subprocess
Barry Warsawa97a3f31997-11-04 18:47:06 +00001625 (async
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001626 ;; User explicitly wants this to run in its own async subprocess
1627 (save-excursion
1628 (set-buffer buf)
1629 (write-region (point-min) (point-max) file nil 'nomsg))
Barry Warsaw34d83171998-11-20 03:04:07 +00001630 (let* ((buf (generate-new-buffer-name py-output-buffer))
1631 ;; TBD: a horrible hack, but why create new Custom variables?
1632 (arg (if (string-equal py-which-bufname "Python")
1633 "-u" "")))
Barry Warsawb2d5e622002-04-22 15:29:27 +00001634 (start-process py-which-bufname buf shell arg file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001635 (pop-to-buffer buf)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001636 (py-postprocess-output-buffer buf)
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001637 ;; TBD: clean up the temporary file!
Barry Warsawa97a3f31997-11-04 18:47:06 +00001638 ))
1639 ;; if the Python interpreter shell is running, queue it up for
1640 ;; execution there.
1641 (proc
1642 ;; use the existing python shell
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001643 (save-excursion
1644 (set-buffer buf)
1645 (write-region (point-min) (point-max) file nil 'nomsg))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001646 (if (not py-file-queue)
1647 (py-execute-file proc file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001648 (message "File %s queued for execution" file))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001649 (setq py-file-queue (append py-file-queue (list file)))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001650 (setq py-exception-buffer (cons file (current-buffer))))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001651 (t
Barry Warsawa0113cd2002-04-22 16:23:29 +00001652 ;; TBD: a horrible hack, but why create new Custom variables?
1653 (let ((cmd (concat shell (if (string-equal py-which-bufname "JPython")
1654 " -" ""))))
Barry Warsaw34d83171998-11-20 03:04:07 +00001655 ;; otherwise either run it synchronously in a subprocess
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001656 (save-excursion
1657 (set-buffer buf)
1658 (shell-command-on-region (point-min) (point-max)
1659 cmd py-output-buffer))
Barry Warsaw34d83171998-11-20 03:04:07 +00001660 ;; shell-command-on-region kills the output buffer if it never
1661 ;; existed and there's no output from the command
1662 (if (not (get-buffer py-output-buffer))
1663 (message "No output.")
1664 (setq py-exception-buffer (current-buffer))
1665 (let ((err-p (py-postprocess-output-buffer py-output-buffer)))
1666 (pop-to-buffer py-output-buffer)
1667 (if err-p
1668 (pop-to-buffer py-exception-buffer)))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001669 ))
Barry Warsaw29a90f02002-04-22 21:48:20 +00001670 ))
Barry Warsaw71534602001-02-20 23:07:56 +00001671 ;; Clean up after ourselves.
1672 (kill-buffer buf)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001673
Barry Warsaw820273d1998-05-19 15:54:45 +00001674
1675;; Code execution commands
Barry Warsawa97a3f31997-11-04 18:47:06 +00001676(defun py-execute-buffer (&optional async)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001677 "Send the contents of the buffer to a Python interpreter.
Barry Warsawc0ecb531998-01-20 21:43:34 +00001678If the file local variable `py-master-file' is non-nil, execute the
1679named file instead of the buffer's file.
1680
Barry Warsaw7ae77681994-12-12 20:38:05 +00001681If there is a *Python* process buffer it is used. If a clipping
1682restriction is in effect, only the accessible portion of the buffer is
1683sent. A trailing newline will be supplied if needed.
1684
Barry Warsaw41a05c71998-08-10 16:33:12 +00001685See the `\\[py-execute-region]' docs for an account of some
1686subtleties, including the use of the optional ASYNC argument."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001687 (interactive "P")
Barry Warsawc0ecb531998-01-20 21:43:34 +00001688 (if py-master-file
1689 (let* ((filename (expand-file-name py-master-file))
1690 (buffer (or (get-file-buffer filename)
1691 (find-file-noselect filename))))
1692 (set-buffer buffer)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001693 (py-execute-region (point-min) (point-max) async))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001694
Barry Warsaw820273d1998-05-19 15:54:45 +00001695(defun py-execute-import-or-reload (&optional async)
1696 "Import the current buffer's file in a Python interpreter.
1697
1698If the file has already been imported, then do reload instead to get
Barry Warsaw7c29b231998-07-07 17:45:38 +00001699the latest version.
1700
1701If the file's name does not end in \".py\", then do execfile instead.
1702
1703If the current buffer is not visiting a file, do `py-execute-buffer'
1704instead.
1705
1706If the file local variable `py-master-file' is non-nil, import or
1707reload the named file instead of the buffer's file. The file may be
1708saved based on the value of `py-execute-import-or-reload-save-p'.
Barry Warsaw820273d1998-05-19 15:54:45 +00001709
Barry Warsaw41a05c71998-08-10 16:33:12 +00001710See the `\\[py-execute-region]' docs for an account of some
1711subtleties, including the use of the optional ASYNC argument.
Barry Warsaw820273d1998-05-19 15:54:45 +00001712
Barry Warsaw7c29b231998-07-07 17:45:38 +00001713This may be preferable to `\\[py-execute-buffer]' because:
Barry Warsaw820273d1998-05-19 15:54:45 +00001714
1715 - Definitions stay in their module rather than appearing at top
1716 level, where they would clutter the global namespace and not affect
1717 uses of qualified names (MODULE.NAME).
1718
1719 - The Python debugger gets line number information about the functions."
1720 (interactive "P")
1721 ;; Check file local variable py-master-file
1722 (if py-master-file
1723 (let* ((filename (expand-file-name py-master-file))
1724 (buffer (or (get-file-buffer filename)
1725 (find-file-noselect filename))))
1726 (set-buffer buffer)))
1727 (let ((file (buffer-file-name (current-buffer))))
1728 (if file
1729 (progn
Barry Warsaw3bfed5b1998-05-19 16:25:04 +00001730 ;; Maybe save some buffers
1731 (save-some-buffers (not py-ask-about-save) nil)
Barry Warsaw820273d1998-05-19 15:54:45 +00001732 (py-execute-string
1733 (if (string-match "\\.py$" file)
1734 (let ((f (file-name-sans-extension
1735 (file-name-nondirectory file))))
1736 (format "if globals().has_key('%s'):\n reload(%s)\nelse:\n import %s\n"
1737 f f f))
Barry Warsaw02e5f691998-09-24 23:48:40 +00001738 (format "execfile(r'%s')\n" file))
Barry Warsaw820273d1998-05-19 15:54:45 +00001739 async))
1740 ;; else
1741 (py-execute-buffer async))))
1742
1743
1744(defun py-execute-def-or-class (&optional async)
1745 "Send the current function or class definition to a Python interpreter.
1746
1747If there is a *Python* process buffer it is used.
1748
Barry Warsaw41a05c71998-08-10 16:33:12 +00001749See the `\\[py-execute-region]' docs for an account of some
1750subtleties, including the use of the optional ASYNC argument."
Barry Warsaw820273d1998-05-19 15:54:45 +00001751 (interactive "P")
1752 (save-excursion
1753 (py-mark-def-or-class)
1754 ;; mark is before point
1755 (py-execute-region (mark) (point) async)))
1756
1757
1758(defun py-execute-string (string &optional async)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001759 "Send the argument STRING to a Python interpreter.
Barry Warsaw820273d1998-05-19 15:54:45 +00001760
1761If there is a *Python* process buffer it is used.
1762
Barry Warsaw41a05c71998-08-10 16:33:12 +00001763See the `\\[py-execute-region]' docs for an account of some
1764subtleties, including the use of the optional ASYNC argument."
Barry Warsaw820273d1998-05-19 15:54:45 +00001765 (interactive "sExecute Python command: ")
1766 (save-excursion
1767 (set-buffer (get-buffer-create
1768 (generate-new-buffer-name " *Python Command*")))
1769 (insert string)
1770 (py-execute-region (point-min) (point-max) async)))
1771
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001772
1773
1774(defun py-jump-to-exception (file line)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001775 "Jump to the Python code in FILE at LINE."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001776 (let ((buffer (cond ((string-equal file "<stdin>")
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001777 (if (consp py-exception-buffer)
1778 (cdr py-exception-buffer)
1779 py-exception-buffer))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001780 ((and (consp py-exception-buffer)
1781 (string-equal file (car py-exception-buffer)))
1782 (cdr py-exception-buffer))
1783 ((py-safe (find-file-noselect file)))
1784 ;; could not figure out what file the exception
1785 ;; is pointing to, so prompt for it
1786 (t (find-file (read-file-name "Exception file: "
1787 nil
1788 file t))))))
1789 (pop-to-buffer buffer)
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001790 ;; Force Python mode
Barry Warsaw820273d1998-05-19 15:54:45 +00001791 (if (not (eq major-mode 'python-mode))
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001792 (python-mode))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001793 (goto-line line)
1794 (message "Jumping to exception in file %s on line %d" file line)))
1795
1796(defun py-mouseto-exception (event)
Barry Warsaw12c92941998-08-10 21:44:37 +00001797 "Jump to the code which caused the Python exception at EVENT.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001798EVENT is usually a mouse click."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001799 (interactive "e")
1800 (cond
1801 ((fboundp 'event-point)
1802 ;; XEmacs
1803 (let* ((point (event-point event))
1804 (buffer (event-buffer event))
1805 (e (and point buffer (extent-at point buffer 'py-exc-info)))
1806 (info (and e (extent-property e 'py-exc-info))))
1807 (message "Event point: %d, info: %s" point info)
1808 (and info
1809 (py-jump-to-exception (car info) (cdr info)))
1810 ))
1811 ;; Emacs -- Please port this!
1812 ))
1813
1814(defun py-goto-exception ()
1815 "Go to the line indicated by the traceback."
1816 (interactive)
1817 (let (file line)
1818 (save-excursion
1819 (beginning-of-line)
1820 (if (looking-at py-traceback-line-re)
1821 (setq file (match-string 1)
1822 line (string-to-int (match-string 2)))))
1823 (if (not file)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001824 (error "Not on a traceback line"))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001825 (py-jump-to-exception file line)))
1826
1827(defun py-find-next-exception (start buffer searchdir errwhere)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001828 "Find the next Python exception and jump to the code that caused it.
1829START is the buffer position in BUFFER from which to begin searching
1830for an exception. SEARCHDIR is a function, either
1831`re-search-backward' or `re-search-forward' indicating the direction
1832to search. ERRWHERE is used in an error message if the limit (top or
1833bottom) of the trackback stack is encountered."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001834 (let (file line)
1835 (save-excursion
1836 (set-buffer buffer)
1837 (goto-char (py-point start))
1838 (if (funcall searchdir py-traceback-line-re nil t)
1839 (setq file (match-string 1)
1840 line (string-to-int (match-string 2)))))
1841 (if (and file line)
1842 (py-jump-to-exception file line)
1843 (error "%s of traceback" errwhere))))
1844
1845(defun py-down-exception (&optional bottom)
1846 "Go to the next line down in the traceback.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001847With \\[univeral-argument] (programmatically, optional argument
1848BOTTOM), jump to the bottom (innermost) exception in the exception
1849stack."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001850 (interactive "P")
1851 (let* ((proc (get-process "Python"))
1852 (buffer (if proc "*Python*" py-output-buffer)))
1853 (if bottom
1854 (py-find-next-exception 'eob buffer 're-search-backward "Bottom")
1855 (py-find-next-exception 'eol buffer 're-search-forward "Bottom"))))
1856
1857(defun py-up-exception (&optional top)
1858 "Go to the previous line up in the traceback.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001859With \\[universal-argument] (programmatically, optional argument TOP)
1860jump to the top (outermost) exception in the exception stack."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001861 (interactive "P")
1862 (let* ((proc (get-process "Python"))
1863 (buffer (if proc "*Python*" py-output-buffer)))
1864 (if top
1865 (py-find-next-exception 'bob buffer 're-search-forward "Top")
Barry Warsawffbc17d1997-11-27 20:08:14 +00001866 (py-find-next-exception 'bol buffer 're-search-backward "Top"))))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001867
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001868
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001869;; Electric deletion
1870(defun py-electric-backspace (arg)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001871 "Delete preceding character or levels of indentation.
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001872Deletion is performed by calling the function in `py-backspace-function'
Barry Warsawb0539931996-12-17 22:05:07 +00001873with a single argument (the number of characters to delete).
Barry Warsaw7ae77681994-12-12 20:38:05 +00001874
Barry Warsaw41a05c71998-08-10 16:33:12 +00001875If point is at the leftmost column, delete the preceding newline.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001876
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001877Otherwise, if point is at the leftmost non-whitespace character of a
1878line that is neither a continuation line nor a non-indenting comment
1879line, or if point is at the end of a blank line, this command reduces
1880the indentation to match that of the line that opened the current
1881block of code. The line that opened the block is displayed in the
Barry Warsaw41a05c71998-08-10 16:33:12 +00001882echo area to help you keep track of where you are. With
1883\\[universal-argument] dedents that many blocks (but not past column
1884zero).
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001885
1886Otherwise the preceding character is deleted, converting a tab to
1887spaces if needed so that only a single column position is deleted.
Barry Warsawfa2def21999-05-24 21:43:37 +00001888\\[universal-argument] specifies how many characters to delete;
1889default is 1.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001890
1891When used programmatically, argument ARG specifies the number of
1892blocks to dedent, or the number of characters to delete, as indicated
1893above."
Barry Warsaw03970731996-07-03 23:12:52 +00001894 (interactive "*p")
Barry Warsaw7ae77681994-12-12 20:38:05 +00001895 (if (or (/= (current-indentation) (current-column))
1896 (bolp)
1897 (py-continuation-line-p)
Barry Warsawfa2def21999-05-24 21:43:37 +00001898; (not py-honor-comment-indentation)
1899; (looking-at "#[^ \t\n]") ; non-indenting #
1900 )
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001901 (funcall py-backspace-function arg)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001902 ;; else indent the same as the colon line that opened the block
Barry Warsaw7ae77681994-12-12 20:38:05 +00001903 ;; force non-blank so py-goto-block-up doesn't ignore it
1904 (insert-char ?* 1)
1905 (backward-char)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001906 (let ((base-indent 0) ; indentation of base line
1907 (base-text "") ; and text of base line
1908 (base-found-p nil))
Barry Warsaw03970731996-07-03 23:12:52 +00001909 (save-excursion
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001910 (while (< 0 arg)
Barry Warsaw03970731996-07-03 23:12:52 +00001911 (condition-case nil ; in case no enclosing block
1912 (progn
1913 (py-goto-block-up 'no-mark)
1914 (setq base-indent (current-indentation)
1915 base-text (py-suck-up-leading-text)
1916 base-found-p t))
1917 (error nil))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001918 (setq arg (1- arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001919 (delete-char 1) ; toss the dummy character
1920 (delete-horizontal-space)
1921 (indent-to base-indent)
1922 (if base-found-p
1923 (message "Closes block: %s" base-text)))))
1924
Barry Warsawfc8a01f1995-03-09 16:07:29 +00001925
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001926(defun py-electric-delete (arg)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001927 "Delete preceding or following character or levels of whitespace.
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001928
1929The behavior of this function depends on the variable
1930`delete-key-deletes-forward'. If this variable is nil (or does not
Barry Warsaw41a05c71998-08-10 16:33:12 +00001931exist, as in older Emacsen and non-XEmacs versions), then this
1932function behaves identically to \\[c-electric-backspace].
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001933
1934If `delete-key-deletes-forward' is non-nil and is supported in your
1935Emacs, then deletion occurs in the forward direction, by calling the
Barry Warsaw41a05c71998-08-10 16:33:12 +00001936function in `py-delete-function'.
1937
1938\\[universal-argument] (programmatically, argument ARG) specifies the
1939number of characters to delete (default is 1)."
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001940 (interactive "*p")
Barry Warsaw1d7b0fa1999-01-15 02:12:31 +00001941 (if (or (and (fboundp 'delete-forward-p) ;XEmacs 21
1942 (delete-forward-p))
1943 (and (boundp 'delete-key-deletes-forward) ;XEmacs 20
1944 delete-key-deletes-forward))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001945 (funcall py-delete-function arg)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001946 (py-electric-backspace arg)))
1947
1948;; required for pending-del and delsel modes
Skip Montanaro98a4fbe2003-08-01 04:00:32 +00001949(put 'py-electric-colon 'delete-selection t) ;delsel
1950(put 'py-electric-colon 'pending-delete t) ;pending-del
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001951(put 'py-electric-backspace 'delete-selection 'supersede) ;delsel
1952(put 'py-electric-backspace 'pending-delete 'supersede) ;pending-del
1953(put 'py-electric-delete 'delete-selection 'supersede) ;delsel
1954(put 'py-electric-delete 'pending-delete 'supersede) ;pending-del
1955
1956
1957
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001958(defun py-indent-line (&optional arg)
1959 "Fix the indentation of the current line according to Python rules.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001960With \\[universal-argument] (programmatically, the optional argument
1961ARG non-nil), ignore dedenting rules for block closing statements
1962(e.g. return, raise, break, continue, pass)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001963
1964This function is normally bound to `indent-line-function' so
1965\\[indent-for-tab-command] will call it."
1966 (interactive "P")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001967 (let* ((ci (current-indentation))
1968 (move-to-indentation-p (<= (current-column) ci))
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001969 (need (py-compute-indentation (not arg))))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001970 ;; see if we need to dedent
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001971 (if (py-outdent-p)
Barry Warsaw0012c1e1995-03-14 16:32:55 +00001972 (setq need (- need py-indent-offset)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001973 (if (/= ci need)
1974 (save-excursion
1975 (beginning-of-line)
1976 (delete-horizontal-space)
1977 (indent-to need)))
1978 (if move-to-indentation-p (back-to-indentation))))
1979
1980(defun py-newline-and-indent ()
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001981 "Strives to act like the Emacs `newline-and-indent'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001982This is just `strives to' because correct indentation can't be computed
1983from scratch for Python code. In general, deletes the whitespace before
1984point, inserts a newline, and takes an educated guess as to how you want
1985the new line indented."
1986 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001987 (let ((ci (current-indentation)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001988 (if (< ci (current-column)) ; if point beyond indentation
1989 (newline-and-indent)
1990 ;; else try to act like newline-and-indent "normally" acts
1991 (beginning-of-line)
1992 (insert-char ?\n 1)
1993 (move-to-column ci))))
1994
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001995(defun py-compute-indentation (honor-block-close-p)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001996 "Compute Python indentation.
1997When HONOR-BLOCK-CLOSE-P is non-nil, statements such as `return',
1998`raise', `break', `continue', and `pass' force one level of
1999dedenting."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002000 (save-excursion
Barry Warsawf64b4051998-02-12 16:52:14 +00002001 (beginning-of-line)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00002002 (let* ((bod (py-point 'bod))
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00002003 (pps (parse-partial-sexp bod (point)))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002004 (boipps (parse-partial-sexp bod (py-point 'boi)))
2005 placeholder)
Barry Warsaw095e9c61995-09-19 20:01:42 +00002006 (cond
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00002007 ;; are we inside a multi-line string or comment?
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00002008 ((or (and (nth 3 pps) (nth 3 boipps))
2009 (and (nth 4 pps) (nth 4 boipps)))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002010 (save-excursion
2011 (if (not py-align-multiline-strings-p) 0
2012 ;; skip back over blank & non-indenting comment lines
2013 ;; note: will skip a blank or non-indenting comment line
2014 ;; that happens to be a continuation line too
2015 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#[ \t\n]\\)" nil 'move)
2016 (back-to-indentation)
2017 (current-column))))
2018 ;; are we on a continuation line?
2019 ((py-continuation-line-p)
2020 (let ((startpos (point))
2021 (open-bracket-pos (py-nesting-level))
Barry Warsawce60bc71996-08-01 18:17:14 +00002022 endpos searching found state)
Barry Warsaw095e9c61995-09-19 20:01:42 +00002023 (if open-bracket-pos
2024 (progn
2025 ;; align with first item in list; else a normal
2026 ;; indent beyond the line with the open bracket
2027 (goto-char (1+ open-bracket-pos)) ; just beyond bracket
2028 ;; is the first list item on the same line?
2029 (skip-chars-forward " \t")
2030 (if (null (memq (following-char) '(?\n ?# ?\\)))
2031 ; yes, so line up with it
2032 (current-column)
2033 ;; first list item on another line, or doesn't exist yet
2034 (forward-line 1)
2035 (while (and (< (point) startpos)
2036 (looking-at "[ \t]*[#\n\\\\]")) ; skip noise
2037 (forward-line 1))
Barry Warsaw92166d91998-04-01 21:59:41 +00002038 (if (and (< (point) startpos)
2039 (/= startpos
2040 (save-excursion
2041 (goto-char (1+ open-bracket-pos))
Barry Warsaw77d1fce1998-04-16 20:04:59 +00002042 (forward-comment (point-max))
Barry Warsaw92166d91998-04-01 21:59:41 +00002043 (point))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002044 ;; again mimic the first list item
2045 (current-indentation)
2046 ;; else they're about to enter the first item
2047 (goto-char open-bracket-pos)
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002048 (setq placeholder (point))
2049 (py-goto-initial-line)
2050 (py-goto-beginning-of-tqs
2051 (save-excursion (nth 3 (parse-partial-sexp
2052 placeholder (point)))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002053 (+ (current-indentation) py-indent-offset))))
2054
2055 ;; else on backslash continuation line
2056 (forward-line -1)
2057 (if (py-continuation-line-p) ; on at least 3rd line in block
2058 (current-indentation) ; so just continue the pattern
2059 ;; else started on 2nd line in block, so indent more.
2060 ;; if base line is an assignment with a start on a RHS,
2061 ;; indent to 2 beyond the leftmost "="; else skip first
2062 ;; chunk of non-whitespace characters on base line, + 1 more
2063 ;; column
2064 (end-of-line)
Barry Warsawfd4c9e82001-06-18 23:40:35 +00002065 (setq endpos (point)
2066 searching t)
Barry Warsaw095e9c61995-09-19 20:01:42 +00002067 (back-to-indentation)
2068 (setq startpos (point))
2069 ;; look at all "=" from left to right, stopping at first
2070 ;; one not nested in a list or string
2071 (while searching
2072 (skip-chars-forward "^=" endpos)
2073 (if (= (point) endpos)
2074 (setq searching nil)
2075 (forward-char 1)
2076 (setq state (parse-partial-sexp startpos (point)))
2077 (if (and (zerop (car state)) ; not in a bracket
2078 (null (nth 3 state))) ; & not in a string
2079 (progn
2080 (setq searching nil) ; done searching in any case
2081 (setq found
2082 (not (or
2083 (eq (following-char) ?=)
2084 (memq (char-after (- (point) 2))
2085 '(?< ?> ?!)))))))))
2086 (if (or (not found) ; not an assignment
2087 (looking-at "[ \t]*\\\\")) ; <=><spaces><backslash>
2088 (progn
2089 (goto-char startpos)
2090 (skip-chars-forward "^ \t\n")))
Barry Warsaw40fb4522001-07-06 20:07:13 +00002091 ;; if this is a continuation for a block opening
2092 ;; statement, add some extra offset.
2093 (+ (current-column) (if (py-statement-opens-block-p)
2094 py-continuation-offset 0)
2095 1)
Barry Warsawfd4c9e82001-06-18 23:40:35 +00002096 ))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002097
2098 ;; not on a continuation line
Barry Warsawa7891711996-08-01 15:53:09 +00002099 ((bobp) (current-indentation))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002100
Barry Warsawa7891711996-08-01 15:53:09 +00002101 ;; Dfn: "Indenting comment line". A line containing only a
2102 ;; comment, but which is treated like a statement for
2103 ;; indentation calculation purposes. Such lines are only
2104 ;; treated specially by the mode; they are not treated
2105 ;; specially by the Python interpreter.
2106
2107 ;; The rules for indenting comment lines are a line where:
2108 ;; - the first non-whitespace character is `#', and
2109 ;; - the character following the `#' is whitespace, and
Barry Warsaw41a05c71998-08-10 16:33:12 +00002110 ;; - the line is dedented with respect to (i.e. to the left
Barry Warsawa7891711996-08-01 15:53:09 +00002111 ;; of) the indentation of the preceding non-blank line.
2112
2113 ;; The first non-blank line following an indenting comment
2114 ;; line is given the same amount of indentation as the
2115 ;; indenting comment line.
2116
2117 ;; All other comment-only lines are ignored for indentation
2118 ;; purposes.
2119
2120 ;; Are we looking at a comment-only line which is *not* an
Barry Warsaw145ab1c1998-05-19 14:49:49 +00002121 ;; indenting comment line? If so, we assume that it's been
Barry Warsawa7891711996-08-01 15:53:09 +00002122 ;; placed at the desired indentation, so leave it alone.
2123 ;; Indenting comment lines are aligned as statements down
2124 ;; below.
2125 ((and (looking-at "[ \t]*#[^ \t\n]")
2126 ;; NOTE: this test will not be performed in older Emacsen
2127 (fboundp 'forward-comment)
2128 (<= (current-indentation)
2129 (save-excursion
2130 (forward-comment (- (point-max)))
2131 (current-indentation))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002132 (current-indentation))
2133
2134 ;; else indentation based on that of the statement that
2135 ;; precedes us; use the first line of that statement to
2136 ;; establish the base, in case the user forced a non-std
2137 ;; indentation for the continuation lines (if any)
2138 (t
Barry Warsawc01c5c81995-09-14 18:49:11 +00002139 ;; skip back over blank & non-indenting comment lines note:
2140 ;; will skip a blank or non-indenting comment line that
Barry Warsawfd0fb381996-03-04 17:15:40 +00002141 ;; happens to be a continuation line too. use fast Emacs 19
2142 ;; function if it's there.
Barry Warsaw6d627751996-03-06 18:41:38 +00002143 (if (and (eq py-honor-comment-indentation nil)
Barry Warsaw33d6ec01996-03-05 16:28:07 +00002144 (fboundp 'forward-comment))
Barry Warsawfd0fb381996-03-04 17:15:40 +00002145 (forward-comment (- (point-max)))
Barry Warsaw218eb751998-09-22 19:51:47 +00002146 (let ((prefix-re (concat py-block-comment-prefix "[ \t]*"))
2147 done)
Barry Warsaw6d627751996-03-06 18:41:38 +00002148 (while (not done)
Barry Warsaw12c92941998-08-10 21:44:37 +00002149 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#\\)" nil 'move)
2150 (setq done (or (bobp)
2151 (and (eq py-honor-comment-indentation t)
2152 (save-excursion
2153 (back-to-indentation)
Barry Warsaw218eb751998-09-22 19:51:47 +00002154 (not (looking-at prefix-re))
Barry Warsaw12c92941998-08-10 21:44:37 +00002155 ))
2156 (and (not (eq py-honor-comment-indentation t))
2157 (save-excursion
2158 (back-to-indentation)
Barry Warsawd36cfe42002-03-15 16:46:46 +00002159 (and (not (looking-at prefix-re))
2160 (or (looking-at "[^#]")
2161 (not (zerop (current-column)))
2162 ))
2163 ))
Barry Warsaw12c92941998-08-10 21:44:37 +00002164 ))
Barry Warsaw6d627751996-03-06 18:41:38 +00002165 )))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002166 ;; if we landed inside a string, go to the beginning of that
2167 ;; string. this handles triple quoted, multi-line spanning
2168 ;; strings.
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002169 (py-goto-beginning-of-tqs (nth 3 (parse-partial-sexp bod (point))))
Barry Warsawc210e691998-01-20 22:52:56 +00002170 ;; now skip backward over continued lines
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002171 (setq placeholder (point))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002172 (py-goto-initial-line)
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002173 ;; we may *now* have landed in a TQS, so find the beginning of
2174 ;; this string.
2175 (py-goto-beginning-of-tqs
2176 (save-excursion (nth 3 (parse-partial-sexp
2177 placeholder (point)))))
Barry Warsawf831d811996-07-31 20:42:59 +00002178 (+ (current-indentation)
2179 (if (py-statement-opens-block-p)
2180 py-indent-offset
Barry Warsaw7cb505c1996-10-23 20:44:59 +00002181 (if (and honor-block-close-p (py-statement-closes-block-p))
Barry Warsawf831d811996-07-31 20:42:59 +00002182 (- py-indent-offset)
2183 0)))
2184 )))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002185
2186(defun py-guess-indent-offset (&optional global)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002187 "Guess a good value for, and change, `py-indent-offset'.
Barry Warsaw41a05c71998-08-10 16:33:12 +00002188
2189By default, make a buffer-local copy of `py-indent-offset' with the
2190new value, so that other Python buffers are not affected. With
2191\\[universal-argument] (programmatically, optional argument GLOBAL),
2192change the global value of `py-indent-offset'. This affects all
2193Python buffers (that don't have their own buffer-local copy), both
2194those currently existing and those created later in the Emacs session.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002195
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002196Some people use a different value for `py-indent-offset' than you use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002197There's no excuse for such foolishness, but sometimes you have to deal
2198with their ugly code anyway. This function examines the file and sets
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002199`py-indent-offset' to what it thinks it was when they created the
2200mess.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002201
2202Specifically, it searches forward from the statement containing point,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002203looking for a line that opens a block of code. `py-indent-offset' is
2204set to the difference in indentation between that line and the Python
Barry Warsaw7ae77681994-12-12 20:38:05 +00002205statement following it. If the search doesn't succeed going forward,
2206it's tried again going backward."
2207 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002208 (let (new-value
2209 (start (point))
Barry Warsawe908b6b1998-03-19 22:48:02 +00002210 (restart (point))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002211 (found nil)
2212 colon-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002213 (py-goto-initial-line)
2214 (while (not (or found (eobp)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00002215 (when (and (re-search-forward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2216 (not (py-in-literal restart)))
2217 (setq restart (point))
2218 (py-goto-initial-line)
2219 (if (py-statement-opens-block-p)
2220 (setq found t)
2221 (goto-char restart))))
2222 (unless found
Barry Warsaw7ae77681994-12-12 20:38:05 +00002223 (goto-char start)
2224 (py-goto-initial-line)
2225 (while (not (or found (bobp)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00002226 (setq found (and
2227 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2228 (or (py-goto-initial-line) t) ; always true -- side effect
2229 (py-statement-opens-block-p)))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002230 (setq colon-indent (current-indentation)
2231 found (and found (zerop (py-next-statement 1)))
2232 new-value (- (current-indentation) colon-indent))
2233 (goto-char start)
Barry Warsawe908b6b1998-03-19 22:48:02 +00002234 (if (not found)
2235 (error "Sorry, couldn't guess a value for py-indent-offset")
2236 (funcall (if global 'kill-local-variable 'make-local-variable)
2237 'py-indent-offset)
2238 (setq py-indent-offset new-value)
Barry Warsawd35c2551998-09-25 00:08:38 +00002239 (or noninteractive
2240 (message "%s value of py-indent-offset set to %d"
2241 (if global "Global" "Local")
2242 py-indent-offset)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00002243 ))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002244
Barry Warsaw003932a1998-07-07 15:11:24 +00002245(defun py-comment-indent-function ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002246 "Python version of `comment-indent-function'."
2247 ;; This is required when filladapt is turned off. Without it, when
2248 ;; filladapt is not used, comments which start in column zero
2249 ;; cascade one character to the right
Barry Warsaw003932a1998-07-07 15:11:24 +00002250 (save-excursion
2251 (beginning-of-line)
2252 (let ((eol (py-point 'eol)))
2253 (and comment-start-skip
2254 (re-search-forward comment-start-skip eol t)
2255 (setq eol (match-beginning 0)))
2256 (goto-char eol)
2257 (skip-chars-backward " \t")
2258 (max comment-column (+ (current-column) (if (bolp) 0 1)))
2259 )))
2260
Barry Warsawf8ddb6a1999-01-18 21:49:39 +00002261(defun py-narrow-to-defun (&optional class)
2262 "Make text outside current defun invisible.
2263The defun visible is the one that contains point or follows point.
2264Optional CLASS is passed directly to `py-beginning-of-def-or-class'."
2265 (interactive "P")
2266 (save-excursion
2267 (widen)
2268 (py-end-of-def-or-class class)
2269 (let ((end (point)))
2270 (py-beginning-of-def-or-class class)
2271 (narrow-to-region (point) end))))
2272
Barry Warsaw003932a1998-07-07 15:11:24 +00002273
Barry Warsaw7ae77681994-12-12 20:38:05 +00002274(defun py-shift-region (start end count)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002275 "Indent lines from START to END by COUNT spaces."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002276 (save-excursion
Barry Warsaw41a05c71998-08-10 16:33:12 +00002277 (goto-char end)
2278 (beginning-of-line)
2279 (setq end (point))
2280 (goto-char start)
2281 (beginning-of-line)
2282 (setq start (point))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002283 (indent-rigidly start end count)))
2284
2285(defun py-shift-region-left (start end &optional count)
2286 "Shift region of Python code to the left.
2287The lines from the line containing the start of the current region up
2288to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002289shifted to the left, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002290
2291If a prefix argument is given, the region is instead shifted by that
Barry Warsaw41a05c71998-08-10 16:33:12 +00002292many columns. With no active region, dedent only the current line.
2293You cannot dedent the region if any line is already at column zero."
Barry Warsawdea4a291996-07-03 22:59:12 +00002294 (interactive
2295 (let ((p (point))
2296 (m (mark))
2297 (arg current-prefix-arg))
2298 (if m
2299 (list (min p m) (max p m) arg)
2300 (list p (save-excursion (forward-line 1) (point)) arg))))
2301 ;; if any line is at column zero, don't shift the region
2302 (save-excursion
2303 (goto-char start)
2304 (while (< (point) end)
2305 (back-to-indentation)
Barry Warsaw71e315b1996-07-23 15:03:16 +00002306 (if (and (zerop (current-column))
2307 (not (looking-at "\\s *$")))
Barry Warsaw41a05c71998-08-10 16:33:12 +00002308 (error "Region is at left edge"))
Barry Warsawdea4a291996-07-03 22:59:12 +00002309 (forward-line 1)))
2310 (py-shift-region start end (- (prefix-numeric-value
2311 (or count py-indent-offset))))
2312 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002313
2314(defun py-shift-region-right (start end &optional count)
2315 "Shift region of Python code to the right.
2316The lines from the line containing the start of the current region up
2317to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002318shifted to the right, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002319
2320If a prefix argument is given, the region is instead shifted by that
Barry Warsawdea4a291996-07-03 22:59:12 +00002321many columns. With no active region, indent only the current line."
2322 (interactive
2323 (let ((p (point))
2324 (m (mark))
2325 (arg current-prefix-arg))
2326 (if m
2327 (list (min p m) (max p m) arg)
2328 (list p (save-excursion (forward-line 1) (point)) arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002329 (py-shift-region start end (prefix-numeric-value
Barry Warsawdea4a291996-07-03 22:59:12 +00002330 (or count py-indent-offset)))
2331 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002332
2333(defun py-indent-region (start end &optional indent-offset)
2334 "Reindent a region of Python code.
Barry Warsaw867a32a1996-03-07 18:30:26 +00002335
Barry Warsaw7ae77681994-12-12 20:38:05 +00002336The lines from the line containing the start of the current region up
2337to (but not including) the line containing the end of the region are
2338reindented. If the first line of the region has a non-whitespace
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002339character in the first column, the first line is left alone and the
2340rest of the region is reindented with respect to it. Else the entire
Barry Warsaw867a32a1996-03-07 18:30:26 +00002341region is reindented with respect to the (closest code or indenting
2342comment) statement immediately preceding the region.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002343
2344This is useful when code blocks are moved or yanked, when enclosing
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002345control structures are introduced or removed, or to reformat code
2346using a new value for the indentation offset.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002347
2348If a numeric prefix argument is given, it will be used as the value of
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002349the indentation offset. Else the value of `py-indent-offset' will be
Barry Warsaw7ae77681994-12-12 20:38:05 +00002350used.
2351
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002352Warning: The region must be consistently indented before this function
Barry Warsaw7ae77681994-12-12 20:38:05 +00002353is called! This function does not compute proper indentation from
2354scratch (that's impossible in Python), it merely adjusts the existing
2355indentation to be correct in context.
2356
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002357Warning: This function really has no idea what to do with
2358non-indenting comment lines, and shifts them as if they were indenting
2359comment lines. Fixing this appears to require telepathy.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002360
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002361Special cases: whitespace is deleted from blank lines; continuation
2362lines are shifted by the same amount their initial line was shifted,
2363in order to preserve their relative indentation with respect to their
Barry Warsaw7ae77681994-12-12 20:38:05 +00002364initial line; and comment lines beginning in column 1 are ignored."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002365 (interactive "*r\nP") ; region; raw prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002366 (save-excursion
2367 (goto-char end) (beginning-of-line) (setq end (point-marker))
2368 (goto-char start) (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002369 (let ((py-indent-offset (prefix-numeric-value
2370 (or indent-offset py-indent-offset)))
2371 (indents '(-1)) ; stack of active indent levels
2372 (target-column 0) ; column to which to indent
2373 (base-shifted-by 0) ; amount last base line was shifted
2374 (indent-base (if (looking-at "[ \t\n]")
Barry Warsaw7cb505c1996-10-23 20:44:59 +00002375 (py-compute-indentation t)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002376 0))
2377 ci)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002378 (while (< (point) end)
2379 (setq ci (current-indentation))
2380 ;; figure out appropriate target column
2381 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002382 ((or (eq (following-char) ?#) ; comment in column 1
2383 (looking-at "[ \t]*$")) ; entirely blank
2384 (setq target-column 0))
2385 ((py-continuation-line-p) ; shift relative to base line
2386 (setq target-column (+ ci base-shifted-by)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002387 (t ; new base line
2388 (if (> ci (car indents)) ; going deeper; push it
2389 (setq indents (cons ci indents))
2390 ;; else we should have seen this indent before
2391 (setq indents (memq ci indents)) ; pop deeper indents
2392 (if (null indents)
2393 (error "Bad indentation in region, at line %d"
2394 (save-restriction
2395 (widen)
2396 (1+ (count-lines 1 (point)))))))
2397 (setq target-column (+ indent-base
2398 (* py-indent-offset
2399 (- (length indents) 2))))
2400 (setq base-shifted-by (- target-column ci))))
2401 ;; shift as needed
2402 (if (/= ci target-column)
2403 (progn
2404 (delete-horizontal-space)
2405 (indent-to target-column)))
2406 (forward-line 1))))
2407 (set-marker end nil))
2408
Barry Warsawa7891711996-08-01 15:53:09 +00002409(defun py-comment-region (beg end &optional arg)
2410 "Like `comment-region' but uses double hash (`#') comment starter."
2411 (interactive "r\nP")
Barry Warsaw3fcaf611996-08-01 20:11:51 +00002412 (let ((comment-start py-block-comment-prefix))
Barry Warsawa7891711996-08-01 15:53:09 +00002413 (comment-region beg end arg)))
2414
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002415
2416;; Functions for moving point
Barry Warsaw7ae77681994-12-12 20:38:05 +00002417(defun py-previous-statement (count)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002418 "Go to the start of the COUNTth preceding Python statement.
2419By default, goes to the previous statement. If there is no such
2420statement, goes to the first statement. Return count of statements
2421left to move. `Statements' do not include blank, comment, or
2422continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002423 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002424 (if (< count 0) (py-next-statement (- count))
2425 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002426 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002427 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002428 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002429 (> count 0)
2430 (zerop (forward-line -1))
2431 (py-goto-statement-at-or-above))
2432 (setq count (1- count)))
2433 (if (> count 0) (goto-char start)))
2434 count))
2435
2436(defun py-next-statement (count)
2437 "Go to the start of next Python statement.
2438If the statement at point is the i'th Python statement, goes to the
2439start of statement i+COUNT. If there is no such statement, goes to the
2440last statement. Returns count of statements left to move. `Statements'
2441do not include blank, comment, or continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002442 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002443 (if (< count 0) (py-previous-statement (- count))
2444 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002445 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002446 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002447 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002448 (> count 0)
2449 (py-goto-statement-below))
2450 (setq count (1- count)))
2451 (if (> count 0) (goto-char start)))
2452 count))
2453
2454(defun py-goto-block-up (&optional nomark)
2455 "Move up to start of current block.
2456Go to the statement that starts the smallest enclosing block; roughly
2457speaking, this will be the closest preceding statement that ends with a
2458colon and is indented less than the statement you started on. If
2459successful, also sets the mark to the starting point.
2460
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002461`\\[py-mark-block]' can be used afterward to mark the whole code
2462block, if desired.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002463
2464If called from a program, the mark will not be set if optional argument
2465NOMARK is not nil."
2466 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002467 (let ((start (point))
2468 (found nil)
2469 initial-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002470 (py-goto-initial-line)
2471 ;; if on blank or non-indenting comment line, use the preceding stmt
2472 (if (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
2473 (progn
2474 (py-goto-statement-at-or-above)
2475 (setq found (py-statement-opens-block-p))))
2476 ;; search back for colon line indented less
2477 (setq initial-indent (current-indentation))
2478 (if (zerop initial-indent)
2479 ;; force fast exit
2480 (goto-char (point-min)))
2481 (while (not (or found (bobp)))
2482 (setq found
2483 (and
2484 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2485 (or (py-goto-initial-line) t) ; always true -- side effect
2486 (< (current-indentation) initial-indent)
2487 (py-statement-opens-block-p))))
2488 (if found
2489 (progn
2490 (or nomark (push-mark start))
2491 (back-to-indentation))
2492 (goto-char start)
2493 (error "Enclosing block not found"))))
2494
Barry Warsawab0e86c1998-05-19 15:31:46 +00002495(defun py-beginning-of-def-or-class (&optional class count)
2496 "Move point to start of `def' or `class'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002497
2498Searches back for the closest preceding `def'. If you supply a prefix
Barry Warsawab0e86c1998-05-19 15:31:46 +00002499arg, looks for a `class' instead. The docs below assume the `def'
2500case; just substitute `class' for `def' for the other case.
Barry Warsaw7c29b231998-07-07 17:45:38 +00002501Programmatically, if CLASS is `either', then moves to either `class'
2502or `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002503
Barry Warsawab0e86c1998-05-19 15:31:46 +00002504When second optional argument is given programmatically, move to the
2505COUNTth start of `def'.
2506
2507If point is in a `def' statement already, and after the `d', simply
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002508moves point to the start of the statement.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002509
Barry Warsawab0e86c1998-05-19 15:31:46 +00002510Otherwise (i.e. when point is not in a `def' statement, or at or
2511before the `d' of a `def' statement), searches for the closest
2512preceding `def' statement, and leaves point at its start. If no such
2513statement can be found, leaves point at the start of the buffer.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002514
Barry Warsawab0e86c1998-05-19 15:31:46 +00002515Returns t iff a `def' statement is found by these rules.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002516
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002517Note that doing this command repeatedly will take you closer to the
2518start of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002519
Barry Warsaw7c29b231998-07-07 17:45:38 +00002520To mark the current `def', see `\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002521 (interactive "P") ; raw prefix arg
Barry Warsaw6839d3a1998-10-28 00:10:45 +00002522 (setq count (or count 1))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002523 (let ((at-or-before-p (<= (current-column) (current-indentation)))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002524 (start-of-line (goto-char (py-point 'bol)))
2525 (start-of-stmt (goto-char (py-point 'bos)))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002526 (start-re (cond ((eq class 'either) "^[ \t]*\\(class\\|def\\)\\>")
2527 (class "^[ \t]*class\\>")
2528 (t "^[ \t]*def\\>")))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002529 )
2530 ;; searching backward
2531 (if (and (< 0 count)
2532 (or (/= start-of-stmt start-of-line)
2533 (not at-or-before-p)))
2534 (end-of-line))
2535 ;; search forward
2536 (if (and (> 0 count)
2537 (zerop (current-column))
2538 (looking-at start-re))
2539 (end-of-line))
Barry Warsawddc46961999-07-27 21:40:02 +00002540 (if (re-search-backward start-re nil 'move count)
2541 (goto-char (match-beginning 0)))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002542
Barry Warsawab0e86c1998-05-19 15:31:46 +00002543;; Backwards compatibility
2544(defalias 'beginning-of-python-def-or-class 'py-beginning-of-def-or-class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002545
Barry Warsawab0e86c1998-05-19 15:31:46 +00002546(defun py-end-of-def-or-class (&optional class count)
2547 "Move point beyond end of `def' or `class' body.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002548
Barry Warsawab0e86c1998-05-19 15:31:46 +00002549By default, looks for an appropriate `def'. If you supply a prefix
2550arg, looks for a `class' instead. The docs below assume the `def'
2551case; just substitute `class' for `def' for the other case.
Barry Warsaw7c29b231998-07-07 17:45:38 +00002552Programmatically, if CLASS is `either', then moves to either `class'
2553or `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002554
Barry Warsawab0e86c1998-05-19 15:31:46 +00002555When second optional argument is given programmatically, move to the
2556COUNTth end of `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002557
Barry Warsawab0e86c1998-05-19 15:31:46 +00002558If point is in a `def' statement already, this is the `def' we use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002559
Barry Warsawab0e86c1998-05-19 15:31:46 +00002560Else, if the `def' found by `\\[py-beginning-of-def-or-class]'
2561contains the statement you started on, that's the `def' we use.
2562
2563Otherwise, we search forward for the closest following `def', and use that.
2564
2565If a `def' can be found by these rules, point is moved to the start of
2566the line immediately following the `def' block, and the position of the
2567start of the `def' is returned.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002568
2569Else point is moved to the end of the buffer, and nil is returned.
2570
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002571Note that doing this command repeatedly will take you closer to the
2572end of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002573
Barry Warsaw7c29b231998-07-07 17:45:38 +00002574To mark the current `def', see `\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002575 (interactive "P") ; raw prefix arg
Barry Warsawab0e86c1998-05-19 15:31:46 +00002576 (if (and count (/= count 1))
2577 (py-beginning-of-def-or-class (- 1 count)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002578 (let ((start (progn (py-goto-initial-line) (point)))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002579 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2580 (class "class")
2581 (t "def")))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002582 (state 'not-found))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002583 ;; move point to start of appropriate def/class
2584 (if (looking-at (concat "[ \t]*" which "\\>")) ; already on one
2585 (setq state 'at-beginning)
Barry Warsawab0e86c1998-05-19 15:31:46 +00002586 ;; else see if py-beginning-of-def-or-class hits container
2587 (if (and (py-beginning-of-def-or-class class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002588 (progn (py-goto-beyond-block)
2589 (> (point) start)))
2590 (setq state 'at-end)
2591 ;; else search forward
2592 (goto-char start)
2593 (if (re-search-forward (concat "^[ \t]*" which "\\>") nil 'move)
2594 (progn (setq state 'at-beginning)
2595 (beginning-of-line)))))
2596 (cond
2597 ((eq state 'at-beginning) (py-goto-beyond-block) t)
2598 ((eq state 'at-end) t)
2599 ((eq state 'not-found) nil)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002600 (t (error "Internal error in `py-end-of-def-or-class'")))))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002601
2602;; Backwards compabitility
Barry Warsaw820273d1998-05-19 15:54:45 +00002603(defalias 'end-of-python-def-or-class 'py-end-of-def-or-class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002604
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002605
2606;; Functions for marking regions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002607(defun py-mark-block (&optional extend just-move)
2608 "Mark following block of lines. With prefix arg, mark structure.
2609Easier to use than explain. It sets the region to an `interesting'
2610block of succeeding lines. If point is on a blank line, it goes down to
2611the next non-blank line. That will be the start of the region. The end
2612of the region depends on the kind of line at the start:
2613
2614 - If a comment, the region will include all succeeding comment lines up
2615 to (but not including) the next non-comment line (if any).
2616
2617 - Else if a prefix arg is given, and the line begins one of these
2618 structures:
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002619
2620 if elif else try except finally for while def class
2621
Barry Warsaw7ae77681994-12-12 20:38:05 +00002622 the region will be set to the body of the structure, including
2623 following blocks that `belong' to it, but excluding trailing blank
2624 and comment lines. E.g., if on a `try' statement, the `try' block
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002625 and all (if any) of the following `except' and `finally' blocks
2626 that belong to the `try' structure will be in the region. Ditto
2627 for if/elif/else, for/else and while/else structures, and (a bit
2628 degenerate, since they're always one-block structures) def and
2629 class blocks.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002630
2631 - Else if no prefix argument is given, and the line begins a Python
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002632 block (see list above), and the block is not a `one-liner' (i.e.,
2633 the statement ends with a colon, not with code), the region will
2634 include all succeeding lines up to (but not including) the next
2635 code statement (if any) that's indented no more than the starting
2636 line, except that trailing blank and comment lines are excluded.
2637 E.g., if the starting line begins a multi-statement `def'
2638 structure, the region will be set to the full function definition,
2639 but without any trailing `noise' lines.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002640
2641 - Else the region will include all succeeding lines up to (but not
2642 including) the next blank line, or code or indenting-comment line
2643 indented strictly less than the starting line. Trailing indenting
2644 comment lines are included in this case, but not trailing blank
2645 lines.
2646
2647A msg identifying the location of the mark is displayed in the echo
2648area; or do `\\[exchange-point-and-mark]' to flip down to the end.
2649
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002650If called from a program, optional argument EXTEND plays the role of
2651the prefix arg, and if optional argument JUST-MOVE is not nil, just
2652moves to the end of the block (& does not set mark or display a msg)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002653 (interactive "P") ; raw prefix arg
2654 (py-goto-initial-line)
2655 ;; skip over blank lines
2656 (while (and
2657 (looking-at "[ \t]*$") ; while blank line
2658 (not (eobp))) ; & somewhere to go
2659 (forward-line 1))
2660 (if (eobp)
2661 (error "Hit end of buffer without finding a non-blank stmt"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002662 (let ((initial-pos (point))
2663 (initial-indent (current-indentation))
2664 last-pos ; position of last stmt in region
2665 (followers
2666 '((if elif else) (elif elif else) (else)
2667 (try except finally) (except except) (finally)
2668 (for else) (while else)
2669 (def) (class) ) )
2670 first-symbol next-symbol)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002671
2672 (cond
2673 ;; if comment line, suck up the following comment lines
2674 ((looking-at "[ \t]*#")
2675 (re-search-forward "^[ \t]*[^ \t#]" nil 'move) ; look for non-comment
2676 (re-search-backward "^[ \t]*#") ; and back to last comment in block
2677 (setq last-pos (point)))
2678
2679 ;; else if line is a block line and EXTEND given, suck up
2680 ;; the whole structure
2681 ((and extend
2682 (setq first-symbol (py-suck-up-first-keyword) )
2683 (assq first-symbol followers))
2684 (while (and
2685 (or (py-goto-beyond-block) t) ; side effect
2686 (forward-line -1) ; side effect
2687 (setq last-pos (point)) ; side effect
2688 (py-goto-statement-below)
2689 (= (current-indentation) initial-indent)
2690 (setq next-symbol (py-suck-up-first-keyword))
2691 (memq next-symbol (cdr (assq first-symbol followers))))
2692 (setq first-symbol next-symbol)))
2693
2694 ;; else if line *opens* a block, search for next stmt indented <=
2695 ((py-statement-opens-block-p)
2696 (while (and
2697 (setq last-pos (point)) ; always true -- side effect
2698 (py-goto-statement-below)
Barry Warsawf070cce2002-05-23 19:42:16 +00002699 (> (current-indentation) initial-indent)
2700 )))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002701
2702 ;; else plain code line; stop at next blank line, or stmt or
2703 ;; indenting comment line indented <
2704 (t
2705 (while (and
2706 (setq last-pos (point)) ; always true -- side effect
2707 (or (py-goto-beyond-final-line) t)
2708 (not (looking-at "[ \t]*$")) ; stop at blank line
2709 (or
2710 (>= (current-indentation) initial-indent)
2711 (looking-at "[ \t]*#[^ \t\n]"))) ; ignore non-indenting #
2712 nil)))
2713
2714 ;; skip to end of last stmt
2715 (goto-char last-pos)
2716 (py-goto-beyond-final-line)
2717
2718 ;; set mark & display
2719 (if just-move
2720 () ; just return
2721 (push-mark (point) 'no-msg)
2722 (forward-line -1)
2723 (message "Mark set after: %s" (py-suck-up-leading-text))
2724 (goto-char initial-pos))))
2725
Barry Warsaw2518c671997-11-05 00:51:08 +00002726(defun py-mark-def-or-class (&optional class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002727 "Set region to body of def (or class, with prefix arg) enclosing point.
2728Pushes the current mark, then point, on the mark ring (all language
2729modes do this, but although it's handy it's never documented ...).
2730
2731In most Emacs language modes, this function bears at least a
Barry Warsawab0e86c1998-05-19 15:31:46 +00002732hallucinogenic resemblance to `\\[py-end-of-def-or-class]' and
2733`\\[py-beginning-of-def-or-class]'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002734
2735And in earlier versions of Python mode, all 3 were tightly connected.
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002736Turned out that was more confusing than useful: the `goto start' and
2737`goto end' commands are usually used to search through a file, and
2738people expect them to act a lot like `search backward' and `search
2739forward' string-search commands. But because Python `def' and `class'
2740can nest to arbitrary levels, finding the smallest def containing
2741point cannot be done via a simple backward search: the def containing
2742point may not be the closest preceding def, or even the closest
2743preceding def that's indented less. The fancy algorithm required is
2744appropriate for the usual uses of this `mark' command, but not for the
2745`goto' variations.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002746
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002747So the def marked by this command may not be the one either of the
2748`goto' commands find: If point is on a blank or non-indenting comment
2749line, moves back to start of the closest preceding code statement or
2750indenting comment line. If this is a `def' statement, that's the def
2751we use. Else searches for the smallest enclosing `def' block and uses
2752that. Else signals an error.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002753
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002754When an enclosing def is found: The mark is left immediately beyond
2755the last line of the def block. Point is left at the start of the
2756def, except that: if the def is preceded by a number of comment lines
2757followed by (at most) one optional blank line, point is left at the
2758start of the comments; else if the def is preceded by a blank line,
2759point is left at its start.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002760
2761The intent is to mark the containing def/class and its associated
2762documentation, to make moving and duplicating functions and classes
2763pleasant."
2764 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002765 (let ((start (point))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002766 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2767 (class "class")
2768 (t "def"))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002769 (push-mark start)
2770 (if (not (py-go-up-tree-to-keyword which))
2771 (progn (goto-char start)
Barry Warsaw7c29b231998-07-07 17:45:38 +00002772 (error "Enclosing %s not found"
2773 (if (eq class 'either)
2774 "def or class"
2775 which)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002776 ;; else enclosing def/class found
2777 (setq start (point))
2778 (py-goto-beyond-block)
2779 (push-mark (point))
2780 (goto-char start)
2781 (if (zerop (forward-line -1)) ; if there is a preceding line
2782 (progn
2783 (if (looking-at "[ \t]*$") ; it's blank
2784 (setq start (point)) ; so reset start point
2785 (goto-char start)) ; else try again
2786 (if (zerop (forward-line -1))
2787 (if (looking-at "[ \t]*#") ; a comment
2788 ;; look back for non-comment line
2789 ;; tricky: note that the regexp matches a blank
2790 ;; line, cuz \n is in the 2nd character class
2791 (and
2792 (re-search-backward "^[ \t]*[^ \t#]" nil 'move)
2793 (forward-line 1))
2794 ;; no comment, so go back
Barry Warsaw4da6bd51997-11-26 06:00:26 +00002795 (goto-char start)))))))
2796 (exchange-point-and-mark)
2797 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002798
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002799;; ripped from cc-mode
2800(defun py-forward-into-nomenclature (&optional arg)
2801 "Move forward to end of a nomenclature section or word.
Barry Warsaw41a05c71998-08-10 16:33:12 +00002802With \\[universal-argument] (programmatically, optional argument ARG),
2803do it that many times.
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002804
2805A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2806 (interactive "p")
2807 (let ((case-fold-search nil))
2808 (if (> arg 0)
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002809 (re-search-forward
2810 "\\(\\W\\|[_]\\)*\\([A-Z]*[a-z0-9]*\\)"
2811 (point-max) t arg)
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002812 (while (and (< arg 0)
2813 (re-search-backward
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002814 "\\(\\W\\|[a-z0-9]\\)[A-Z]+\\|\\(\\W\\|[_]\\)\\w+"
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002815 (point-min) 0))
2816 (forward-char 1)
2817 (setq arg (1+ arg)))))
2818 (py-keep-region-active))
2819
2820(defun py-backward-into-nomenclature (&optional arg)
2821 "Move backward to beginning of a nomenclature section or word.
2822With optional ARG, move that many times. If ARG is negative, move
2823forward.
2824
2825A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2826 (interactive "p")
2827 (py-forward-into-nomenclature (- arg))
2828 (py-keep-region-active))
2829
2830
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002831
Barry Warsaw4f577d22001-04-11 20:23:17 +00002832;; pdbtrack functions
2833(defun py-pdbtrack-toggle-stack-tracking (arg)
2834 (interactive "P")
2835 (if (not (get-buffer-process (current-buffer)))
2836 (error "No process associated with buffer '%s'" (current-buffer)))
2837 ;; missing or 0 is toggle, >0 turn on, <0 turn off
2838 (if (or (not arg)
2839 (zerop (setq arg (prefix-numeric-value arg))))
2840 (setq py-pdbtrack-do-tracking-p (not py-pdbtrack-do-tracking-p))
2841 (setq py-pdbtrack-do-tracking-p (> arg 0)))
2842 (message "%sabled Python's pdbtrack"
2843 (if py-pdbtrack-do-tracking-p "En" "Dis")))
2844
2845(defun turn-on-pdbtrack ()
2846 (interactive)
2847 (py-pdbtrack-toggle-stack-tracking 1))
2848
2849(defun turn-off-pdbtrack ()
2850 (interactive)
2851 (py-pdbtrack-toggle-stack-tracking 0))
2852
2853
2854
Barry Warsaw29a90f02002-04-22 21:48:20 +00002855;; Pychecker
2856(defun py-pychecker-run (command)
2857 "*Run pychecker (default on the file currently visited)."
2858 (interactive
2859 (let ((default
2860 (format "%s %s %s" py-pychecker-command
2861 (mapconcat 'identity py-pychecker-command-args " ")
Barry Warsaw7f232122002-09-28 18:17:56 +00002862 (buffer-file-name)))
2863 (last (when py-pychecker-history
2864 (let* ((lastcmd (car py-pychecker-history))
2865 (cmd (cdr (reverse (split-string lastcmd))))
2866 (newcmd (reverse (cons (buffer-file-name) cmd))))
2867 (mapconcat 'identity newcmd " ")))))
Barry Warsaw29a90f02002-04-22 21:48:20 +00002868
2869 (list
2870 (read-shell-command "Run pychecker like this: "
Barry Warsaw7f232122002-09-28 18:17:56 +00002871 (if last
2872 last
Barry Warsawf31ff272002-07-17 21:25:43 +00002873 default)
Barry Warsawdaa19212002-07-16 15:56:28 +00002874 'py-pychecker-history))))
Barry Warsaw29a90f02002-04-22 21:48:20 +00002875 (save-some-buffers (not py-ask-about-save) nil)
Barry Warsawdaa19212002-07-16 15:56:28 +00002876 (compile-internal command "No more errors"))
Barry Warsaw29a90f02002-04-22 21:48:20 +00002877
2878
2879
2880;; pydoc commands. The guts of this function is stolen from XEmacs's
2881;; symbol-near-point, but without the useless regexp-quote call on the
2882;; results, nor the interactive bit. Also, we've added the temporary
2883;; syntax table setting, which Skip originally had broken out into a
2884;; separate function. Note that Emacs doesn't have the original
2885;; function.
Barry Warsawa7cc43b2002-04-22 17:15:19 +00002886(defun py-symbol-near-point ()
2887 "Return the first textual item to the nearest point."
2888 ;; alg stolen from etag.el
2889 (save-excursion
2890 (with-syntax-table py-dotted-expression-syntax-table
2891 (if (or (bobp) (not (memq (char-syntax (char-before)) '(?w ?_))))
2892 (while (not (looking-at "\\sw\\|\\s_\\|\\'"))
2893 (forward-char 1)))
2894 (while (looking-at "\\sw\\|\\s_")
2895 (forward-char 1))
2896 (if (re-search-backward "\\sw\\|\\s_" nil t)
2897 (progn (forward-char 1)
2898 (buffer-substring (point)
2899 (progn (forward-sexp -1)
2900 (while (looking-at "\\s'")
2901 (forward-char 1))
2902 (point))))
2903 nil))))
2904
2905(defun py-help-at-point ()
2906 "Get help from Python based on the symbol nearest point."
2907 (interactive)
2908 (let* ((sym (py-symbol-near-point))
2909 (base (substring sym 0 (or (search "." sym :from-end t) 0)))
2910 cmd)
2911 (if (not (equal base ""))
2912 (setq cmd (concat "import " base "\n")))
2913 (setq cmd (concat "import pydoc\n"
2914 cmd
Barry Warsaw04949552002-04-22 22:05:49 +00002915 "try: pydoc.help('" sym "')\n"
Barry Warsawa7cc43b2002-04-22 17:15:19 +00002916 "except: print 'No help available on:', \"" sym "\""))
2917 (message cmd)
Barry Warsaw04949552002-04-22 22:05:49 +00002918 (py-execute-string cmd)
2919 (set-buffer "*Python Output*")
2920 ;; BAW: Should we really be leaving the output buffer in help-mode?
2921 (help-mode)))
Barry Warsawa7cc43b2002-04-22 17:15:19 +00002922
2923
2924
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002925;; Documentation functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002926
2927;; dump the long form of the mode blurb; does the usual doc escapes,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002928;; plus lines of the form ^[vc]:name$ to suck variable & command docs
2929;; out of the right places, along with the keys they're on & current
2930;; values
Barry Warsaw7ae77681994-12-12 20:38:05 +00002931(defun py-dump-help-string (str)
2932 (with-output-to-temp-buffer "*Help*"
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002933 (let ((locals (buffer-local-variables))
2934 funckind funcname func funcdoc
2935 (start 0) mstart end
2936 keys )
Barry Warsaw7ae77681994-12-12 20:38:05 +00002937 (while (string-match "^%\\([vc]\\):\\(.+\\)\n" str start)
2938 (setq mstart (match-beginning 0) end (match-end 0)
2939 funckind (substring str (match-beginning 1) (match-end 1))
2940 funcname (substring str (match-beginning 2) (match-end 2))
2941 func (intern funcname))
2942 (princ (substitute-command-keys (substring str start mstart)))
2943 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002944 ((equal funckind "c") ; command
2945 (setq funcdoc (documentation func)
2946 keys (concat
2947 "Key(s): "
2948 (mapconcat 'key-description
2949 (where-is-internal func py-mode-map)
2950 ", "))))
2951 ((equal funckind "v") ; variable
Barry Warsaw604cefa1996-09-03 18:17:04 +00002952 (setq funcdoc (documentation-property func 'variable-documentation)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002953 keys (if (assq func locals)
2954 (concat
2955 "Local/Global values: "
2956 (prin1-to-string (symbol-value func))
2957 " / "
2958 (prin1-to-string (default-value func)))
2959 (concat
2960 "Value: "
2961 (prin1-to-string (symbol-value func))))))
2962 (t ; unexpected
2963 (error "Error in py-dump-help-string, tag `%s'" funckind)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002964 (princ (format "\n-> %s:\t%s\t%s\n\n"
2965 (if (equal funckind "c") "Command" "Variable")
2966 funcname keys))
2967 (princ funcdoc)
2968 (terpri)
2969 (setq start end))
2970 (princ (substitute-command-keys (substring str start))))
2971 (print-help-return-message)))
2972
2973(defun py-describe-mode ()
2974 "Dump long form of Python-mode docs."
2975 (interactive)
2976 (py-dump-help-string "Major mode for editing Python files.
2977Knows about Python indentation, tokens, comments and continuation lines.
2978Paragraphs are separated by blank lines only.
2979
2980Major sections below begin with the string `@'; specific function and
2981variable docs begin with `->'.
2982
2983@EXECUTING PYTHON CODE
2984
Barry Warsaw820273d1998-05-19 15:54:45 +00002985\\[py-execute-import-or-reload]\timports or reloads the file in the Python interpreter
Barry Warsaw7ae77681994-12-12 20:38:05 +00002986\\[py-execute-buffer]\tsends the entire buffer to the Python interpreter
2987\\[py-execute-region]\tsends the current region
Barry Warsaw820273d1998-05-19 15:54:45 +00002988\\[py-execute-def-or-class]\tsends the current function or class definition
2989\\[py-execute-string]\tsends an arbitrary string
Barry Warsaw7ae77681994-12-12 20:38:05 +00002990\\[py-shell]\tstarts a Python interpreter window; this will be used by
Barry Warsaw820273d1998-05-19 15:54:45 +00002991\tsubsequent Python execution commands
2992%c:py-execute-import-or-reload
Barry Warsaw7ae77681994-12-12 20:38:05 +00002993%c:py-execute-buffer
2994%c:py-execute-region
Barry Warsaw820273d1998-05-19 15:54:45 +00002995%c:py-execute-def-or-class
2996%c:py-execute-string
Barry Warsaw7ae77681994-12-12 20:38:05 +00002997%c:py-shell
2998
2999@VARIABLES
3000
3001py-indent-offset\tindentation increment
Barry Warsaw42f707f1996-07-29 21:05:05 +00003002py-block-comment-prefix\tcomment string used by comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00003003
3004py-python-command\tshell command to invoke Python interpreter
Barry Warsaw7ae77681994-12-12 20:38:05 +00003005py-temp-directory\tdirectory used for temp files (if needed)
3006
3007py-beep-if-tab-change\tring the bell if tab-width is changed
3008%v:py-indent-offset
3009%v:py-block-comment-prefix
3010%v:py-python-command
Barry Warsaw7ae77681994-12-12 20:38:05 +00003011%v:py-temp-directory
3012%v:py-beep-if-tab-change
3013
3014@KINDS OF LINES
3015
3016Each physical line in the file is either a `continuation line' (the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003017preceding line ends with a backslash that's not part of a comment, or
3018the paren/bracket/brace nesting level at the start of the line is
3019non-zero, or both) or an `initial line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00003020
3021An initial line is in turn a `blank line' (contains nothing except
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003022possibly blanks or tabs), a `comment line' (leftmost non-blank
3023character is `#'), or a `code line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00003024
3025Comment Lines
3026
3027Although all comment lines are treated alike by Python, Python mode
3028recognizes two kinds that act differently with respect to indentation.
3029
3030An `indenting comment line' is a comment line with a blank, tab or
3031nothing after the initial `#'. The indentation commands (see below)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003032treat these exactly as if they were code lines: a line following an
Barry Warsaw7ae77681994-12-12 20:38:05 +00003033indenting comment line will be indented like the comment line. All
3034other comment lines (those with a non-whitespace character immediately
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003035following the initial `#') are `non-indenting comment lines', and
3036their indentation is ignored by the indentation commands.
Barry Warsaw7ae77681994-12-12 20:38:05 +00003037
3038Indenting comment lines are by far the usual case, and should be used
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003039whenever possible. Non-indenting comment lines are useful in cases
3040like these:
Barry Warsaw7ae77681994-12-12 20:38:05 +00003041
3042\ta = b # a very wordy single-line comment that ends up being
3043\t #... continued onto another line
3044
3045\tif a == b:
3046##\t\tprint 'panic!' # old code we've `commented out'
3047\t\treturn a
3048
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003049Since the `#...' and `##' comment lines have a non-whitespace
3050character following the initial `#', Python mode ignores them when
3051computing the proper indentation for the next line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00003052
3053Continuation Lines and Statements
3054
3055The Python-mode commands generally work on statements instead of on
3056individual lines, where a `statement' is a comment or blank line, or a
3057code line and all of its following continuation lines (if any)
3058considered as a single logical unit. The commands in this mode
3059generally (when it makes sense) automatically move to the start of the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003060statement containing point, even if point happens to be in the middle
3061of some continuation line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00003062
3063
3064@INDENTATION
3065
3066Primarily for entering new code:
3067\t\\[indent-for-tab-command]\t indent line appropriately
3068\t\\[py-newline-and-indent]\t insert newline, then indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00003069\t\\[py-electric-backspace]\t reduce indentation, or delete single character
Barry Warsaw7ae77681994-12-12 20:38:05 +00003070
3071Primarily for reindenting existing code:
3072\t\\[py-guess-indent-offset]\t guess py-indent-offset from file content; change locally
3073\t\\[universal-argument] \\[py-guess-indent-offset]\t ditto, but change globally
3074
3075\t\\[py-indent-region]\t reindent region to match its context
3076\t\\[py-shift-region-left]\t shift region left by py-indent-offset
3077\t\\[py-shift-region-right]\t shift region right by py-indent-offset
3078
3079Unlike most programming languages, Python uses indentation, and only
3080indentation, to specify block structure. Hence the indentation supplied
3081automatically by Python-mode is just an educated guess: only you know
3082the block structure you intend, so only you can supply correct
3083indentation.
3084
3085The \\[indent-for-tab-command] and \\[py-newline-and-indent] keys try to suggest plausible indentation, based on
3086the indentation of preceding statements. E.g., assuming
3087py-indent-offset is 4, after you enter
3088\tif a > 0: \\[py-newline-and-indent]
3089the cursor will be moved to the position of the `_' (_ is not a
3090character in the file, it's just used here to indicate the location of
3091the cursor):
3092\tif a > 0:
3093\t _
3094If you then enter `c = d' \\[py-newline-and-indent], the cursor will move
3095to
3096\tif a > 0:
3097\t c = d
3098\t _
3099Python-mode cannot know whether that's what you intended, or whether
3100\tif a > 0:
3101\t c = d
3102\t_
3103was your intent. In general, Python-mode either reproduces the
3104indentation of the (closest code or indenting-comment) preceding
3105statement, or adds an extra py-indent-offset blanks if the preceding
3106statement has `:' as its last significant (non-whitespace and non-
3107comment) character. If the suggested indentation is too much, use
Barry Warsaw27ee1151997-12-03 05:03:44 +00003108\\[py-electric-backspace] to reduce it.
Barry Warsaw7ae77681994-12-12 20:38:05 +00003109
3110Continuation lines are given extra indentation. If you don't like the
3111suggested indentation, change it to something you do like, and Python-
3112mode will strive to indent later lines of the statement in the same way.
3113
3114If a line is a continuation line by virtue of being in an unclosed
3115paren/bracket/brace structure (`list', for short), the suggested
3116indentation depends on whether the current line contains the first item
3117in the list. If it does, it's indented py-indent-offset columns beyond
3118the indentation of the line containing the open bracket. If you don't
3119like that, change it by hand. The remaining items in the list will mimic
3120whatever indentation you give to the first item.
3121
3122If a line is a continuation line because the line preceding it ends with
3123a backslash, the third and following lines of the statement inherit their
3124indentation from the line preceding them. The indentation of the second
3125line in the statement depends on the form of the first (base) line: if
3126the base line is an assignment statement with anything more interesting
3127than the backslash following the leftmost assigning `=', the second line
3128is indented two columns beyond that `='. Else it's indented to two
3129columns beyond the leftmost solid chunk of non-whitespace characters on
3130the base line.
3131
3132Warning: indent-region should not normally be used! It calls \\[indent-for-tab-command]
3133repeatedly, and as explained above, \\[indent-for-tab-command] can't guess the block
3134structure you intend.
3135%c:indent-for-tab-command
3136%c:py-newline-and-indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00003137%c:py-electric-backspace
Barry Warsaw7ae77681994-12-12 20:38:05 +00003138
3139
3140The next function may be handy when editing code you didn't write:
3141%c:py-guess-indent-offset
3142
3143
3144The remaining `indent' functions apply to a region of Python code. They
3145assume the block structure (equals indentation, in Python) of the region
3146is correct, and alter the indentation in various ways while preserving
3147the block structure:
3148%c:py-indent-region
3149%c:py-shift-region-left
3150%c:py-shift-region-right
3151
3152@MARKING & MANIPULATING REGIONS OF CODE
3153
3154\\[py-mark-block]\t mark block of lines
Barry Warsaw2518c671997-11-05 00:51:08 +00003155\\[py-mark-def-or-class]\t mark smallest enclosing def
3156\\[universal-argument] \\[py-mark-def-or-class]\t mark smallest enclosing class
Barry Warsaw42f707f1996-07-29 21:05:05 +00003157\\[comment-region]\t comment out region of code
3158\\[universal-argument] \\[comment-region]\t uncomment region of code
Barry Warsaw7ae77681994-12-12 20:38:05 +00003159%c:py-mark-block
Barry Warsaw2518c671997-11-05 00:51:08 +00003160%c:py-mark-def-or-class
Barry Warsaw42f707f1996-07-29 21:05:05 +00003161%c:comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00003162
3163@MOVING POINT
3164
3165\\[py-previous-statement]\t move to statement preceding point
3166\\[py-next-statement]\t move to statement following point
3167\\[py-goto-block-up]\t move up to start of current block
Barry Warsawab0e86c1998-05-19 15:31:46 +00003168\\[py-beginning-of-def-or-class]\t move to start of def
3169\\[universal-argument] \\[py-beginning-of-def-or-class]\t move to start of class
3170\\[py-end-of-def-or-class]\t move to end of def
3171\\[universal-argument] \\[py-end-of-def-or-class]\t move to end of class
Barry Warsaw7ae77681994-12-12 20:38:05 +00003172
3173The first two move to one statement beyond the statement that contains
3174point. A numeric prefix argument tells them to move that many
3175statements instead. Blank lines, comment lines, and continuation lines
3176do not count as `statements' for these commands. So, e.g., you can go
3177to the first code statement in a file by entering
3178\t\\[beginning-of-buffer]\t to move to the top of the file
3179\t\\[py-next-statement]\t to skip over initial comments and blank lines
3180Or do `\\[py-previous-statement]' with a huge prefix argument.
3181%c:py-previous-statement
3182%c:py-next-statement
3183%c:py-goto-block-up
Barry Warsawab0e86c1998-05-19 15:31:46 +00003184%c:py-beginning-of-def-or-class
3185%c:py-end-of-def-or-class
Barry Warsaw7ae77681994-12-12 20:38:05 +00003186
3187@LITTLE-KNOWN EMACS COMMANDS PARTICULARLY USEFUL IN PYTHON MODE
3188
3189`\\[indent-new-comment-line]' is handy for entering a multi-line comment.
3190
3191`\\[set-selective-display]' with a `small' prefix arg is ideally suited for viewing the
3192overall class and def structure of a module.
3193
3194`\\[back-to-indentation]' moves point to a line's first non-blank character.
3195
3196`\\[indent-relative]' is handy for creating odd indentation.
3197
3198@OTHER EMACS HINTS
3199
3200If you don't like the default value of a variable, change its value to
3201whatever you do like by putting a `setq' line in your .emacs file.
3202E.g., to set the indentation increment to 4, put this line in your
3203.emacs:
3204\t(setq py-indent-offset 4)
3205To see the value of a variable, do `\\[describe-variable]' and enter the variable
3206name at the prompt.
3207
3208When entering a key sequence like `C-c C-n', it is not necessary to
3209release the CONTROL key after doing the `C-c' part -- it suffices to
3210press the CONTROL key, press and release `c' (while still holding down
3211CONTROL), press and release `n' (while still holding down CONTROL), &
3212then release CONTROL.
3213
3214Entering Python mode calls with no arguments the value of the variable
3215`python-mode-hook', if that value exists and is not nil; for backward
3216compatibility it also tries `py-mode-hook'; see the `Hooks' section of
3217the Elisp manual for details.
3218
3219Obscure: When python-mode is first loaded, it looks for all bindings
3220to newline-and-indent in the global keymap, and shadows them with
3221local bindings to py-newline-and-indent."))
3222
Barry Warsaw56bd2ed2002-04-25 15:44:17 +00003223(require 'info-look)
Barry Warsaw5dfc7af2002-04-30 18:58:52 +00003224;; The info-look package does not always provide this function (it
3225;; appears this is the case with XEmacs 21.1)
3226(when (fboundp 'info-lookup-maybe-add-help)
3227 (info-lookup-maybe-add-help
3228 :mode 'python-mode
3229 :regexp "[a-zA-Z0-9_]+"
3230 :doc-spec '(("(python-lib)Module Index")
3231 ("(python-lib)Class-Exception-Object Index")
3232 ("(python-lib)Function-Method-Variable Index")
3233 ("(python-lib)Miscellaneous Index")))
3234 )
Barry Warsaw56bd2ed2002-04-25 15:44:17 +00003235
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003236
3237;; Helper functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00003238(defvar py-parse-state-re
3239 (concat
Barry Warsaw644991f2002-10-21 15:58:29 +00003240 "^[ \t]*\\(elif\\|else\\|while\\|def\\|class\\)\\>"
Barry Warsaw7ae77681994-12-12 20:38:05 +00003241 "\\|"
3242 "^[^ #\t\n]"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003243
Barry Warsaw7ae77681994-12-12 20:38:05 +00003244(defun py-parse-state ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003245 "Return the parse state at point (see `parse-partial-sexp' docs)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003246 (save-excursion
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00003247 (let ((here (point))
Barry Warsawb2d5e622002-04-22 15:29:27 +00003248 pps done)
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00003249 (while (not done)
3250 ;; back up to the first preceding line (if any; else start of
3251 ;; buffer) that begins with a popular Python keyword, or a
3252 ;; non- whitespace and non-comment character. These are good
3253 ;; places to start parsing to see whether where we started is
3254 ;; at a non-zero nesting level. It may be slow for people who
3255 ;; write huge code blocks or huge lists ... tough beans.
3256 (re-search-backward py-parse-state-re nil 'move)
3257 (beginning-of-line)
Barry Warsawf64b4051998-02-12 16:52:14 +00003258 ;; In XEmacs, we have a much better way to test for whether
3259 ;; we're in a triple-quoted string or not. Emacs does not
Barry Warsaw145ab1c1998-05-19 14:49:49 +00003260 ;; have this built-in function, which is its loss because
Barry Warsawf64b4051998-02-12 16:52:14 +00003261 ;; without scanning from the beginning of the buffer, there's
3262 ;; no accurate way to determine this otherwise.
Barry Warsawb2d5e622002-04-22 15:29:27 +00003263 (save-excursion (setq pps (parse-partial-sexp (point) here)))
3264 ;; make sure we don't land inside a triple-quoted string
3265 (setq done (or (not (nth 3 pps))
3266 (bobp)))
3267 ;; Just go ahead and short circuit the test back to the
3268 ;; beginning of the buffer. This will be slow, but not
3269 ;; nearly as slow as looping through many
3270 ;; re-search-backwards.
3271 (if (not done)
3272 (goto-char (point-min))))
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00003273 pps)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003274
Barry Warsaw7ae77681994-12-12 20:38:05 +00003275(defun py-nesting-level ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003276 "Return the buffer position of the last unclosed enclosing list.
3277If nesting level is zero, return nil."
Barry Warsawf64b4051998-02-12 16:52:14 +00003278 (let ((status (py-parse-state)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003279 (if (zerop (car status))
3280 nil ; not in a nest
3281 (car (cdr status))))) ; char# of open bracket
3282
Barry Warsaw7ae77681994-12-12 20:38:05 +00003283(defun py-backslash-continuation-line-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003284 "Return t iff preceding line ends with backslash that is not in a comment."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003285 (save-excursion
3286 (beginning-of-line)
3287 (and
3288 ;; use a cheap test first to avoid the regexp if possible
3289 ;; use 'eq' because char-after may return nil
3290 (eq (char-after (- (point) 2)) ?\\ )
3291 ;; make sure; since eq test passed, there is a preceding line
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003292 (forward-line -1) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00003293 (looking-at py-continued-re))))
3294
Barry Warsaw7ae77681994-12-12 20:38:05 +00003295(defun py-continuation-line-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003296 "Return t iff current line is a continuation line."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003297 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003298 (beginning-of-line)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003299 (or (py-backslash-continuation-line-p)
3300 (py-nesting-level))))
3301
Barry Warsaw9c1696c1998-12-15 04:36:22 +00003302(defun py-goto-beginning-of-tqs (delim)
3303 "Go to the beginning of the triple quoted string we find ourselves in.
3304DELIM is the TQS string delimiter character we're searching backwards
3305for."
Barry Warsaw3c34bb32000-10-27 05:00:25 +00003306 (let ((skip (and delim (make-string 1 delim)))
3307 (continue t))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00003308 (when skip
3309 (save-excursion
Barry Warsaw3c34bb32000-10-27 05:00:25 +00003310 (while continue
3311 (py-safe (search-backward skip))
3312 (setq continue (and (not (bobp))
3313 (= (char-before) ?\\))))
3314 (if (and (= (char-before) delim)
3315 (= (char-before (1- (point))) delim))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00003316 (setq skip (make-string 3 delim))))
3317 ;; we're looking at a triple-quoted string
3318 (py-safe (search-backward skip)))))
3319
Barry Warsaw7ae77681994-12-12 20:38:05 +00003320(defun py-goto-initial-line ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003321 "Go to the initial line of the current statement.
3322Usually this is the line we're on, but if we're on the 2nd or
3323following lines of a continuation block, we need to go up to the first
3324line of the block."
3325 ;; Tricky: We want to avoid quadratic-time behavior for long
3326 ;; continued blocks, whether of the backslash or open-bracket
3327 ;; varieties, or a mix of the two. The following manages to do that
3328 ;; in the usual cases.
3329 ;;
3330 ;; Also, if we're sitting inside a triple quoted string, this will
3331 ;; drop us at the line that begins the string.
Barry Warsaw9ec9fbc1998-01-21 05:15:57 +00003332 (let (open-bracket-pos)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003333 (while (py-continuation-line-p)
3334 (beginning-of-line)
3335 (if (py-backslash-continuation-line-p)
3336 (while (py-backslash-continuation-line-p)
3337 (forward-line -1))
3338 ;; else zip out of nested brackets/braces/parens
3339 (while (setq open-bracket-pos (py-nesting-level))
3340 (goto-char open-bracket-pos)))))
3341 (beginning-of-line))
3342
Barry Warsaw7ae77681994-12-12 20:38:05 +00003343(defun py-goto-beyond-final-line ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003344 "Go to the point just beyond the fine line of the current statement.
3345Usually this is the start of the next line, but if this is a
3346multi-line statement we need to skip over the continuation lines."
3347 ;; Tricky: Again we need to be clever to avoid quadratic time
3348 ;; behavior.
3349 ;;
3350 ;; XXX: Not quite the right solution, but deals with multi-line doc
3351 ;; strings
Barry Warsaw751f4931998-05-19 16:06:21 +00003352 (if (looking-at (concat "[ \t]*\\(" py-stringlit-re "\\)"))
3353 (goto-char (match-end 0)))
3354 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +00003355 (forward-line 1)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003356 (let (state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003357 (while (and (py-continuation-line-p)
3358 (not (eobp)))
3359 ;; skip over the backslash flavor
3360 (while (and (py-backslash-continuation-line-p)
3361 (not (eobp)))
3362 (forward-line 1))
3363 ;; if in nest, zip to the end of the nest
3364 (setq state (py-parse-state))
3365 (if (and (not (zerop (car state)))
3366 (not (eobp)))
3367 (progn
Barry Warsawaffc0ca1997-11-03 16:59:38 +00003368 (parse-partial-sexp (point) (point-max) 0 nil state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003369 (forward-line 1))))))
3370
Barry Warsaw7ae77681994-12-12 20:38:05 +00003371(defun py-statement-opens-block-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003372 "Return t iff the current statement opens a block.
3373I.e., iff it ends with a colon that is not in a comment. Point should
3374be at the start of a statement."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003375 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003376 (let ((start (point))
3377 (finish (progn (py-goto-beyond-final-line) (1- (point))))
3378 (searching t)
3379 (answer nil)
3380 state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003381 (goto-char start)
3382 (while searching
3383 ;; look for a colon with nothing after it except whitespace, and
3384 ;; maybe a comment
3385 (if (re-search-forward ":\\([ \t]\\|\\\\\n\\)*\\(#.*\\)?$"
3386 finish t)
3387 (if (eq (point) finish) ; note: no `else' clause; just
3388 ; keep searching if we're not at
3389 ; the end yet
3390 ;; sure looks like it opens a block -- but it might
3391 ;; be in a comment
3392 (progn
3393 (setq searching nil) ; search is done either way
3394 (setq state (parse-partial-sexp start
3395 (match-beginning 0)))
3396 (setq answer (not (nth 4 state)))))
3397 ;; search failed: couldn't find another interesting colon
3398 (setq searching nil)))
3399 answer)))
3400
Barry Warsawf831d811996-07-31 20:42:59 +00003401(defun py-statement-closes-block-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003402 "Return t iff the current statement closes a block.
3403I.e., if the line starts with `return', `raise', `break', `continue',
3404and `pass'. This doesn't catch embedded statements."
Barry Warsawf831d811996-07-31 20:42:59 +00003405 (let ((here (point)))
Barry Warsawa8f99ba1999-05-24 18:37:57 +00003406 (py-goto-initial-line)
Barry Warsawc0d2d511999-06-03 22:18:59 +00003407 (back-to-indentation)
Barry Warsawf831d811996-07-31 20:42:59 +00003408 (prog1
Barry Warsawaffc0ca1997-11-03 16:59:38 +00003409 (looking-at (concat py-block-closing-keywords-re "\\>"))
Barry Warsawf831d811996-07-31 20:42:59 +00003410 (goto-char here))))
3411
Barry Warsaw7ae77681994-12-12 20:38:05 +00003412(defun py-goto-beyond-block ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003413 "Go to point just beyond the final line of block begun by the current line.
3414This is the same as where `py-goto-beyond-final-line' goes unless
3415we're on colon line, in which case we go to the end of the block.
3416Assumes point is at the beginning of the line."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003417 (if (py-statement-opens-block-p)
3418 (py-mark-block nil 'just-move)
3419 (py-goto-beyond-final-line)))
3420
Barry Warsaw7ae77681994-12-12 20:38:05 +00003421(defun py-goto-statement-at-or-above ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003422 "Go to the start of the first statement at or preceding point.
3423Return t if there is such a statement, otherwise nil. `Statement'
3424does not include blank lines, comments, or continuation lines."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003425 (py-goto-initial-line)
3426 (if (looking-at py-blank-or-comment-re)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003427 ;; skip back over blank & comment lines
3428 ;; note: will skip a blank or comment line that happens to be
3429 ;; a continuation line too
3430 (if (re-search-backward "^[ \t]*[^ \t#\n]" nil t)
3431 (progn (py-goto-initial-line) t)
3432 nil)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003433 t))
3434
Barry Warsaw7ae77681994-12-12 20:38:05 +00003435(defun py-goto-statement-below ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003436 "Go to start of the first statement following the statement containing point.
3437Return t if there is such a statement, otherwise nil. `Statement'
3438does not include blank lines, comments, or continuation lines."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003439 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003440 (let ((start (point)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003441 (py-goto-beyond-final-line)
3442 (while (and
Barry Warsawf070cce2002-05-23 19:42:16 +00003443 (or (looking-at py-blank-or-comment-re)
3444 (py-in-literal))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003445 (not (eobp)))
3446 (forward-line 1))
3447 (if (eobp)
3448 (progn (goto-char start) nil)
3449 t)))
3450
Barry Warsaw7ae77681994-12-12 20:38:05 +00003451(defun py-go-up-tree-to-keyword (key)
Barry Warsaw41a05c71998-08-10 16:33:12 +00003452 "Go to begining of statement starting with KEY, at or preceding point.
3453
3454KEY is a regular expression describing a Python keyword. Skip blank
3455lines and non-indenting comments. If the statement found starts with
3456KEY, then stop, otherwise go back to first enclosing block starting
3457with KEY. If successful, leave point at the start of the KEY line and
3458return t. Otherwise, leav point at an undefined place and return nil."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003459 ;; skip blanks and non-indenting #
3460 (py-goto-initial-line)
3461 (while (and
3462 (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
3463 (zerop (forward-line -1))) ; go back
3464 nil)
3465 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003466 (let* ((re (concat "[ \t]*" key "\\b"))
3467 (case-fold-search nil) ; let* so looking-at sees this
3468 (found (looking-at re))
3469 (dead nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003470 (while (not (or found dead))
3471 (condition-case nil ; in case no enclosing block
3472 (py-goto-block-up 'no-mark)
3473 (error (setq dead t)))
3474 (or dead (setq found (looking-at re))))
3475 (beginning-of-line)
3476 found))
3477
Barry Warsaw7ae77681994-12-12 20:38:05 +00003478(defun py-suck-up-leading-text ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003479 "Return string in buffer from start of indentation to end of line.
3480Prefix with \"...\" if leading whitespace was skipped."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003481 (save-excursion
3482 (back-to-indentation)
3483 (concat
3484 (if (bolp) "" "...")
3485 (buffer-substring (point) (progn (end-of-line) (point))))))
3486
Barry Warsaw7ae77681994-12-12 20:38:05 +00003487(defun py-suck-up-first-keyword ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003488 "Return first keyword on the line as a Lisp symbol.
3489`Keyword' is defined (essentially) as the regular expression
3490([a-z]+). Returns nil if none was found."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003491 (let ((case-fold-search nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003492 (if (looking-at "[ \t]*\\([a-z]+\\)\\b")
3493 (intern (buffer-substring (match-beginning 1) (match-end 1)))
3494 nil)))
3495
Barry Warsawb3e81d51996-09-04 15:12:42 +00003496(defun py-current-defun ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003497 "Python value for `add-log-current-defun-function'.
3498This tells add-log.el how to find the current function/method/variable."
Barry Warsawb3e81d51996-09-04 15:12:42 +00003499 (save-excursion
3500 (if (re-search-backward py-defun-start-re nil t)
3501 (or (match-string 3)
3502 (let ((method (match-string 2)))
3503 (if (and (not (zerop (length (match-string 1))))
3504 (re-search-backward py-class-start-re nil t))
3505 (concat (match-string 1) "." method)
3506 method)))
3507 nil)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003508
3509
Barry Warsawfec75d61995-07-05 23:26:15 +00003510(defconst py-help-address "python-mode@python.org"
Barry Warsaw850437a1995-03-08 21:50:28 +00003511 "Address accepting submission of bug reports.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003512
Barry Warsaw850437a1995-03-08 21:50:28 +00003513(defun py-version ()
3514 "Echo the current version of `python-mode' in the minibuffer."
3515 (interactive)
3516 (message "Using `python-mode' version %s" py-version)
3517 (py-keep-region-active))
3518
3519;; only works under Emacs 19
3520;(eval-when-compile
3521; (require 'reporter))
3522
3523(defun py-submit-bug-report (enhancement-p)
3524 "Submit via mail a bug report on `python-mode'.
Barry Warsaw41a05c71998-08-10 16:33:12 +00003525With \\[universal-argument] (programmatically, argument ENHANCEMENT-P
3526non-nil) just submit an enhancement request."
Barry Warsaw850437a1995-03-08 21:50:28 +00003527 (interactive
3528 (list (not (y-or-n-p
Barry Warsaw41a05c71998-08-10 16:33:12 +00003529 "Is this a bug report (hit `n' to send other comments)? "))))
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00003530 (let ((reporter-prompt-for-summary-p (if enhancement-p
3531 "(Very) brief summary: "
3532 t)))
Barry Warsaw850437a1995-03-08 21:50:28 +00003533 (require 'reporter)
3534 (reporter-submit-bug-report
3535 py-help-address ;address
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00003536 (concat "python-mode " py-version) ;pkgname
Barry Warsaw850437a1995-03-08 21:50:28 +00003537 ;; varlist
3538 (if enhancement-p nil
3539 '(py-python-command
3540 py-indent-offset
3541 py-block-comment-prefix
Barry Warsaw850437a1995-03-08 21:50:28 +00003542 py-temp-directory
3543 py-beep-if-tab-change))
3544 nil ;pre-hooks
3545 nil ;post-hooks
3546 "Dear Barry,") ;salutation
3547 (if enhancement-p nil
3548 (set-mark (point))
3549 (insert
3550"Please replace this text with a sufficiently large code sample\n\
3551and an exact recipe so that I can reproduce your problem. Failure\n\
3552to do so may mean a greater delay in fixing your bug.\n\n")
3553 (exchange-point-and-mark)
3554 (py-keep-region-active))))
3555
3556
Barry Warsaw47384781997-11-26 05:27:45 +00003557(defun py-kill-emacs-hook ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003558 "Delete files in `py-file-queue'.
3559These are Python temporary files awaiting execution."
Barry Warsaw47384781997-11-26 05:27:45 +00003560 (mapcar #'(lambda (filename)
3561 (py-safe (delete-file filename)))
3562 py-file-queue))
3563
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003564;; arrange to kill temp files when Emacs exists
Barry Warsawc72c11c1997-08-09 06:42:08 +00003565(add-hook 'kill-emacs-hook 'py-kill-emacs-hook)
Barry Warsaw4f577d22001-04-11 20:23:17 +00003566(add-hook 'comint-output-filter-functions 'py-pdbtrack-track-stack-file)
3567
3568;; Add a designator to the minor mode strings
3569(or (assq 'py-pdbtrack-minor-mode-string minor-mode-alist)
3570 (push '(py-pdbtrack-is-tracking-p py-pdbtrack-minor-mode-string)
3571 minor-mode-alist))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003572
3573
3574
Skip Montanaro6c5bc342002-12-31 16:56:20 +00003575;;; paragraph and string filling code from Bernhard Herzog
3576;;; see http://mail.python.org/pipermail/python-list/2002-May/103189.html
3577
3578(defun py-fill-comment (&optional justify)
3579 "Fill the comment paragraph around point"
3580 (let (;; Non-nil if the current line contains a comment.
3581 has-comment
3582
3583 ;; If has-comment, the appropriate fill-prefix for the comment.
3584 comment-fill-prefix)
3585
3586 ;; Figure out what kind of comment we are looking at.
3587 (save-excursion
3588 (beginning-of-line)
3589 (cond
3590 ;; A line with nothing but a comment on it?
3591 ((looking-at "[ \t]*#[# \t]*")
3592 (setq has-comment t
3593 comment-fill-prefix (buffer-substring (match-beginning 0)
3594 (match-end 0))))
3595
3596 ;; A line with some code, followed by a comment? Remember that the hash
3597 ;; which starts the comment shouldn't be part of a string or character.
3598 ((progn
3599 (while (not (looking-at "#\\|$"))
3600 (skip-chars-forward "^#\n\"'\\")
3601 (cond
3602 ((eq (char-after (point)) ?\\) (forward-char 2))
3603 ((memq (char-after (point)) '(?\" ?')) (forward-sexp 1))))
3604 (looking-at "#+[\t ]*"))
3605 (setq has-comment t)
3606 (setq comment-fill-prefix
3607 (concat (make-string (current-column) ? )
3608 (buffer-substring (match-beginning 0) (match-end 0)))))))
3609
3610 (if (not has-comment)
3611 (fill-paragraph justify)
3612
3613 ;; Narrow to include only the comment, and then fill the region.
3614 (save-restriction
3615 (narrow-to-region
3616
3617 ;; Find the first line we should include in the region to fill.
3618 (save-excursion
3619 (while (and (zerop (forward-line -1))
3620 (looking-at "^[ \t]*#")))
3621
3622 ;; We may have gone to far. Go forward again.
3623 (or (looking-at "^[ \t]*#")
3624 (forward-line 1))
3625 (point))
3626
3627 ;; Find the beginning of the first line past the region to fill.
3628 (save-excursion
3629 (while (progn (forward-line 1)
3630 (looking-at "^[ \t]*#")))
3631 (point)))
3632
3633 ;; Lines with only hashes on them can be paragraph boundaries.
3634 (let ((paragraph-start (concat paragraph-start "\\|[ \t#]*$"))
3635 (paragraph-separate (concat paragraph-separate "\\|[ \t#]*$"))
3636 (fill-prefix comment-fill-prefix))
3637 ;;(message "paragraph-start %S paragraph-separate %S"
3638 ;;paragraph-start paragraph-separate)
3639 (fill-paragraph justify))))
3640 t))
3641
3642
3643(defun py-fill-string (start &optional justify)
3644 "Fill the paragraph around (point) in the string starting at start"
3645 ;; basic strategy: narrow to the string and call the default
3646 ;; implementation
3647 (let (;; the start of the string's contents
3648 string-start
3649 ;; the end of the string's contents
3650 string-end
3651 ;; length of the string's delimiter
3652 delim-length
3653 ;; The string delimiter
3654 delim
3655 )
3656
3657 (save-excursion
3658 (goto-char start)
3659 (if (looking-at "\\('''\\|\"\"\"\\|'\\|\"\\)\\\\?\n?")
3660 (setq string-start (match-end 0)
3661 delim-length (- (match-end 1) (match-beginning 1))
3662 delim (buffer-substring-no-properties (match-beginning 1)
3663 (match-end 1)))
3664 (error "The parameter start is not the beginning of a python string"))
3665
3666 ;; if the string is the first token on a line and doesn't start with
3667 ;; a newline, fill as if the string starts at the beginning of the
3668 ;; line. this helps with one line docstrings
3669 (save-excursion
3670 (beginning-of-line)
3671 (and (/= (char-before string-start) ?\n)
3672 (looking-at (concat "[ \t]*" delim))
3673 (setq string-start (point))))
3674
3675 (forward-sexp (if (= delim-length 3) 2 1))
3676
3677 ;; with both triple quoted strings and single/double quoted strings
3678 ;; we're now directly behind the first char of the end delimiter
3679 ;; (this doesn't work correctly when the triple quoted string
3680 ;; contains the quote mark itself). The end of the string's contents
3681 ;; is one less than point
3682 (setq string-end (1- (point))))
3683
3684 ;; Narrow to the string's contents and fill the current paragraph
3685 (save-restriction
3686 (narrow-to-region string-start string-end)
3687 (let ((ends-with-newline (= (char-before (point-max)) ?\n)))
3688 (fill-paragraph justify)
3689 (if (and (not ends-with-newline)
3690 (= (char-before (point-max)) ?\n))
3691 ;; the default fill-paragraph implementation has inserted a
3692 ;; newline at the end. Remove it again.
3693 (save-excursion
3694 (goto-char (point-max))
3695 (delete-char -1)))))
3696
3697 ;; return t to indicate that we've done our work
3698 t))
3699
3700(defun py-fill-paragraph (&optional justify)
3701 "Like \\[fill-paragraph], but handle Python comments and strings.
3702If any of the current line is a comment, fill the comment or the
3703paragraph of it that point is in, preserving the comment's indentation
3704and initial `#'s.
3705If point is inside a string, narrow to that string and fill.
3706"
3707 (interactive "P")
3708 (let* ((bod (py-point 'bod))
3709 (pps (parse-partial-sexp bod (point))))
3710 (cond
3711 ;; are we inside a comment or on a line with only whitespace before
3712 ;; the comment start?
3713 ((or (nth 4 pps)
3714 (save-excursion (beginning-of-line) (looking-at "[ \t]*#")))
3715 (py-fill-comment justify))
3716 ;; are we inside a string?
3717 ((nth 3 pps)
Skip Montanaro45637692003-07-31 04:59:48 +00003718 (py-fill-string (nth 8 pps)))
Skip Montanaro6c5bc342002-12-31 16:56:20 +00003719 ;; otherwise use the default
3720 (t
3721 (fill-paragraph justify)))))
3722
3723
3724
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003725(provide 'python-mode)
3726;;; python-mode.el ends here