blob: 1e894fe8cb204fd8d533e919c2aafce061c4d115 [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 Warsawc72c11c1997-08-09 06:42:08 +000062
Barry Warsaw7b0f5681995-03-08 21:33:04 +000063
64;; user definable variables
65;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
Barry Warsaw7ae77681994-12-12 20:38:05 +000066
Barry Warsawc72c11c1997-08-09 06:42:08 +000067(defgroup python nil
68 "Support for the Python programming language, <http://www.python.org/>"
Barry Warsaw5ed843f1999-07-28 22:06:06 +000069 :group 'languages
70 :prefix "py-")
Barry Warsaw7ae77681994-12-12 20:38:05 +000071
Barry Warsawc72c11c1997-08-09 06:42:08 +000072(defcustom py-python-command "python"
73 "*Shell command used to start Python interpreter."
74 :type 'string
75 :group 'python)
76
Barry Warsawa2398801998-04-09 23:28:20 +000077(defcustom py-jpython-command "jpython"
78 "*Shell command used to start the JPython interpreter."
79 :type 'string
Barry Warsaw5ed843f1999-07-28 22:06:06 +000080 :group 'python
81 :tag "JPython Command")
Barry Warsawa2398801998-04-09 23:28:20 +000082
Barry Warsawaa384fd1999-02-16 23:36:16 +000083(defcustom py-default-interpreter 'cpython
84 "*Which Python interpreter is used by default.
85The value for this variable can be either `cpython' or `jpython'.
86
87When the value is `cpython', the variables `py-python-command' and
88`py-python-command-args' are consulted to determine the interpreter
89and arguments to use.
90
91When the value is `jpython', the variables `py-jpython-command' and
92`py-jpython-command-args' are consulted to determine the interpreter
93and arguments to use.
94
Barry Warsaw11f21561999-07-28 21:59:43 +000095Note that this variable is consulted only the first time that a Python
96mode buffer is visited during an Emacs session. After that, use
Barry Warsawaa384fd1999-02-16 23:36:16 +000097\\[py-toggle-shells] to change the interpreter shell."
98 :type '(choice (const :tag "Python (a.k.a. CPython)" cpython)
99 (const :tag "JPython" jpython))
100 :group 'python)
101
Barry Warsaw8f972b71998-02-05 20:45:49 +0000102(defcustom py-python-command-args '("-i")
103 "*List of string arguments to be used when starting a Python shell."
104 :type '(repeat string)
105 :group 'python)
106
Barry Warsawa2398801998-04-09 23:28:20 +0000107(defcustom py-jpython-command-args '("-i")
108 "*List of string arguments to be used when starting a JPython shell."
109 :type '(repeat string)
Barry Warsaw5ed843f1999-07-28 22:06:06 +0000110 :group 'python
111 :tag "JPython Command Args")
Barry Warsawa2398801998-04-09 23:28:20 +0000112
Barry Warsawc72c11c1997-08-09 06:42:08 +0000113(defcustom py-indent-offset 4
Barry Warsaw41a05c71998-08-10 16:33:12 +0000114 "*Amount of offset per level of indentation.
115`\\[py-guess-indent-offset]' can usually guess a good value when
116you're editing someone else's Python code."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000117 :type 'integer
118 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000119
Barry Warsawfd4c9e82001-06-18 23:40:35 +0000120(defcustom py-continuation-offset 4
Barry Warsaw40fb4522001-07-06 20:07:13 +0000121 "*Additional amount of offset to give for some continuation lines.
Barry Warsawfd4c9e82001-06-18 23:40:35 +0000122Continuation lines are those that immediately follow a backslash
Barry Warsaw40fb4522001-07-06 20:07:13 +0000123terminated line. Only those continuation lines for a block opening
124statement are given this extra offset."
Barry Warsawfd4c9e82001-06-18 23:40:35 +0000125 :type 'integer
126 :group 'python)
127
Barry Warsaw742a5111998-03-13 17:29:15 +0000128(defcustom py-smart-indentation t
129 "*Should `python-mode' try to automagically set some indentation variables?
130When this variable is non-nil, two things happen when a buffer is set
131to `python-mode':
132
Barry Warsawc0d2d511999-06-03 22:18:59 +0000133 1. `py-indent-offset' is guessed from existing code in the buffer.
Barry Warsaw639eea61998-03-16 18:12:13 +0000134 Only guessed values between 2 and 8 are considered. If a valid
Barry Warsaw742a5111998-03-13 17:29:15 +0000135 guess can't be made (perhaps because you are visiting a new
Barry Warsaw639eea61998-03-16 18:12:13 +0000136 file), then the value in `py-indent-offset' is used.
Barry Warsaw742a5111998-03-13 17:29:15 +0000137
Barry Warsaw639eea61998-03-16 18:12:13 +0000138 2. `indent-tabs-mode' is turned off if `py-indent-offset' does not
139 equal `tab-width' (`indent-tabs-mode' is never turned on by
140 Python mode). This means that for newly written code, tabs are
141 only inserted in indentation if one tab is one indentation
142 level, otherwise only spaces are used.
Barry Warsaw742a5111998-03-13 17:29:15 +0000143
Barry Warsaw8046bef1998-03-13 20:04:52 +0000144Note that both these settings occur *after* `python-mode-hook' is run,
145so if you want to defeat the automagic configuration, you must also
146set `py-smart-indentation' to nil in your `python-mode-hook'."
Barry Warsaw742a5111998-03-13 17:29:15 +0000147 :type 'boolean
148 :group 'python)
149
Barry Warsawc72c11c1997-08-09 06:42:08 +0000150(defcustom py-align-multiline-strings-p t
151 "*Flag describing how multi-line triple quoted strings are aligned.
Barry Warsaw095e9c61995-09-19 20:01:42 +0000152When this flag is non-nil, continuation lines are lined up under the
153preceding line's indentation. When this flag is nil, continuation
Barry Warsawc72c11c1997-08-09 06:42:08 +0000154lines are aligned to column zero."
155 :type '(choice (const :tag "Align under preceding line" t)
156 (const :tag "Align to column zero" nil))
157 :group 'python)
Barry Warsaw095e9c61995-09-19 20:01:42 +0000158
Barry Warsaw218eb751998-09-22 19:51:47 +0000159(defcustom py-block-comment-prefix "##"
Barry Warsaw867a32a1996-03-07 18:30:26 +0000160 "*String used by \\[comment-region] to comment out a block of code.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000161This should follow the convention for non-indenting comment lines so
162that the indentation commands won't get confused (i.e., the string
163should be of the form `#x...' where `x' is not a blank or a tab, and
Barry Warsaw218eb751998-09-22 19:51:47 +0000164`...' is arbitrary). However, this string should not end in whitespace."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000165 :type 'string
166 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000167
Barry Warsawc72c11c1997-08-09 06:42:08 +0000168(defcustom py-honor-comment-indentation t
Barry Warsaw6d627751996-03-06 18:41:38 +0000169 "*Controls how comment lines influence subsequent indentation.
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000170
Barry Warsaw6d627751996-03-06 18:41:38 +0000171When nil, all comment lines are skipped for indentation purposes, and
Barry Warsawc72c11c1997-08-09 06:42:08 +0000172if possible, a faster algorithm is used (i.e. X/Emacs 19 and beyond).
Barry Warsaw6d627751996-03-06 18:41:38 +0000173
174When t, lines that begin with a single `#' are a hint to subsequent
175line indentation. If the previous line is such a comment line (as
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000176opposed to one that starts with `py-block-comment-prefix'), then its
Barry Warsaw6d627751996-03-06 18:41:38 +0000177indentation is used as a hint for this line's indentation. Lines that
178begin with `py-block-comment-prefix' are ignored for indentation
179purposes.
180
Barry Warsawd36cfe42002-03-15 16:46:46 +0000181When not nil or t, comment lines that begin with a single `#' are used
182as indentation hints, unless the comment character is in column zero."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000183 :type '(choice
184 (const :tag "Skip all comment lines (fast)" nil)
185 (const :tag "Single # `sets' indentation for next line" t)
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000186 (const :tag "Single # `sets' indentation except at column zero"
187 other)
Barry Warsawc72c11c1997-08-09 06:42:08 +0000188 )
189 :group 'python)
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000190
Barry Warsaw516b6201997-08-09 06:43:20 +0000191(defcustom py-temp-directory
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000192 (let ((ok '(lambda (x)
193 (and x
194 (setq x (expand-file-name x)) ; always true
195 (file-directory-p x)
196 (file-writable-p x)
197 x))))
Barry Warsaw7ae77681994-12-12 20:38:05 +0000198 (or (funcall ok (getenv "TMPDIR"))
199 (funcall ok "/usr/tmp")
200 (funcall ok "/tmp")
Barry Warsawd1648372002-03-18 18:53:56 +0000201 (funcall ok "/var/tmp")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000202 (funcall ok ".")
203 (error
Barry Warsaw6c6db0a1998-02-25 16:33:56 +0000204 "Couldn't find a usable temp directory -- set `py-temp-directory'")))
Barry Warsawd1648372002-03-18 18:53:56 +0000205 "*Directory used for temporary files created by a *Python* process.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000206By default, the first directory from this list that exists and that you
Barry Warsawd1648372002-03-18 18:53:56 +0000207can write into: the value (if any) of the environment variable TMPDIR,
208/usr/tmp, /tmp, /var/tmp, or the current directory."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000209 :type 'string
210 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000211
Barry Warsaw516b6201997-08-09 06:43:20 +0000212(defcustom py-beep-if-tab-change t
Barry Warsaw41a05c71998-08-10 16:33:12 +0000213 "*Ring the bell if `tab-width' is changed.
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000214If a comment of the form
215
216 \t# vi:set tabsize=<number>:
217
218is found before the first code line when the file is entered, and the
219current value of (the general Emacs variable) `tab-width' does not
220equal <number>, `tab-width' is set to <number>, a message saying so is
221displayed in the echo area, and if `py-beep-if-tab-change' is non-nil
Barry Warsawc72c11c1997-08-09 06:42:08 +0000222the Emacs bell is also rung as a warning."
223 :type 'boolean
224 :group 'python)
225
Barry Warsaw9981d221997-12-03 05:25:48 +0000226(defcustom py-jump-on-exception t
227 "*Jump to innermost exception frame in *Python Output* buffer.
Barry Warsaw12c92941998-08-10 21:44:37 +0000228When this variable is non-nil and an exception occurs when running
Barry Warsaw9981d221997-12-03 05:25:48 +0000229Python code synchronously in a subprocess, jump immediately to the
Barry Warsaw12c92941998-08-10 21:44:37 +0000230source code of the innermost traceback frame."
Barry Warsaw3bfed5b1998-05-19 16:25:04 +0000231 :type 'boolean
232 :group 'python)
233
234(defcustom py-ask-about-save t
235 "If not nil, ask about which buffers to save before executing some code.
236Otherwise, all modified buffers are saved without asking."
237 :type 'boolean
238 :group 'python)
Barry Warsaw9981d221997-12-03 05:25:48 +0000239
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000240(defcustom py-backspace-function 'backward-delete-char-untabify
241 "*Function called by `py-electric-backspace' when deleting backwards."
242 :type 'function
243 :group 'python)
244
245(defcustom py-delete-function 'delete-char
246 "*Function called by `py-electric-delete' when deleting forwards."
247 :type 'function
248 :group 'python)
249
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000250(defcustom py-imenu-show-method-args-p nil
251 "*Controls echoing of arguments of functions & methods in the Imenu buffer.
252When non-nil, arguments are printed."
253 :type 'boolean
254 :group 'python)
255(make-variable-buffer-local 'py-indent-offset)
256
Barry Warsaw4f577d22001-04-11 20:23:17 +0000257(defcustom py-pdbtrack-do-tracking-p t
258 "*Controls whether the pdbtrack feature is enabled or not.
259When non-nil, pdbtrack is enabled in all comint-based buffers,
260e.g. shell buffers and the *Python* buffer. When using pdb to debug a
261Python program, pdbtrack notices the pdb prompt and displays the
262source file and line that the program is stopped at, much the same way
263as gud-mode does for debugging C programs with gdb."
264 :type 'boolean
265 :group 'python)
266(make-variable-buffer-local 'py-pdbtrack-do-tracking-p)
267
268(defcustom py-pdbtrack-minor-mode-string " PDB"
269 "*String to use in the minor mode list when pdbtrack is enabled."
270 :type 'string
271 :group 'python)
272
Barry Warsawc0ecb531998-01-20 21:43:34 +0000273;; Not customizable
274(defvar py-master-file nil
275 "If non-nil, execute the named file instead of the buffer's file.
Barry Warsaw50b3eb61998-02-25 15:57:47 +0000276The intent is to allow you to set this variable in the file's local
Barry Warsawc0ecb531998-01-20 21:43:34 +0000277variable section, e.g.:
278
279 # Local Variables:
280 # py-master-file: \"master.py\"
281 # End:
282
Barry Warsaw41a05c71998-08-10 16:33:12 +0000283so that typing \\[py-execute-buffer] in that buffer executes the named
Barry Warsaw1bbc0311998-10-27 21:54:56 +0000284master file instead of the buffer's file. If the file name has a
285relative path, the value of variable `default-directory' for the
286buffer is prepended to come up with a file name.")
Barry Warsawc0ecb531998-01-20 21:43:34 +0000287(make-variable-buffer-local 'py-master-file)
288
Barry Warsaw29a90f02002-04-22 21:48:20 +0000289(defcustom py-pychecker-command "pychecker"
290 "*Shell command used to run Pychecker."
291 :type 'string
292 :group 'python
293 :tag "Pychecker Command")
294
295(defcustom py-pychecker-command-args '("--stdlib")
296 "*List of string arguments to be passed to pychecker."
297 :type '(repeat string)
298 :group 'python
299 :tag "Pychecker Command Args")
300
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000301
Barry Warsawc72c11c1997-08-09 06:42:08 +0000302
303;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
304;; NO USER DEFINABLE VARIABLES BEYOND THIS POINT
305
Barry Warsaw5e21cb01997-11-05 18:41:11 +0000306(defconst py-emacs-features
307 (let (features)
Barry Warsaw5e21cb01997-11-05 18:41:11 +0000308 features)
Barry Warsawc12c62e1997-09-04 04:18:07 +0000309 "A list of features extant in the Emacs you are using.
Barry Warsaw6ae21ad1997-11-06 14:36:49 +0000310There are many flavors of Emacs out there, with different levels of
311support for features needed by `python-mode'.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000312
Barry Warsaw29a90f02002-04-22 21:48:20 +0000313;; Face for None, True, False, self, and Ellipsis
314(defvar py-pseudo-keyword-face 'py-pseudo-keyword-face
315 "Face for pseudo keywords in Python mode, like self, True, False, Ellipsis.")
316(make-face 'py-pseudo-keyword-face)
317
318(defun py-font-lock-mode-hook ()
319 (or (face-differs-from-default-p 'py-pseudo-keyword-face)
320 (copy-face 'font-lock-keyword-face 'py-pseudo-keyword-face)))
321(add-hook 'font-lock-mode-hook 'py-font-lock-mode-hook)
322
Barry Warsawfb07f401997-02-24 03:37:22 +0000323(defvar python-font-lock-keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000324 (let ((kw1 (mapconcat 'identity
325 '("and" "assert" "break" "class"
326 "continue" "def" "del" "elif"
327 "else" "except" "exec" "for"
328 "from" "global" "if" "import"
329 "in" "is" "lambda" "not"
330 "or" "pass" "print" "raise"
Barry Warsawe275c422001-06-19 18:24:42 +0000331 "return" "while" "yield"
Barry Warsawb8f11661997-11-06 14:35:15 +0000332 )
333 "\\|"))
334 (kw2 (mapconcat 'identity
335 '("else:" "except:" "finally:" "try:")
336 "\\|"))
337 )
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000338 (list
Barry Warsawef3c8911997-11-05 18:55:50 +0000339 ;; keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000340 (cons (concat "\\b\\(" kw1 "\\)\\b[ \n\t(]") 1)
341 ;; block introducing keywords with immediately following colons.
342 ;; Yes "except" is in both lists.
343 (cons (concat "\\b\\(" kw2 "\\)[ \n\t(]") 1)
Barry Warsawe0c182f2000-12-27 17:41:47 +0000344 ;; `as' but only in "import foo as bar"
345 '("[ \t]*\\(\\bfrom\\b.*\\)?\\bimport\\b.*\\b\\(as\\)\\b" . 2)
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000346 ;; classes
347 '("\\bclass[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
348 1 font-lock-type-face)
349 ;; functions
350 '("\\bdef[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
351 1 font-lock-function-name-face)
Barry Warsaw29a90f02002-04-22 21:48:20 +0000352 ;; pseudo-keywords
353 '("\\b\\(self\\|None\\|True\\|False\\|Ellipsis\\)\\b"
354 1 py-pseudo-keyword-face)
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000355 ))
Barry Warsaw62d9d6e1996-03-06 20:32:27 +0000356 "Additional expressions to highlight in Python mode.")
Barry Warsawfb07f401997-02-24 03:37:22 +0000357(put 'python-mode 'font-lock-defaults '(python-font-lock-keywords))
358
Barry Warsawe467bfb1997-11-26 05:40:58 +0000359;; have to bind py-file-queue before installing the kill-emacs-hook
Barry Warsaw7ae77681994-12-12 20:38:05 +0000360(defvar py-file-queue nil
361 "Queue of Python temp files awaiting execution.
362Currently-active file is at the head of the list.")
363
Barry Warsaw4f577d22001-04-11 20:23:17 +0000364(defvar py-pdbtrack-is-tracking-p nil)
Barry Warsaw29a90f02002-04-22 21:48:20 +0000365(defvar py-pychecker-history nil)
Barry Warsaw4f577d22001-04-11 20:23:17 +0000366
367
Barry Warsawc72c11c1997-08-09 06:42:08 +0000368
369;; Constants
370
Barry Warsawc72c11c1997-08-09 06:42:08 +0000371(defconst py-stringlit-re
372 (concat
Barry Warsaw751f4931998-05-19 16:06:21 +0000373 ;; These fail if backslash-quote ends the string (not worth
374 ;; fixing?). They precede the short versions so that the first two
375 ;; quotes don't look like an empty short string.
376 ;;
377 ;; (maybe raw), long single quoted triple quoted strings (SQTQ),
378 ;; with potential embedded single quotes
379 "[rR]?'''[^']*\\(\\('[^']\\|''[^']\\)[^']*\\)*'''"
380 "\\|"
381 ;; (maybe raw), long double quoted triple quoted strings (DQTQ),
382 ;; with potential embedded double quotes
383 "[rR]?\"\"\"[^\"]*\\(\\(\"[^\"]\\|\"\"[^\"]\\)[^\"]*\\)*\"\"\""
384 "\\|"
385 "[rR]?'\\([^'\n\\]\\|\\\\.\\)*'" ; single-quoted
Barry Warsawc72c11c1997-08-09 06:42:08 +0000386 "\\|" ; or
Barry Warsaw751f4931998-05-19 16:06:21 +0000387 "[rR]?\"\\([^\"\n\\]\\|\\\\.\\)*\"" ; double-quoted
Barry Warsaw41a05c71998-08-10 16:33:12 +0000388 )
389 "Regular expression matching a Python string literal.")
Barry Warsaw751f4931998-05-19 16:06:21 +0000390
Barry Warsawc72c11c1997-08-09 06:42:08 +0000391(defconst py-continued-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000392 ;; This is tricky because a trailing backslash does not mean
393 ;; continuation if it's in a comment
Barry Warsawc72c11c1997-08-09 06:42:08 +0000394 (concat
395 "\\(" "[^#'\"\n\\]" "\\|" py-stringlit-re "\\)*"
Barry Warsaw41a05c71998-08-10 16:33:12 +0000396 "\\\\$")
397 "Regular expression matching Python backslash continuation lines.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000398
Barry Warsaw41a05c71998-08-10 16:33:12 +0000399(defconst py-blank-or-comment-re "[ \t]*\\($\\|#\\)"
Barry Warsaw71c3adb1998-08-10 16:34:33 +0000400 "Regular expression matching a blank or comment line.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000401
Barry Warsawc72c11c1997-08-09 06:42:08 +0000402(defconst py-outdent-re
403 (concat "\\(" (mapconcat 'identity
404 '("else:"
405 "except\\(\\s +.*\\)?:"
406 "finally:"
407 "elif\\s +.*:")
408 "\\|")
Barry Warsaw41a05c71998-08-10 16:33:12 +0000409 "\\)")
410 "Regular expression matching statements to be dedented one level.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000411
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000412(defconst py-block-closing-keywords-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000413 "\\(return\\|raise\\|break\\|continue\\|pass\\)"
414 "Regular expression matching keywords which typically close a block.")
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000415
Barry Warsawc72c11c1997-08-09 06:42:08 +0000416(defconst py-no-outdent-re
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000417 (concat
418 "\\("
419 (mapconcat 'identity
420 (list "try:"
421 "except\\(\\s +.*\\)?:"
422 "while\\s +.*:"
423 "for\\s +.*:"
424 "if\\s +.*:"
425 "elif\\s +.*:"
426 (concat py-block-closing-keywords-re "[ \t\n]")
427 )
428 "\\|")
Barry Warsaw41a05c71998-08-10 16:33:12 +0000429 "\\)")
430 "Regular expression matching lines not to dedent after.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000431
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000432(defconst py-defun-start-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000433 "^\\([ \t]*\\)def[ \t]+\\([a-zA-Z_0-9]+\\)\\|\\(^[a-zA-Z_0-9]+\\)[ \t]*="
434 ;; If you change this, you probably have to change py-current-defun
435 ;; as well. This is only used by py-current-defun to find the name
436 ;; for add-log.el.
Barry Warsaw71c3adb1998-08-10 16:34:33 +0000437 "Regular expression matching a function, method, or variable assignment.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000438
Barry Warsaw41a05c71998-08-10 16:33:12 +0000439(defconst py-class-start-re "^class[ \t]*\\([a-zA-Z_0-9]+\\)"
440 ;; If you change this, you probably have to change py-current-defun
441 ;; as well. This is only used by py-current-defun to find the name
442 ;; for add-log.el.
443 "Regular expression for finding a class name.")
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000444
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000445(defconst py-traceback-line-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000446 "[ \t]+File \"\\([^\"]+\\)\", line \\([0-9]+\\)"
447 "Regular expression that describes tracebacks.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000448
Barry Warsaw4f577d22001-04-11 20:23:17 +0000449;; pdbtrack contants
450(defconst py-pdbtrack-stack-entry-regexp
451 "> \\([^(]+\\)(\\([0-9]+\\))[?a-zA-Z0-9_]+()"
452 "Regular expression pdbtrack uses to find a stack trace entry.")
453
454(defconst py-pdbtrack-input-prompt "\n[(<]?pdb[>)]? "
455 "Regular expression pdbtrack uses to recognize a pdb prompt.")
456
457(defconst py-pdbtrack-track-range 10000
458 "Max number of characters from end of buffer to search for stack entry.")
459
Barry Warsawc72c11c1997-08-09 06:42:08 +0000460
461
Barry Warsawc72c11c1997-08-09 06:42:08 +0000462;; Major mode boilerplate
463
Barry Warsaw7ae77681994-12-12 20:38:05 +0000464;; define a mode-specific abbrev table for those who use such things
465(defvar python-mode-abbrev-table nil
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000466 "Abbrev table in use in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000467(define-abbrev-table 'python-mode-abbrev-table nil)
468
Barry Warsaw7ae77681994-12-12 20:38:05 +0000469(defvar python-mode-hook nil
470 "*Hook called by `python-mode'.")
471
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000472;; In previous version of python-mode.el, the hook was incorrectly
473;; called py-mode-hook, and was not defvar'd. Deprecate its use.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000474(and (fboundp 'make-obsolete-variable)
475 (make-obsolete-variable 'py-mode-hook 'python-mode-hook))
476
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000477(defvar py-mode-map ()
478 "Keymap used in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000479(if py-mode-map
Barry Warsawc72c11c1997-08-09 06:42:08 +0000480 nil
Barry Warsaw7ae77681994-12-12 20:38:05 +0000481 (setq py-mode-map (make-sparse-keymap))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000482 ;; electric keys
483 (define-key py-mode-map ":" 'py-electric-colon)
484 ;; indentation level modifiers
485 (define-key py-mode-map "\C-c\C-l" 'py-shift-region-left)
486 (define-key py-mode-map "\C-c\C-r" 'py-shift-region-right)
487 (define-key py-mode-map "\C-c<" 'py-shift-region-left)
488 (define-key py-mode-map "\C-c>" 'py-shift-region-right)
489 ;; subprocess commands
490 (define-key py-mode-map "\C-c\C-c" 'py-execute-buffer)
Barry Warsaw820273d1998-05-19 15:54:45 +0000491 (define-key py-mode-map "\C-c\C-m" 'py-execute-import-or-reload)
Barry Warsaw1d0364b1998-05-19 16:15:26 +0000492 (define-key py-mode-map "\C-c\C-s" 'py-execute-string)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000493 (define-key py-mode-map "\C-c|" 'py-execute-region)
Barry Warsaw820273d1998-05-19 15:54:45 +0000494 (define-key py-mode-map "\e\C-x" 'py-execute-def-or-class)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000495 (define-key py-mode-map "\C-c!" 'py-shell)
Barry Warsawa2398801998-04-09 23:28:20 +0000496 (define-key py-mode-map "\C-c\C-t" 'py-toggle-shells)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000497 ;; Caution! Enter here at your own risk. We are trying to support
498 ;; several behaviors and it gets disgusting. :-( This logic ripped
499 ;; largely from CC Mode.
500 ;;
501 ;; In XEmacs 19, Emacs 19, and Emacs 20, we use this to bind
502 ;; backwards deletion behavior to DEL, which both Delete and
503 ;; Backspace get translated to. There's no way to separate this
504 ;; behavior in a clean way, so deal with it! Besides, it's been
505 ;; this way since the dawn of time.
506 (if (not (boundp 'delete-key-deletes-forward))
507 (define-key py-mode-map "\177" 'py-electric-backspace)
508 ;; However, XEmacs 20 actually achieved enlightenment. It is
509 ;; possible to sanely define both backward and forward deletion
510 ;; behavior under X separately (TTYs are forever beyond hope, but
511 ;; who cares? XEmacs 20 does the right thing with these too).
512 (define-key py-mode-map [delete] 'py-electric-delete)
513 (define-key py-mode-map [backspace] 'py-electric-backspace))
Barry Warsaw8c4a8de1997-11-26 20:30:33 +0000514 ;; Separate M-BS from C-M-h. The former should remain
515 ;; backward-kill-word.
516 (define-key py-mode-map [(control meta h)] 'py-mark-def-or-class)
Barry Warsaw2518c671997-11-05 00:51:08 +0000517 (define-key py-mode-map "\C-c\C-k" 'py-mark-block)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000518 ;; Miscellaneous
519 (define-key py-mode-map "\C-c:" 'py-guess-indent-offset)
520 (define-key py-mode-map "\C-c\t" 'py-indent-region)
Barry Warsaw4f577d22001-04-11 20:23:17 +0000521 (define-key py-mode-map "\C-c\C-d" 'py-pdbtrack-toggle-stack-tracking)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000522 (define-key py-mode-map "\C-c\C-n" 'py-next-statement)
523 (define-key py-mode-map "\C-c\C-p" 'py-previous-statement)
524 (define-key py-mode-map "\C-c\C-u" 'py-goto-block-up)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000525 (define-key py-mode-map "\C-c#" 'py-comment-region)
526 (define-key py-mode-map "\C-c?" 'py-describe-mode)
Barry Warsawa7cc43b2002-04-22 17:15:19 +0000527 (define-key py-mode-map "\C-c\C-h" 'py-help-at-point)
Barry Warsawab0e86c1998-05-19 15:31:46 +0000528 (define-key py-mode-map "\e\C-a" 'py-beginning-of-def-or-class)
529 (define-key py-mode-map "\e\C-e" 'py-end-of-def-or-class)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000530 (define-key py-mode-map "\C-c-" 'py-up-exception)
531 (define-key py-mode-map "\C-c=" 'py-down-exception)
Barry Warsawf8ddb6a1999-01-18 21:49:39 +0000532 ;; stuff that is `standard' but doesn't interface well with
533 ;; python-mode, which forces us to rebind to special commands
534 (define-key py-mode-map "\C-xnd" 'py-narrow-to-defun)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000535 ;; information
536 (define-key py-mode-map "\C-c\C-b" 'py-submit-bug-report)
537 (define-key py-mode-map "\C-c\C-v" 'py-version)
Barry Warsaw29a90f02002-04-22 21:48:20 +0000538 (define-key py-mode-map "\C-c\C-w" 'py-pychecker-run)
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000539 ;; shadow global bindings for newline-and-indent w/ the py- version.
540 ;; BAW - this is extremely bad form, but I'm not going to change it
541 ;; for now.
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000542 (mapcar #'(lambda (key)
543 (define-key py-mode-map key 'py-newline-and-indent))
544 (where-is-internal 'newline-and-indent))
Barry Warsawf19feb81999-01-21 17:06:11 +0000545 ;; Force RET to be py-newline-and-indent even if it didn't get
546 ;; mapped by the above code. motivation: Emacs' default binding for
547 ;; RET is `newline' and C-j is `newline-and-indent'. Most Pythoneers
548 ;; expect RET to do a `py-newline-and-indent' and any Emacsers who
549 ;; dislike this are probably knowledgeable enough to do a rebind.
550 ;; However, we do *not* change C-j since many Emacsers have already
551 ;; swapped RET and C-j and they don't want C-j bound to `newline' to
552 ;; change.
553 (define-key py-mode-map "\C-m" 'py-newline-and-indent)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000554 )
555
556(defvar py-mode-output-map nil
Barry Warsaw41a05c71998-08-10 16:33:12 +0000557 "Keymap used in *Python Output* buffers.")
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000558(if py-mode-output-map
559 nil
560 (setq py-mode-output-map (make-sparse-keymap))
561 (define-key py-mode-output-map [button2] 'py-mouseto-exception)
562 (define-key py-mode-output-map "\C-c\C-c" 'py-goto-exception)
563 ;; TBD: Disable all self-inserting keys. This is bogus, we should
564 ;; really implement this as *Python Output* buffer being read-only
565 (mapcar #' (lambda (key)
566 (define-key py-mode-output-map key
567 #'(lambda () (interactive) (beep))))
568 (where-is-internal 'self-insert-command))
Barry Warsaw850437a1995-03-08 21:50:28 +0000569 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000570
Barry Warsaw6dfbe5d1998-08-20 21:51:27 +0000571(defvar py-shell-map nil
572 "Keymap used in *Python* shell buffers.")
573(if py-shell-map
574 nil
575 (setq py-shell-map (copy-keymap comint-mode-map))
576 (define-key py-shell-map [tab] 'tab-to-tab-stop)
577 (define-key py-shell-map "\C-c-" 'py-up-exception)
578 (define-key py-shell-map "\C-c=" 'py-down-exception)
579 )
580
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000581(defvar py-mode-syntax-table nil
582 "Syntax table used in `python-mode' buffers.")
Barry Warsawa7cc43b2002-04-22 17:15:19 +0000583(when (not py-mode-syntax-table)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000584 (setq py-mode-syntax-table (make-syntax-table))
Barry Warsawc72c11c1997-08-09 06:42:08 +0000585 (modify-syntax-entry ?\( "()" py-mode-syntax-table)
586 (modify-syntax-entry ?\) ")(" py-mode-syntax-table)
587 (modify-syntax-entry ?\[ "(]" py-mode-syntax-table)
588 (modify-syntax-entry ?\] ")[" py-mode-syntax-table)
589 (modify-syntax-entry ?\{ "(}" py-mode-syntax-table)
590 (modify-syntax-entry ?\} "){" py-mode-syntax-table)
591 ;; Add operator symbols misassigned in the std table
592 (modify-syntax-entry ?\$ "." py-mode-syntax-table)
593 (modify-syntax-entry ?\% "." py-mode-syntax-table)
594 (modify-syntax-entry ?\& "." py-mode-syntax-table)
595 (modify-syntax-entry ?\* "." py-mode-syntax-table)
596 (modify-syntax-entry ?\+ "." py-mode-syntax-table)
597 (modify-syntax-entry ?\- "." py-mode-syntax-table)
598 (modify-syntax-entry ?\/ "." py-mode-syntax-table)
599 (modify-syntax-entry ?\< "." py-mode-syntax-table)
600 (modify-syntax-entry ?\= "." py-mode-syntax-table)
601 (modify-syntax-entry ?\> "." py-mode-syntax-table)
602 (modify-syntax-entry ?\| "." py-mode-syntax-table)
603 ;; For historical reasons, underscore is word class instead of
604 ;; symbol class. GNU conventions say it should be symbol class, but
605 ;; there's a natural conflict between what major mode authors want
606 ;; and what users expect from `forward-word' and `backward-word'.
607 ;; Guido and I have hashed this out and have decided to keep
608 ;; underscore in word class. If you're tempted to change it, try
609 ;; binding M-f and M-b to py-forward-into-nomenclature and
Barry Warsawaa384fd1999-02-16 23:36:16 +0000610 ;; py-backward-into-nomenclature instead. This doesn't help in all
611 ;; situations where you'd want the different behavior
612 ;; (e.g. backward-kill-word).
Barry Warsawc72c11c1997-08-09 06:42:08 +0000613 (modify-syntax-entry ?\_ "w" py-mode-syntax-table)
614 ;; Both single quote and double quote are string delimiters
615 (modify-syntax-entry ?\' "\"" py-mode-syntax-table)
616 (modify-syntax-entry ?\" "\"" py-mode-syntax-table)
617 ;; backquote is open and close paren
618 (modify-syntax-entry ?\` "$" py-mode-syntax-table)
619 ;; comment delimiters
620 (modify-syntax-entry ?\# "<" py-mode-syntax-table)
621 (modify-syntax-entry ?\n ">" py-mode-syntax-table)
622 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000623
Barry Warsawa7cc43b2002-04-22 17:15:19 +0000624;; An auxiliary syntax table which places underscore and dot in the
625;; symbol class for simplicity
626(defvar py-dotted-expression-syntax-table nil
627 "Syntax table used to identify Python dotted expressions.")
628(when (not py-dotted-expression-syntax-table)
629 (setq py-dotted-expression-syntax-table
630 (copy-syntax-table py-mode-syntax-table))
631 (modify-syntax-entry ?_ "_" py-dotted-expression-syntax-table)
632 (modify-syntax-entry ?. "_" py-dotted-expression-syntax-table))
633
Barry Warsawb3e81d51996-09-04 15:12:42 +0000634
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000635
Barry Warsawbc3760b1998-09-14 16:16:18 +0000636;; Utilities
Barry Warsawbc3760b1998-09-14 16:16:18 +0000637(defmacro py-safe (&rest body)
638 "Safely execute BODY, return nil if an error occurred."
639 (` (condition-case nil
640 (progn (,@ body))
641 (error nil))))
642
643(defsubst py-keep-region-active ()
644 "Keep the region active in XEmacs."
645 ;; Ignore byte-compiler warnings you might see. Also note that
646 ;; FSF's Emacs 19 does it differently; its policy doesn't require us
647 ;; to take explicit action.
648 (and (boundp 'zmacs-region-stays)
649 (setq zmacs-region-stays t)))
650
651(defsubst py-point (position)
652 "Returns the value of point at certain commonly referenced POSITIONs.
653POSITION can be one of the following symbols:
654
655 bol -- beginning of line
656 eol -- end of line
657 bod -- beginning of def or class
658 eod -- end of def or class
659 bob -- beginning of buffer
660 eob -- end of buffer
661 boi -- back to indentation
662 bos -- beginning of statement
663
664This function does not modify point or mark."
665 (let ((here (point)))
666 (cond
667 ((eq position 'bol) (beginning-of-line))
668 ((eq position 'eol) (end-of-line))
669 ((eq position 'bod) (py-beginning-of-def-or-class))
670 ((eq position 'eod) (py-end-of-def-or-class))
671 ;; Kind of funny, I know, but useful for py-up-exception.
672 ((eq position 'bob) (beginning-of-buffer))
673 ((eq position 'eob) (end-of-buffer))
674 ((eq position 'boi) (back-to-indentation))
675 ((eq position 'bos) (py-goto-initial-line))
676 (t (error "Unknown buffer position requested: %s" position))
677 )
678 (prog1
679 (point)
680 (goto-char here))))
681
682(defsubst py-highlight-line (from to file line)
683 (cond
684 ((fboundp 'make-extent)
685 ;; XEmacs
686 (let ((e (make-extent from to)))
687 (set-extent-property e 'mouse-face 'highlight)
688 (set-extent-property e 'py-exc-info (cons file line))
689 (set-extent-property e 'keymap py-mode-output-map)))
690 (t
691 ;; Emacs -- Please port this!
692 )
693 ))
694
695(defun py-in-literal (&optional lim)
696 "Return non-nil if point is in a Python literal (a comment or string).
697Optional argument LIM indicates the beginning of the containing form,
698i.e. the limit on how far back to scan."
699 ;; This is the version used for non-XEmacs, which has a nicer
700 ;; interface.
701 ;;
702 ;; WARNING: Watch out for infinite recursion.
703 (let* ((lim (or lim (py-point 'bod)))
704 (state (parse-partial-sexp lim (point))))
705 (cond
706 ((nth 3 state) 'string)
707 ((nth 4 state) 'comment)
708 (t nil))))
709
710;; XEmacs has a built-in function that should make this much quicker.
711;; In this case, lim is ignored
712(defun py-fast-in-literal (&optional lim)
713 "Fast version of `py-in-literal', used only by XEmacs.
714Optional LIM is ignored."
715 ;; don't have to worry about context == 'block-comment
716 (buffer-syntactic-context))
717
718(if (fboundp 'buffer-syntactic-context)
719 (defalias 'py-in-literal 'py-fast-in-literal))
720
721
722
Barry Warsaw42f707f1996-07-29 21:05:05 +0000723;; Menu definitions, only relevent if you have the easymenu.el package
724;; (standard in the latest Emacs 19 and XEmacs 19 distributions).
Barry Warsaw5490a061996-08-06 15:43:33 +0000725(defvar py-menu nil
726 "Menu for Python Mode.
Barry Warsawc72c11c1997-08-09 06:42:08 +0000727This menu will get created automatically if you have the `easymenu'
728package. Note that the latest X/Emacs releases contain this package.")
Barry Warsaw5490a061996-08-06 15:43:33 +0000729
Barry Warsawc72c11c1997-08-09 06:42:08 +0000730(and (py-safe (require 'easymenu) t)
731 (easy-menu-define
732 py-menu py-mode-map "Python Mode menu"
733 '("Python"
734 ["Comment Out Region" py-comment-region (mark)]
735 ["Uncomment Region" (py-comment-region (point) (mark) '(4)) (mark)]
736 "-"
737 ["Mark current block" py-mark-block t]
Barry Warsaw2518c671997-11-05 00:51:08 +0000738 ["Mark current def" py-mark-def-or-class t]
739 ["Mark current class" (py-mark-def-or-class t) t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000740 "-"
741 ["Shift region left" py-shift-region-left (mark)]
742 ["Shift region right" py-shift-region-right (mark)]
743 "-"
Barry Warsaw820273d1998-05-19 15:54:45 +0000744 ["Import/reload file" py-execute-import-or-reload t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000745 ["Execute buffer" py-execute-buffer t]
746 ["Execute region" py-execute-region (mark)]
Barry Warsaw820273d1998-05-19 15:54:45 +0000747 ["Execute def or class" py-execute-def-or-class (mark)]
Barry Warsaw1d0364b1998-05-19 16:15:26 +0000748 ["Execute string" py-execute-string t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000749 ["Start interpreter..." py-shell t]
750 "-"
751 ["Go to start of block" py-goto-block-up t]
Barry Warsawab0e86c1998-05-19 15:31:46 +0000752 ["Go to start of class" (py-beginning-of-def-or-class t) t]
753 ["Move to end of class" (py-end-of-def-or-class t) t]
754 ["Move to start of def" py-beginning-of-def-or-class t]
755 ["Move to end of def" py-end-of-def-or-class t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000756 "-"
757 ["Describe mode" py-describe-mode t]
758 )))
Barry Warsaw42f707f1996-07-29 21:05:05 +0000759
Barry Warsaw81437461996-08-01 19:48:02 +0000760
761
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000762;; Imenu definitions
763(defvar py-imenu-class-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000764 (concat ; <<classes>>
765 "\\(" ;
766 "^[ \t]*" ; newline and maybe whitespace
767 "\\(class[ \t]+[a-zA-Z0-9_]+\\)" ; class name
768 ; possibly multiple superclasses
Barry Warsaw3179fe01998-04-04 21:36:53 +0000769 "\\([ \t]*\\((\\([a-zA-Z0-9_,. \t\n]\\)*)\\)?\\)"
Barry Warsaw81437461996-08-01 19:48:02 +0000770 "[ \t]*:" ; and the final :
771 "\\)" ; >>classes<<
772 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000773 "Regexp for Python classes for use with the Imenu package."
Barry Warsaw81437461996-08-01 19:48:02 +0000774 )
775
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000776(defvar py-imenu-method-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000777 (concat ; <<methods and functions>>
778 "\\(" ;
779 "^[ \t]*" ; new line and maybe whitespace
780 "\\(def[ \t]+" ; function definitions start with def
781 "\\([a-zA-Z0-9_]+\\)" ; name is here
782 ; function arguments...
Barry Warsaw1d5f9881998-10-28 04:08:13 +0000783;; "[ \t]*(\\([-+/a-zA-Z0-9_=,\* \t\n.()\"'#]*\\))"
784 "[ \t]*(\\([^:#]*\\))"
Barry Warsaw81437461996-08-01 19:48:02 +0000785 "\\)" ; end of def
786 "[ \t]*:" ; and then the :
787 "\\)" ; >>methods and functions<<
788 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000789 "Regexp for Python methods/functions for use with the Imenu package."
Barry Warsaw81437461996-08-01 19:48:02 +0000790 )
791
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000792(defvar py-imenu-method-no-arg-parens '(2 8)
793 "Indices into groups of the Python regexp for use with Imenu.
Barry Warsaw81437461996-08-01 19:48:02 +0000794
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000795Using these values will result in smaller Imenu lists, as arguments to
Barry Warsaw81437461996-08-01 19:48:02 +0000796functions are not listed.
797
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000798See the variable `py-imenu-show-method-args-p' for more
Barry Warsaw81437461996-08-01 19:48:02 +0000799information.")
800
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000801(defvar py-imenu-method-arg-parens '(2 7)
Barry Warsaw1bbc0311998-10-27 21:54:56 +0000802 "Indices into groups of the Python regexp for use with imenu.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000803Using these values will result in large Imenu lists, as arguments to
Barry Warsaw81437461996-08-01 19:48:02 +0000804functions are listed.
805
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000806See the variable `py-imenu-show-method-args-p' for more
Barry Warsaw81437461996-08-01 19:48:02 +0000807information.")
808
809;; Note that in this format, this variable can still be used with the
810;; imenu--generic-function. Otherwise, there is no real reason to have
811;; it.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000812(defvar py-imenu-generic-expression
Barry Warsaw81437461996-08-01 19:48:02 +0000813 (cons
814 (concat
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000815 py-imenu-class-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000816 "\\|" ; or...
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000817 py-imenu-method-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000818 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000819 py-imenu-method-no-arg-parens)
820 "Generic Python expression which may be used directly with Imenu.
Barry Warsaw81437461996-08-01 19:48:02 +0000821Used by setting the variable `imenu-generic-expression' to this value.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000822Also, see the function \\[py-imenu-create-index] for a better
823alternative for finding the index.")
Barry Warsaw81437461996-08-01 19:48:02 +0000824
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000825;; These next two variables are used when searching for the Python
Barry Warsaw81437461996-08-01 19:48:02 +0000826;; class/definitions. Just saving some time in accessing the
827;; generic-python-expression, really.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000828(defvar py-imenu-generic-regexp nil)
829(defvar py-imenu-generic-parens nil)
Barry Warsaw81437461996-08-01 19:48:02 +0000830
831
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000832(defun py-imenu-create-index-function ()
833 "Python interface function for the Imenu package.
834Finds all Python classes and functions/methods. Calls function
835\\[py-imenu-create-index-engine]. See that function for the details
836of how this works."
837 (setq py-imenu-generic-regexp (car py-imenu-generic-expression)
838 py-imenu-generic-parens (if py-imenu-show-method-args-p
839 py-imenu-method-arg-parens
840 py-imenu-method-no-arg-parens))
Barry Warsaw81437461996-08-01 19:48:02 +0000841 (goto-char (point-min))
Barry Warsaw1d5f9881998-10-28 04:08:13 +0000842 ;; Warning: When the buffer has no classes or functions, this will
843 ;; return nil, which seems proper according to the Imenu API, but
844 ;; causes an error in the XEmacs port of Imenu. Sigh.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000845 (py-imenu-create-index-engine nil))
Barry Warsaw81437461996-08-01 19:48:02 +0000846
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000847(defun py-imenu-create-index-engine (&optional start-indent)
848 "Function for finding Imenu definitions in Python.
Barry Warsaw81437461996-08-01 19:48:02 +0000849
850Finds all definitions (classes, methods, or functions) in a Python
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000851file for the Imenu package.
Barry Warsaw81437461996-08-01 19:48:02 +0000852
853Returns a possibly nested alist of the form
854
855 (INDEX-NAME . INDEX-POSITION)
856
857The second element of the alist may be an alist, producing a nested
858list as in
859
860 (INDEX-NAME . INDEX-ALIST)
861
862This function should not be called directly, as it calls itself
863recursively and requires some setup. Rather this is the engine for
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000864the function \\[py-imenu-create-index-function].
Barry Warsaw81437461996-08-01 19:48:02 +0000865
866It works recursively by looking for all definitions at the current
867indention level. When it finds one, it adds it to the alist. If it
868finds a definition at a greater indentation level, it removes the
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000869previous definition from the alist. In its place it adds all
Barry Warsaw81437461996-08-01 19:48:02 +0000870definitions found at the next indentation level. When it finds a
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000871definition that is less indented then the current level, it returns
872the alist it has created thus far.
Barry Warsaw81437461996-08-01 19:48:02 +0000873
874The optional argument START-INDENT indicates the starting indentation
875at which to continue looking for Python classes, methods, or
876functions. If this is not supplied, the function uses the indentation
877of the first definition found."
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000878 (let (index-alist
879 sub-method-alist
Barry Warsaw81437461996-08-01 19:48:02 +0000880 looking-p
881 def-name prev-name
882 cur-indent def-pos
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000883 (class-paren (first py-imenu-generic-parens))
884 (def-paren (second py-imenu-generic-parens)))
Barry Warsaw81437461996-08-01 19:48:02 +0000885 (setq looking-p
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000886 (re-search-forward py-imenu-generic-regexp (point-max) t))
Barry Warsaw81437461996-08-01 19:48:02 +0000887 (while looking-p
888 (save-excursion
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000889 ;; used to set def-name to this value but generic-extract-name
890 ;; is new to imenu-1.14. this way it still works with
891 ;; imenu-1.11
892 ;;(imenu--generic-extract-name py-imenu-generic-parens))
Barry Warsaw81437461996-08-01 19:48:02 +0000893 (let ((cur-paren (if (match-beginning class-paren)
894 class-paren def-paren)))
895 (setq def-name
Barry Warsawc8520351997-11-26 06:14:40 +0000896 (buffer-substring-no-properties (match-beginning cur-paren)
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000897 (match-end cur-paren))))
Barry Warsaw93c88cc1998-08-18 02:00:44 +0000898 (save-match-data
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000899 (py-beginning-of-def-or-class 'either))
Barry Warsaw81437461996-08-01 19:48:02 +0000900 (beginning-of-line)
901 (setq cur-indent (current-indentation)))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000902 ;; HACK: want to go to the next correct definition location. We
903 ;; explicitly list them here but it would be better to have them
904 ;; in a list.
Barry Warsaw81437461996-08-01 19:48:02 +0000905 (setq def-pos
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000906 (or (match-beginning class-paren)
907 (match-beginning def-paren)))
Barry Warsaw81437461996-08-01 19:48:02 +0000908 ;; if we don't have a starting indent level, take this one
909 (or start-indent
910 (setq start-indent cur-indent))
Barry Warsaw81437461996-08-01 19:48:02 +0000911 ;; if we don't have class name yet, take this one
912 (or prev-name
913 (setq prev-name def-name))
Barry Warsaw81437461996-08-01 19:48:02 +0000914 ;; what level is the next definition on? must be same, deeper
915 ;; or shallower indentation
916 (cond
917 ;; at the same indent level, add it to the list...
918 ((= start-indent cur-indent)
Barry Warsaw81437461996-08-01 19:48:02 +0000919 (push (cons def-name def-pos) index-alist))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000920 ;; deeper indented expression, recurse
Barry Warsaw81437461996-08-01 19:48:02 +0000921 ((< start-indent cur-indent)
Barry Warsaw81437461996-08-01 19:48:02 +0000922 ;; the point is currently on the expression we're supposed to
923 ;; start on, so go back to the last expression. The recursive
924 ;; call will find this place again and add it to the correct
925 ;; list
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000926 (re-search-backward py-imenu-generic-regexp (point-min) 'move)
927 (setq sub-method-alist (py-imenu-create-index-engine cur-indent))
Barry Warsaw81437461996-08-01 19:48:02 +0000928 (if sub-method-alist
929 ;; we put the last element on the index-alist on the start
930 ;; of the submethod alist so the user can still get to it.
931 (let ((save-elmt (pop index-alist)))
Barry Warsawc8520351997-11-26 06:14:40 +0000932 (push (cons prev-name
Barry Warsaw81437461996-08-01 19:48:02 +0000933 (cons save-elmt sub-method-alist))
934 index-alist))))
Barry Warsaw81437461996-08-01 19:48:02 +0000935 ;; found less indented expression, we're done.
936 (t
937 (setq looking-p nil)
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000938 (re-search-backward py-imenu-generic-regexp (point-min) t)))
939 ;; end-cond
Barry Warsaw81437461996-08-01 19:48:02 +0000940 (setq prev-name def-name)
941 (and looking-p
942 (setq looking-p
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000943 (re-search-forward py-imenu-generic-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000944 (point-max) 'move))))
945 (nreverse index-alist)))
946
Barry Warsaw42f707f1996-07-29 21:05:05 +0000947
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000948;;;###autoload
Barry Warsaw7ae77681994-12-12 20:38:05 +0000949(defun python-mode ()
950 "Major mode for editing Python files.
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000951To submit a problem report, enter `\\[py-submit-bug-report]' from a
952`python-mode' buffer. Do `\\[py-describe-mode]' for detailed
953documentation. To see what version of `python-mode' you are running,
954enter `\\[py-version]'.
955
956This mode knows about Python indentation, tokens, comments and
957continuation lines. Paragraphs are separated by blank lines only.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000958
959COMMANDS
960\\{py-mode-map}
961VARIABLES
962
Barry Warsaw42f707f1996-07-29 21:05:05 +0000963py-indent-offset\t\tindentation increment
Barry Warsaw41a05c71998-08-10 16:33:12 +0000964py-block-comment-prefix\t\tcomment string used by `comment-region'
Barry Warsaw42f707f1996-07-29 21:05:05 +0000965py-python-command\t\tshell command to invoke Python interpreter
Barry Warsaw42f707f1996-07-29 21:05:05 +0000966py-temp-directory\t\tdirectory used for temp files (if needed)
Barry Warsaw41a05c71998-08-10 16:33:12 +0000967py-beep-if-tab-change\t\tring the bell if `tab-width' is changed"
Barry Warsaw7ae77681994-12-12 20:38:05 +0000968 (interactive)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000969 ;; set up local variables
Barry Warsaw7ae77681994-12-12 20:38:05 +0000970 (kill-all-local-variables)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000971 (make-local-variable 'font-lock-defaults)
972 (make-local-variable 'paragraph-separate)
973 (make-local-variable 'paragraph-start)
974 (make-local-variable 'require-final-newline)
975 (make-local-variable 'comment-start)
Barry Warsaw5c8bef11996-12-17 21:56:10 +0000976 (make-local-variable 'comment-end)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000977 (make-local-variable 'comment-start-skip)
978 (make-local-variable 'comment-column)
Barry Warsaw003932a1998-07-07 15:11:24 +0000979 (make-local-variable 'comment-indent-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000980 (make-local-variable 'indent-region-function)
981 (make-local-variable 'indent-line-function)
Barry Warsawb3e81d51996-09-04 15:12:42 +0000982 (make-local-variable 'add-log-current-defun-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000983 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +0000984 (set-syntax-table py-mode-syntax-table)
Barry Warsaw003932a1998-07-07 15:11:24 +0000985 (setq major-mode 'python-mode
986 mode-name "Python"
987 local-abbrev-table python-mode-abbrev-table
988 font-lock-defaults '(python-font-lock-keywords)
989 paragraph-separate "^[ \t]*$"
990 paragraph-start "^[ \t]*$"
991 require-final-newline t
992 comment-start "# "
993 comment-end ""
994 comment-start-skip "# *"
995 comment-column 40
996 comment-indent-function 'py-comment-indent-function
997 indent-region-function 'py-indent-region
998 indent-line-function 'py-indent-line
Barry Warsawb3e81d51996-09-04 15:12:42 +0000999 ;; tell add-log.el how to find the current function/method/variable
1000 add-log-current-defun-function 'py-current-defun
Barry Warsawb1f89511996-09-03 16:38:30 +00001001 )
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001002 (use-local-map py-mode-map)
Barry Warsaw42f707f1996-07-29 21:05:05 +00001003 ;; add the menu
1004 (if py-menu
1005 (easy-menu-add py-menu))
Barry Warsaw57697af1995-09-14 20:01:14 +00001006 ;; Emacs 19 requires this
Barry Warsawc72c11c1997-08-09 06:42:08 +00001007 (if (boundp 'comment-multi-line)
Barry Warsaw57697af1995-09-14 20:01:14 +00001008 (setq comment-multi-line nil))
Barry Warsaw6839d3a1998-10-28 00:10:45 +00001009 ;; Install Imenu if available
Barry Warsaw742a5111998-03-13 17:29:15 +00001010 (when (py-safe (require 'imenu))
Barry Warsaw6839d3a1998-10-28 00:10:45 +00001011 (setq imenu-create-index-function #'py-imenu-create-index-function)
1012 (setq imenu-generic-expression py-imenu-generic-expression)
Barry Warsaw742a5111998-03-13 17:29:15 +00001013 (if (fboundp 'imenu-add-to-menubar)
1014 (imenu-add-to-menubar (format "%s-%s" "IM" mode-name)))
1015 )
1016 ;; Run the mode hook. Note that py-mode-hook is deprecated.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001017 (if python-mode-hook
1018 (run-hooks 'python-mode-hook)
Barry Warsaw742a5111998-03-13 17:29:15 +00001019 (run-hooks 'py-mode-hook))
1020 ;; Now do the automagical guessing
1021 (if py-smart-indentation
1022 (let ((offset py-indent-offset))
Barry Warsaw145ab1c1998-05-19 14:49:49 +00001023 ;; It's okay if this fails to guess a good value
Barry Warsaw742a5111998-03-13 17:29:15 +00001024 (if (and (py-safe (py-guess-indent-offset))
1025 (<= py-indent-offset 8)
1026 (>= py-indent-offset 2))
1027 (setq offset py-indent-offset))
1028 (setq py-indent-offset offset)
Barry Warsaw639eea61998-03-16 18:12:13 +00001029 ;; Only turn indent-tabs-mode off if tab-width !=
1030 ;; py-indent-offset. Never turn it on, because the user must
1031 ;; have explicitly turned it off.
1032 (if (/= tab-width py-indent-offset)
1033 (setq indent-tabs-mode nil))
Barry Warsaw11f21561999-07-28 21:59:43 +00001034 ))
1035 ;; Set the default shell if not already set
1036 (when (null py-which-shell)
1037 (py-toggle-shells py-default-interpreter))
1038 )
Barry Warsaw7ae77681994-12-12 20:38:05 +00001039
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001040
Barry Warsawb91b7431995-03-14 15:55:20 +00001041;; electric characters
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001042(defun py-outdent-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00001043 "Returns non-nil if the current line should dedent one level."
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001044 (save-excursion
1045 (and (progn (back-to-indentation)
1046 (looking-at py-outdent-re))
Barry Warsaw1a1c6bb1999-01-09 17:22:38 +00001047 ;; short circuit infloop on illegal construct
1048 (not (bobp))
Barry Warsawf06777d1998-01-21 05:36:18 +00001049 (progn (forward-line -1)
1050 (py-goto-initial-line)
1051 (back-to-indentation)
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001052 (while (or (looking-at py-blank-or-comment-re)
1053 (bobp))
1054 (backward-to-indentation 1))
1055 (not (looking-at py-no-outdent-re)))
1056 )))
1057
Barry Warsawb91b7431995-03-14 15:55:20 +00001058(defun py-electric-colon (arg)
1059 "Insert a colon.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001060In certain cases the line is dedented appropriately. If a numeric
1061argument ARG is provided, that many colons are inserted
1062non-electrically. Electric behavior is inhibited inside a string or
1063comment."
Barry Warsawb91b7431995-03-14 15:55:20 +00001064 (interactive "P")
1065 (self-insert-command (prefix-numeric-value arg))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001066 ;; are we in a string or comment?
1067 (if (save-excursion
1068 (let ((pps (parse-partial-sexp (save-excursion
Barry Warsawab0e86c1998-05-19 15:31:46 +00001069 (py-beginning-of-def-or-class)
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001070 (point))
1071 (point))))
1072 (not (or (nth 3 pps) (nth 4 pps)))))
1073 (save-excursion
1074 (let ((here (point))
1075 (outdent 0)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001076 (indent (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001077 (if (and (not arg)
1078 (py-outdent-p)
1079 (= indent (save-excursion
Barry Warsawa7661821996-08-02 16:22:43 +00001080 (py-next-statement -1)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001081 (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001082 )
1083 (setq outdent py-indent-offset))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001084 ;; Don't indent, only dedent. This assumes that any lines
1085 ;; that are already dedented relative to
1086 ;; py-compute-indentation were put there on purpose. It's
1087 ;; highly annoying to have `:' indent for you. Use TAB, C-c
1088 ;; C-l or C-c C-r to adjust. TBD: Is there a better way to
1089 ;; determine this???
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001090 (if (< (current-indentation) indent) nil
1091 (goto-char here)
1092 (beginning-of-line)
1093 (delete-horizontal-space)
1094 (indent-to (- indent outdent))
1095 )))))
Barry Warsawb91b7431995-03-14 15:55:20 +00001096
1097
Barry Warsawa97a3f31997-11-04 18:47:06 +00001098;; Python subprocess utilities and filters
1099(defun py-execute-file (proc filename)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001100 "Send to Python interpreter process PROC \"execfile('FILENAME')\".
1101Make that process's buffer visible and force display. Also make
1102comint believe the user typed this string so that
1103`kill-output-from-shell' does The Right Thing."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001104 (let ((curbuf (current-buffer))
1105 (procbuf (process-buffer proc))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001106; (comint-scroll-to-bottom-on-output t)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001107 (msg (format "## working on region in file %s...\n" filename))
Barry Warsaw02e5f691998-09-24 23:48:40 +00001108 (cmd (format "execfile(r'%s')\n" filename)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001109 (unwind-protect
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001110 (save-excursion
Barry Warsawa97a3f31997-11-04 18:47:06 +00001111 (set-buffer procbuf)
1112 (goto-char (point-max))
1113 (move-marker (process-mark proc) (point))
1114 (funcall (process-filter proc) proc msg))
1115 (set-buffer curbuf))
1116 (process-send-string proc cmd)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001117
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001118(defun py-comint-output-filter-function (string)
1119 "Watch output for Python prompt and exec next file waiting in queue.
1120This function is appropriate for `comint-output-filter-functions'."
Barry Warsaw014e0e21998-11-17 19:24:47 +00001121 ;; TBD: this should probably use split-string
Barry Warsaw4f94c731998-09-25 19:40:10 +00001122 (when (and (or (string-equal string ">>> ")
Barry Warsaw4f94c731998-09-25 19:40:10 +00001123 (and (>= (length string) 5)
1124 (string-equal (substring string -5) "\n>>> ")))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001125 py-file-queue)
1126 (py-safe (delete-file (car py-file-queue)))
1127 (setq py-file-queue (cdr py-file-queue))
1128 (if py-file-queue
1129 (let ((pyproc (get-buffer-process (current-buffer))))
1130 (py-execute-file pyproc (car py-file-queue))))
1131 ))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001132
Barry Warsaw4f577d22001-04-11 20:23:17 +00001133(defun py-pdbtrack-overlay-arrow (activation)
1134 "Activate or de arrow at beginning-of-line in current buffer."
1135 ;; This was derived/simplified from edebug-overlay-arrow
1136 (cond (activation
1137 (setq overlay-arrow-position (make-marker))
1138 (setq overlay-arrow-string "=>")
1139 (set-marker overlay-arrow-position (py-point 'bol) (current-buffer))
1140 (setq py-pdbtrack-is-tracking-p t))
1141 (overlay-arrow-position
1142 (setq overlay-arrow-position nil)
1143 (setq py-pdbtrack-is-tracking-p nil))
1144 ))
1145
1146(defun py-pdbtrack-track-stack-file (text)
1147 "Show the file indicated by the pdb stack entry line, in a separate window.
1148
1149Activity is disabled if the buffer-local variable
1150`py-pdbtrack-do-tracking-p' is nil.
1151
1152We depend on the pdb input prompt matching `py-pdbtrack-input-prompt'
1153at the beginning of the line."
1154 ;; Instead of trying to piece things together from partial text
1155 ;; (which can be almost useless depending on Emacs version), we
1156 ;; monitor to the point where we have the next pdb prompt, and then
1157 ;; check all text from comint-last-input-end to process-mark.
1158 ;;
1159 ;; KLM: It might be nice to provide an optional override, so this
1160 ;; routine could be fed debugger output strings as the text
1161 ;; argument, for deliberate application elsewhere.
1162 ;;
1163 ;; KLM: We're very conservative about clearing the overlay arrow, to
1164 ;; minimize residue. This means, for instance, that executing other
1165 ;; pdb commands wipes out the highlight.
1166 (let* ((origbuf (current-buffer))
1167 (currproc (get-buffer-process origbuf)))
1168 (if (not (and currproc py-pdbtrack-do-tracking-p))
1169 (py-pdbtrack-overlay-arrow nil)
1170 (let* (;(origdir default-directory)
1171 (procmark (process-mark currproc))
1172 (block (buffer-substring (max comint-last-input-end
1173 (- procmark
1174 py-pdbtrack-track-range))
1175 procmark))
1176 fname lineno)
1177 (if (not (string-match (concat py-pdbtrack-input-prompt "$") block))
1178 (py-pdbtrack-overlay-arrow nil)
1179 (if (not (string-match
1180 (concat ".*" py-pdbtrack-stack-entry-regexp ".*")
1181 block))
1182 (py-pdbtrack-overlay-arrow nil)
1183 (setq fname (match-string 1 block)
1184 lineno (match-string 2 block))
1185 (if (file-exists-p fname)
1186 (progn
1187 (find-file-other-window fname)
1188 (goto-line (string-to-int lineno))
Barry Warsawc8c1a5b2001-04-11 22:27:41 +00001189 (message "pdbtrack: line %s, file %s" lineno fname)
Barry Warsaw4f577d22001-04-11 20:23:17 +00001190 (py-pdbtrack-overlay-arrow t)
1191 (pop-to-buffer origbuf t) )
1192 (if (= (elt fname 0) ?\<)
Barry Warsawc8c1a5b2001-04-11 22:27:41 +00001193 (message "pdbtrack: (Non-file source: '%s')" fname)
1194 (message "pdbtrack: File not found: %s" fname))
Barry Warsaw4f577d22001-04-11 20:23:17 +00001195 )))))))
1196
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001197(defun py-postprocess-output-buffer (buf)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001198 "Highlight exceptions found in BUF.
1199If an exception occurred return t, otherwise return nil. BUF must exist."
Barry Warsawf9b99f41998-03-26 16:08:59 +00001200 (let (line file bol err-p)
Barry Warsaw9981d221997-12-03 05:25:48 +00001201 (save-excursion
1202 (set-buffer buf)
1203 (beginning-of-buffer)
1204 (while (re-search-forward py-traceback-line-re nil t)
1205 (setq file (match-string 1)
1206 line (string-to-int (match-string 2))
1207 bol (py-point 'bol))
Barry Warsawf9b99f41998-03-26 16:08:59 +00001208 (py-highlight-line bol (py-point 'eol) file line)))
1209 (when (and py-jump-on-exception line)
1210 (beep)
1211 (py-jump-to-exception file line)
1212 (setq err-p t))
1213 err-p))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001214
Barry Warsaw9981d221997-12-03 05:25:48 +00001215
Barry Warsawa97a3f31997-11-04 18:47:06 +00001216
1217;;; Subprocess commands
1218
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001219;; only used when (memq 'broken-temp-names py-emacs-features)
1220(defvar py-serial-number 0)
1221(defvar py-exception-buffer nil)
1222(defconst py-output-buffer "*Python Output*")
Barry Warsawa2398801998-04-09 23:28:20 +00001223(make-variable-buffer-local 'py-output-buffer)
1224
1225;; for toggling between CPython and JPython
Barry Warsawaa384fd1999-02-16 23:36:16 +00001226(defvar py-which-shell nil)
Barry Warsawa2398801998-04-09 23:28:20 +00001227(defvar py-which-args py-python-command-args)
1228(defvar py-which-bufname "Python")
1229(make-variable-buffer-local 'py-which-shell)
1230(make-variable-buffer-local 'py-which-args)
1231(make-variable-buffer-local 'py-which-bufname)
1232
1233(defun py-toggle-shells (arg)
1234 "Toggles between the CPython and JPython shells.
Barry Warsaw11f21561999-07-28 21:59:43 +00001235
Barry Warsaw41a05c71998-08-10 16:33:12 +00001236With positive argument ARG (interactively \\[universal-argument]),
1237uses the CPython shell, with negative ARG uses the JPython shell, and
Barry Warsaw11f21561999-07-28 21:59:43 +00001238with a zero argument, toggles the shell.
1239
1240Programmatically, ARG can also be one of the symbols `cpython' or
1241`jpython', equivalent to positive arg and negative arg respectively."
Barry Warsawa2398801998-04-09 23:28:20 +00001242 (interactive "P")
1243 ;; default is to toggle
1244 (if (null arg)
1245 (setq arg 0))
Barry Warsaw11f21561999-07-28 21:59:43 +00001246 ;; preprocess arg
1247 (cond
1248 ((equal arg 0)
1249 ;; toggle
1250 (if (string-equal py-which-bufname "Python")
1251 (setq arg -1)
1252 (setq arg 1)))
1253 ((equal arg 'cpython) (setq arg 1))
1254 ((equal arg 'jpython) (setq arg -1)))
Barry Warsawa2398801998-04-09 23:28:20 +00001255 (let (msg)
1256 (cond
1257 ((< 0 arg)
1258 ;; set to CPython
1259 (setq py-which-shell py-python-command
1260 py-which-args py-python-command-args
1261 py-which-bufname "Python"
1262 msg "CPython"
1263 mode-name "Python"))
1264 ((> 0 arg)
1265 (setq py-which-shell py-jpython-command
1266 py-which-args py-jpython-command-args
1267 py-which-bufname "JPython"
1268 msg "JPython"
1269 mode-name "JPython"))
1270 )
Barry Warsawea609c11998-04-10 16:08:26 +00001271 (message "Using the %s shell" msg)
Barry Warsawa2398801998-04-09 23:28:20 +00001272 (setq py-output-buffer (format "*%s Output*" py-which-bufname))))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001273
Barry Warsawa97a3f31997-11-04 18:47:06 +00001274;;;###autoload
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001275(defun py-shell (&optional argprompt)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001276 "Start an interactive Python interpreter in another window.
1277This is like Shell mode, except that Python is running in the window
1278instead of a shell. See the `Interactive Shell' and `Shell Mode'
1279sections of the Emacs manual for details, especially for the key
1280bindings active in the `*Python*' buffer.
1281
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001282With optional \\[universal-argument], the user is prompted for the
1283flags to pass to the Python interpreter. This has no effect when this
1284command is used to switch to an existing process, only when a new
1285process is started. If you use this, you will probably want to ensure
1286that the current arguments are retained (they will be included in the
1287prompt). This argument is ignored when this function is called
1288programmatically, or when running in Emacs 19.34 or older.
1289
Barry Warsawa2398801998-04-09 23:28:20 +00001290Note: You can toggle between using the CPython interpreter and the
1291JPython interpreter by hitting \\[py-toggle-shells]. This toggles
1292buffer local variables which control whether all your subshell
1293interactions happen to the `*JPython*' or `*Python*' buffers (the
1294latter is the name used for the CPython buffer).
1295
Barry Warsawa97a3f31997-11-04 18:47:06 +00001296Warning: Don't use an interactive Python if you change sys.ps1 or
1297sys.ps2 from their default values, or if you're running code that
1298prints `>>> ' or `... ' at the start of a line. `python-mode' can't
1299distinguish your output from Python's output, and assumes that `>>> '
1300at the start of a line is a prompt from Python. Similarly, the Emacs
1301Shell mode code assumes that both `>>> ' and `... ' at the start of a
1302line are Python prompts. Bad things can happen if you fool either
1303mode.
1304
1305Warning: If you do any editing *in* the process buffer *while* the
1306buffer is accepting output from Python, do NOT attempt to `undo' the
1307changes. Some of the output (nowhere near the parts you changed!) may
1308be lost if you do. This appears to be an Emacs bug, an unfortunate
1309interaction between undo and process filters; the same problem exists in
1310non-Python process buffers using the default (Emacs-supplied) process
1311filter."
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001312 (interactive "P")
Barry Warsaw50765ab1999-08-10 21:49:00 +00001313 ;; Set the default shell if not already set
1314 (when (null py-which-shell)
1315 (py-toggle-shells py-default-interpreter))
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001316 (let ((args py-which-args))
1317 (when (and argprompt
1318 (interactive-p)
1319 (fboundp 'split-string))
1320 ;; TBD: Perhaps force "-i" in the final list?
1321 (setq args (split-string
1322 (read-string (concat py-which-bufname
1323 " arguments: ")
1324 (concat
1325 (mapconcat 'identity py-which-args " ") " ")
1326 ))))
1327 (switch-to-buffer-other-window
1328 (apply 'make-comint py-which-bufname py-which-shell nil args))
1329 (make-local-variable 'comint-prompt-regexp)
1330 (setq comint-prompt-regexp "^>>> \\|^[.][.][.] \\|^(pdb) ")
1331 (add-hook 'comint-output-filter-functions
1332 'py-comint-output-filter-function)
Barry Warsaw4f577d22001-04-11 20:23:17 +00001333 ;; pdbtrack
1334 (add-hook 'comint-output-filter-functions 'py-pdbtrack-track-stack-file)
1335 (setq py-pdbtrack-do-tracking-p t)
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001336 (set-syntax-table py-mode-syntax-table)
1337 (use-local-map py-shell-map)
1338 ))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001339
Barry Warsawa97a3f31997-11-04 18:47:06 +00001340(defun py-clear-queue ()
1341 "Clear the queue of temporary files waiting to execute."
1342 (interactive)
1343 (let ((n (length py-file-queue)))
1344 (mapcar 'delete-file py-file-queue)
1345 (setq py-file-queue nil)
1346 (message "%d pending files de-queued." n)))
1347
Barry Warsaw820273d1998-05-19 15:54:45 +00001348
Barry Warsawa97a3f31997-11-04 18:47:06 +00001349(defun py-execute-region (start end &optional async)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001350 "Execute the region in a Python interpreter.
1351
Barry Warsawa97a3f31997-11-04 18:47:06 +00001352The region is first copied into a temporary file (in the directory
1353`py-temp-directory'). If there is no Python interpreter shell
1354running, this file is executed synchronously using
Barry Warsaw41a05c71998-08-10 16:33:12 +00001355`shell-command-on-region'. If the program is long running, use
1356\\[universal-argument] to run the command asynchronously in its own
1357buffer.
1358
1359When this function is used programmatically, arguments START and END
1360specify the region to execute, and optional third argument ASYNC, if
1361non-nil, specifies to run the command asynchronously in its own
1362buffer.
Barry Warsawa97a3f31997-11-04 18:47:06 +00001363
1364If the Python interpreter shell is running, the region is execfile()'d
1365in that shell. If you try to execute regions too quickly,
1366`python-mode' will queue them up and execute them one at a time when
1367it sees a `>>> ' prompt from Python. Each time this happens, the
1368process buffer is popped into a window (if it's not already in some
1369window) so you can see it, and a comment of the form
1370
1371 \t## working on region in file <name>...
1372
1373is inserted at the end. See also the command `py-clear-queue'."
1374 (interactive "r\nP")
1375 (or (< start end)
1376 (error "Region is empty"))
Barry Warsaw014e0e21998-11-17 19:24:47 +00001377 (let* ((proc (get-process py-which-bufname))
Barry Warsaw5e21cb01997-11-05 18:41:11 +00001378 (temp (if (memq 'broken-temp-names py-emacs-features)
Barry Warsaw1b344241998-08-07 22:24:16 +00001379 (let
1380 ((sn py-serial-number)
1381 (pid (and (fboundp 'emacs-pid) (emacs-pid))))
1382 (setq py-serial-number (1+ py-serial-number))
1383 (if pid
1384 (format "python-%d-%d" sn pid)
1385 (format "python-%d" sn)))
Barry Warsaw2f32fbb1998-02-25 16:45:43 +00001386 (make-temp-name "python-")))
Barry Warsawb2d5e622002-04-22 15:29:27 +00001387 (file (concat (expand-file-name temp py-temp-directory) ".py"))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001388 (cur (current-buffer))
Barry Warsawb2d5e622002-04-22 15:29:27 +00001389 (buf (get-buffer-create file))
1390 shell)
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001391 ;; Write the contents of the buffer, watching out for indented regions.
1392 (save-excursion
1393 (goto-char start)
Barry Warsaw99eadf42000-06-23 20:24:25 +00001394 (let ((needs-if (/= (py-point 'bol) (py-point 'boi))))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001395 (set-buffer buf)
Barry Warsawb2d5e622002-04-22 15:29:27 +00001396 (python-mode)
Barry Warsaw99eadf42000-06-23 20:24:25 +00001397 (when needs-if
1398 (insert "if 1:\n"))
Barry Warsawa0113cd2002-04-22 16:23:29 +00001399 (insert-buffer-substring cur start end)
1400 ;; Set the shell either to the #! line command, or to the
1401 ;; py-which-shell buffer local variable.
1402 (goto-char (point-min))
1403 (if (looking-at "^#!\\s *\\(.*\\)$")
1404 (setq shell (match-string 1))
1405 ;; No useable #! line
1406 (setq shell py-which-shell))))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001407 (cond
Barry Warsaw145ab1c1998-05-19 14:49:49 +00001408 ;; always run the code in its own asynchronous subprocess
Barry Warsawa97a3f31997-11-04 18:47:06 +00001409 (async
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001410 ;; User explicitly wants this to run in its own async subprocess
1411 (save-excursion
1412 (set-buffer buf)
1413 (write-region (point-min) (point-max) file nil 'nomsg))
Barry Warsaw34d83171998-11-20 03:04:07 +00001414 (let* ((buf (generate-new-buffer-name py-output-buffer))
1415 ;; TBD: a horrible hack, but why create new Custom variables?
1416 (arg (if (string-equal py-which-bufname "Python")
1417 "-u" "")))
Barry Warsawb2d5e622002-04-22 15:29:27 +00001418 (start-process py-which-bufname buf shell arg file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001419 (pop-to-buffer buf)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001420 (py-postprocess-output-buffer buf)
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001421 ;; TBD: clean up the temporary file!
Barry Warsawa97a3f31997-11-04 18:47:06 +00001422 ))
1423 ;; if the Python interpreter shell is running, queue it up for
1424 ;; execution there.
1425 (proc
1426 ;; use the existing python shell
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001427 (save-excursion
1428 (set-buffer buf)
1429 (write-region (point-min) (point-max) file nil 'nomsg))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001430 (if (not py-file-queue)
1431 (py-execute-file proc file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001432 (message "File %s queued for execution" file))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001433 (setq py-file-queue (append py-file-queue (list file)))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001434 (setq py-exception-buffer (cons file (current-buffer))))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001435 (t
Barry Warsawa0113cd2002-04-22 16:23:29 +00001436 ;; TBD: a horrible hack, but why create new Custom variables?
1437 (let ((cmd (concat shell (if (string-equal py-which-bufname "JPython")
1438 " -" ""))))
Barry Warsaw34d83171998-11-20 03:04:07 +00001439 ;; otherwise either run it synchronously in a subprocess
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001440 (save-excursion
1441 (set-buffer buf)
1442 (shell-command-on-region (point-min) (point-max)
1443 cmd py-output-buffer))
Barry Warsaw34d83171998-11-20 03:04:07 +00001444 ;; shell-command-on-region kills the output buffer if it never
1445 ;; existed and there's no output from the command
1446 (if (not (get-buffer py-output-buffer))
1447 (message "No output.")
1448 (setq py-exception-buffer (current-buffer))
1449 (let ((err-p (py-postprocess-output-buffer py-output-buffer)))
1450 (pop-to-buffer py-output-buffer)
1451 (if err-p
1452 (pop-to-buffer py-exception-buffer)))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001453 ))
Barry Warsaw29a90f02002-04-22 21:48:20 +00001454 ))
Barry Warsaw71534602001-02-20 23:07:56 +00001455 ;; Clean up after ourselves.
1456 (kill-buffer buf)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001457
Barry Warsaw820273d1998-05-19 15:54:45 +00001458
1459;; Code execution commands
Barry Warsawa97a3f31997-11-04 18:47:06 +00001460(defun py-execute-buffer (&optional async)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001461 "Send the contents of the buffer to a Python interpreter.
Barry Warsawc0ecb531998-01-20 21:43:34 +00001462If the file local variable `py-master-file' is non-nil, execute the
1463named file instead of the buffer's file.
1464
Barry Warsaw7ae77681994-12-12 20:38:05 +00001465If there is a *Python* process buffer it is used. If a clipping
1466restriction is in effect, only the accessible portion of the buffer is
1467sent. A trailing newline will be supplied if needed.
1468
Barry Warsaw41a05c71998-08-10 16:33:12 +00001469See the `\\[py-execute-region]' docs for an account of some
1470subtleties, including the use of the optional ASYNC argument."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001471 (interactive "P")
Barry Warsawc0ecb531998-01-20 21:43:34 +00001472 (if py-master-file
1473 (let* ((filename (expand-file-name py-master-file))
1474 (buffer (or (get-file-buffer filename)
1475 (find-file-noselect filename))))
1476 (set-buffer buffer)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001477 (py-execute-region (point-min) (point-max) async))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001478
Barry Warsaw820273d1998-05-19 15:54:45 +00001479(defun py-execute-import-or-reload (&optional async)
1480 "Import the current buffer's file in a Python interpreter.
1481
1482If the file has already been imported, then do reload instead to get
Barry Warsaw7c29b231998-07-07 17:45:38 +00001483the latest version.
1484
1485If the file's name does not end in \".py\", then do execfile instead.
1486
1487If the current buffer is not visiting a file, do `py-execute-buffer'
1488instead.
1489
1490If the file local variable `py-master-file' is non-nil, import or
1491reload the named file instead of the buffer's file. The file may be
1492saved based on the value of `py-execute-import-or-reload-save-p'.
Barry Warsaw820273d1998-05-19 15:54:45 +00001493
Barry Warsaw41a05c71998-08-10 16:33:12 +00001494See the `\\[py-execute-region]' docs for an account of some
1495subtleties, including the use of the optional ASYNC argument.
Barry Warsaw820273d1998-05-19 15:54:45 +00001496
Barry Warsaw7c29b231998-07-07 17:45:38 +00001497This may be preferable to `\\[py-execute-buffer]' because:
Barry Warsaw820273d1998-05-19 15:54:45 +00001498
1499 - Definitions stay in their module rather than appearing at top
1500 level, where they would clutter the global namespace and not affect
1501 uses of qualified names (MODULE.NAME).
1502
1503 - The Python debugger gets line number information about the functions."
1504 (interactive "P")
1505 ;; Check file local variable py-master-file
1506 (if py-master-file
1507 (let* ((filename (expand-file-name py-master-file))
1508 (buffer (or (get-file-buffer filename)
1509 (find-file-noselect filename))))
1510 (set-buffer buffer)))
1511 (let ((file (buffer-file-name (current-buffer))))
1512 (if file
1513 (progn
Barry Warsaw3bfed5b1998-05-19 16:25:04 +00001514 ;; Maybe save some buffers
1515 (save-some-buffers (not py-ask-about-save) nil)
Barry Warsaw820273d1998-05-19 15:54:45 +00001516 (py-execute-string
1517 (if (string-match "\\.py$" file)
1518 (let ((f (file-name-sans-extension
1519 (file-name-nondirectory file))))
1520 (format "if globals().has_key('%s'):\n reload(%s)\nelse:\n import %s\n"
1521 f f f))
Barry Warsaw02e5f691998-09-24 23:48:40 +00001522 (format "execfile(r'%s')\n" file))
Barry Warsaw820273d1998-05-19 15:54:45 +00001523 async))
1524 ;; else
1525 (py-execute-buffer async))))
1526
1527
1528(defun py-execute-def-or-class (&optional async)
1529 "Send the current function or class definition to a Python interpreter.
1530
1531If there is a *Python* process buffer it is used.
1532
Barry Warsaw41a05c71998-08-10 16:33:12 +00001533See the `\\[py-execute-region]' docs for an account of some
1534subtleties, including the use of the optional ASYNC argument."
Barry Warsaw820273d1998-05-19 15:54:45 +00001535 (interactive "P")
1536 (save-excursion
1537 (py-mark-def-or-class)
1538 ;; mark is before point
1539 (py-execute-region (mark) (point) async)))
1540
1541
1542(defun py-execute-string (string &optional async)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001543 "Send the argument STRING to a Python interpreter.
Barry Warsaw820273d1998-05-19 15:54:45 +00001544
1545If there is a *Python* process buffer it is used.
1546
Barry Warsaw41a05c71998-08-10 16:33:12 +00001547See the `\\[py-execute-region]' docs for an account of some
1548subtleties, including the use of the optional ASYNC argument."
Barry Warsaw820273d1998-05-19 15:54:45 +00001549 (interactive "sExecute Python command: ")
1550 (save-excursion
1551 (set-buffer (get-buffer-create
1552 (generate-new-buffer-name " *Python Command*")))
1553 (insert string)
1554 (py-execute-region (point-min) (point-max) async)))
1555
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001556
1557
1558(defun py-jump-to-exception (file line)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001559 "Jump to the Python code in FILE at LINE."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001560 (let ((buffer (cond ((string-equal file "<stdin>")
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001561 (if (consp py-exception-buffer)
1562 (cdr py-exception-buffer)
1563 py-exception-buffer))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001564 ((and (consp py-exception-buffer)
1565 (string-equal file (car py-exception-buffer)))
1566 (cdr py-exception-buffer))
1567 ((py-safe (find-file-noselect file)))
1568 ;; could not figure out what file the exception
1569 ;; is pointing to, so prompt for it
1570 (t (find-file (read-file-name "Exception file: "
1571 nil
1572 file t))))))
1573 (pop-to-buffer buffer)
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001574 ;; Force Python mode
Barry Warsaw820273d1998-05-19 15:54:45 +00001575 (if (not (eq major-mode 'python-mode))
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001576 (python-mode))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001577 (goto-line line)
1578 (message "Jumping to exception in file %s on line %d" file line)))
1579
1580(defun py-mouseto-exception (event)
Barry Warsaw12c92941998-08-10 21:44:37 +00001581 "Jump to the code which caused the Python exception at EVENT.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001582EVENT is usually a mouse click."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001583 (interactive "e")
1584 (cond
1585 ((fboundp 'event-point)
1586 ;; XEmacs
1587 (let* ((point (event-point event))
1588 (buffer (event-buffer event))
1589 (e (and point buffer (extent-at point buffer 'py-exc-info)))
1590 (info (and e (extent-property e 'py-exc-info))))
1591 (message "Event point: %d, info: %s" point info)
1592 (and info
1593 (py-jump-to-exception (car info) (cdr info)))
1594 ))
1595 ;; Emacs -- Please port this!
1596 ))
1597
1598(defun py-goto-exception ()
1599 "Go to the line indicated by the traceback."
1600 (interactive)
1601 (let (file line)
1602 (save-excursion
1603 (beginning-of-line)
1604 (if (looking-at py-traceback-line-re)
1605 (setq file (match-string 1)
1606 line (string-to-int (match-string 2)))))
1607 (if (not file)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001608 (error "Not on a traceback line"))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001609 (py-jump-to-exception file line)))
1610
1611(defun py-find-next-exception (start buffer searchdir errwhere)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001612 "Find the next Python exception and jump to the code that caused it.
1613START is the buffer position in BUFFER from which to begin searching
1614for an exception. SEARCHDIR is a function, either
1615`re-search-backward' or `re-search-forward' indicating the direction
1616to search. ERRWHERE is used in an error message if the limit (top or
1617bottom) of the trackback stack is encountered."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001618 (let (file line)
1619 (save-excursion
1620 (set-buffer buffer)
1621 (goto-char (py-point start))
1622 (if (funcall searchdir py-traceback-line-re nil t)
1623 (setq file (match-string 1)
1624 line (string-to-int (match-string 2)))))
1625 (if (and file line)
1626 (py-jump-to-exception file line)
1627 (error "%s of traceback" errwhere))))
1628
1629(defun py-down-exception (&optional bottom)
1630 "Go to the next line down in the traceback.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001631With \\[univeral-argument] (programmatically, optional argument
1632BOTTOM), jump to the bottom (innermost) exception in the exception
1633stack."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001634 (interactive "P")
1635 (let* ((proc (get-process "Python"))
1636 (buffer (if proc "*Python*" py-output-buffer)))
1637 (if bottom
1638 (py-find-next-exception 'eob buffer 're-search-backward "Bottom")
1639 (py-find-next-exception 'eol buffer 're-search-forward "Bottom"))))
1640
1641(defun py-up-exception (&optional top)
1642 "Go to the previous line up in the traceback.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001643With \\[universal-argument] (programmatically, optional argument TOP)
1644jump to the top (outermost) exception in the exception stack."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001645 (interactive "P")
1646 (let* ((proc (get-process "Python"))
1647 (buffer (if proc "*Python*" py-output-buffer)))
1648 (if top
1649 (py-find-next-exception 'bob buffer 're-search-forward "Top")
Barry Warsawffbc17d1997-11-27 20:08:14 +00001650 (py-find-next-exception 'bol buffer 're-search-backward "Top"))))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001651
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001652
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001653;; Electric deletion
1654(defun py-electric-backspace (arg)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001655 "Delete preceding character or levels of indentation.
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001656Deletion is performed by calling the function in `py-backspace-function'
Barry Warsawb0539931996-12-17 22:05:07 +00001657with a single argument (the number of characters to delete).
Barry Warsaw7ae77681994-12-12 20:38:05 +00001658
Barry Warsaw41a05c71998-08-10 16:33:12 +00001659If point is at the leftmost column, delete the preceding newline.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001660
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001661Otherwise, if point is at the leftmost non-whitespace character of a
1662line that is neither a continuation line nor a non-indenting comment
1663line, or if point is at the end of a blank line, this command reduces
1664the indentation to match that of the line that opened the current
1665block of code. The line that opened the block is displayed in the
Barry Warsaw41a05c71998-08-10 16:33:12 +00001666echo area to help you keep track of where you are. With
1667\\[universal-argument] dedents that many blocks (but not past column
1668zero).
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001669
1670Otherwise the preceding character is deleted, converting a tab to
1671spaces if needed so that only a single column position is deleted.
Barry Warsawfa2def21999-05-24 21:43:37 +00001672\\[universal-argument] specifies how many characters to delete;
1673default is 1.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001674
1675When used programmatically, argument ARG specifies the number of
1676blocks to dedent, or the number of characters to delete, as indicated
1677above."
Barry Warsaw03970731996-07-03 23:12:52 +00001678 (interactive "*p")
Barry Warsaw7ae77681994-12-12 20:38:05 +00001679 (if (or (/= (current-indentation) (current-column))
1680 (bolp)
1681 (py-continuation-line-p)
Barry Warsawfa2def21999-05-24 21:43:37 +00001682; (not py-honor-comment-indentation)
1683; (looking-at "#[^ \t\n]") ; non-indenting #
1684 )
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001685 (funcall py-backspace-function arg)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001686 ;; else indent the same as the colon line that opened the block
Barry Warsaw7ae77681994-12-12 20:38:05 +00001687 ;; force non-blank so py-goto-block-up doesn't ignore it
1688 (insert-char ?* 1)
1689 (backward-char)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001690 (let ((base-indent 0) ; indentation of base line
1691 (base-text "") ; and text of base line
1692 (base-found-p nil))
Barry Warsaw03970731996-07-03 23:12:52 +00001693 (save-excursion
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001694 (while (< 0 arg)
Barry Warsaw03970731996-07-03 23:12:52 +00001695 (condition-case nil ; in case no enclosing block
1696 (progn
1697 (py-goto-block-up 'no-mark)
1698 (setq base-indent (current-indentation)
1699 base-text (py-suck-up-leading-text)
1700 base-found-p t))
1701 (error nil))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001702 (setq arg (1- arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001703 (delete-char 1) ; toss the dummy character
1704 (delete-horizontal-space)
1705 (indent-to base-indent)
1706 (if base-found-p
1707 (message "Closes block: %s" base-text)))))
1708
Barry Warsawfc8a01f1995-03-09 16:07:29 +00001709
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001710(defun py-electric-delete (arg)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001711 "Delete preceding or following character or levels of whitespace.
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001712
1713The behavior of this function depends on the variable
1714`delete-key-deletes-forward'. If this variable is nil (or does not
Barry Warsaw41a05c71998-08-10 16:33:12 +00001715exist, as in older Emacsen and non-XEmacs versions), then this
1716function behaves identically to \\[c-electric-backspace].
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001717
1718If `delete-key-deletes-forward' is non-nil and is supported in your
1719Emacs, then deletion occurs in the forward direction, by calling the
Barry Warsaw41a05c71998-08-10 16:33:12 +00001720function in `py-delete-function'.
1721
1722\\[universal-argument] (programmatically, argument ARG) specifies the
1723number of characters to delete (default is 1)."
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001724 (interactive "*p")
Barry Warsaw1d7b0fa1999-01-15 02:12:31 +00001725 (if (or (and (fboundp 'delete-forward-p) ;XEmacs 21
1726 (delete-forward-p))
1727 (and (boundp 'delete-key-deletes-forward) ;XEmacs 20
1728 delete-key-deletes-forward))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001729 (funcall py-delete-function arg)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001730 (py-electric-backspace arg)))
1731
1732;; required for pending-del and delsel modes
1733(put 'py-electric-backspace 'delete-selection 'supersede) ;delsel
1734(put 'py-electric-backspace 'pending-delete 'supersede) ;pending-del
1735(put 'py-electric-delete 'delete-selection 'supersede) ;delsel
1736(put 'py-electric-delete 'pending-delete 'supersede) ;pending-del
1737
1738
1739
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001740(defun py-indent-line (&optional arg)
1741 "Fix the indentation of the current line according to Python rules.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001742With \\[universal-argument] (programmatically, the optional argument
1743ARG non-nil), ignore dedenting rules for block closing statements
1744(e.g. return, raise, break, continue, pass)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001745
1746This function is normally bound to `indent-line-function' so
1747\\[indent-for-tab-command] will call it."
1748 (interactive "P")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001749 (let* ((ci (current-indentation))
1750 (move-to-indentation-p (<= (current-column) ci))
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001751 (need (py-compute-indentation (not arg))))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001752 ;; see if we need to dedent
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001753 (if (py-outdent-p)
Barry Warsaw0012c1e1995-03-14 16:32:55 +00001754 (setq need (- need py-indent-offset)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001755 (if (/= ci need)
1756 (save-excursion
1757 (beginning-of-line)
1758 (delete-horizontal-space)
1759 (indent-to need)))
1760 (if move-to-indentation-p (back-to-indentation))))
1761
1762(defun py-newline-and-indent ()
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001763 "Strives to act like the Emacs `newline-and-indent'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001764This is just `strives to' because correct indentation can't be computed
1765from scratch for Python code. In general, deletes the whitespace before
1766point, inserts a newline, and takes an educated guess as to how you want
1767the new line indented."
1768 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001769 (let ((ci (current-indentation)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001770 (if (< ci (current-column)) ; if point beyond indentation
1771 (newline-and-indent)
1772 ;; else try to act like newline-and-indent "normally" acts
1773 (beginning-of-line)
1774 (insert-char ?\n 1)
1775 (move-to-column ci))))
1776
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001777(defun py-compute-indentation (honor-block-close-p)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001778 "Compute Python indentation.
1779When HONOR-BLOCK-CLOSE-P is non-nil, statements such as `return',
1780`raise', `break', `continue', and `pass' force one level of
1781dedenting."
Barry Warsaw7ae77681994-12-12 20:38:05 +00001782 (save-excursion
Barry Warsawf64b4051998-02-12 16:52:14 +00001783 (beginning-of-line)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001784 (let* ((bod (py-point 'bod))
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00001785 (pps (parse-partial-sexp bod (point)))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001786 (boipps (parse-partial-sexp bod (py-point 'boi)))
1787 placeholder)
Barry Warsaw095e9c61995-09-19 20:01:42 +00001788 (cond
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001789 ;; are we inside a multi-line string or comment?
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00001790 ((or (and (nth 3 pps) (nth 3 boipps))
1791 (and (nth 4 pps) (nth 4 boipps)))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001792 (save-excursion
1793 (if (not py-align-multiline-strings-p) 0
1794 ;; skip back over blank & non-indenting comment lines
1795 ;; note: will skip a blank or non-indenting comment line
1796 ;; that happens to be a continuation line too
1797 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#[ \t\n]\\)" nil 'move)
1798 (back-to-indentation)
1799 (current-column))))
1800 ;; are we on a continuation line?
1801 ((py-continuation-line-p)
1802 (let ((startpos (point))
1803 (open-bracket-pos (py-nesting-level))
Barry Warsawce60bc71996-08-01 18:17:14 +00001804 endpos searching found state)
Barry Warsaw095e9c61995-09-19 20:01:42 +00001805 (if open-bracket-pos
1806 (progn
1807 ;; align with first item in list; else a normal
1808 ;; indent beyond the line with the open bracket
1809 (goto-char (1+ open-bracket-pos)) ; just beyond bracket
1810 ;; is the first list item on the same line?
1811 (skip-chars-forward " \t")
1812 (if (null (memq (following-char) '(?\n ?# ?\\)))
1813 ; yes, so line up with it
1814 (current-column)
1815 ;; first list item on another line, or doesn't exist yet
1816 (forward-line 1)
1817 (while (and (< (point) startpos)
1818 (looking-at "[ \t]*[#\n\\\\]")) ; skip noise
1819 (forward-line 1))
Barry Warsaw92166d91998-04-01 21:59:41 +00001820 (if (and (< (point) startpos)
1821 (/= startpos
1822 (save-excursion
1823 (goto-char (1+ open-bracket-pos))
Barry Warsaw77d1fce1998-04-16 20:04:59 +00001824 (forward-comment (point-max))
Barry Warsaw92166d91998-04-01 21:59:41 +00001825 (point))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001826 ;; again mimic the first list item
1827 (current-indentation)
1828 ;; else they're about to enter the first item
1829 (goto-char open-bracket-pos)
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001830 (setq placeholder (point))
1831 (py-goto-initial-line)
1832 (py-goto-beginning-of-tqs
1833 (save-excursion (nth 3 (parse-partial-sexp
1834 placeholder (point)))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001835 (+ (current-indentation) py-indent-offset))))
1836
1837 ;; else on backslash continuation line
1838 (forward-line -1)
1839 (if (py-continuation-line-p) ; on at least 3rd line in block
1840 (current-indentation) ; so just continue the pattern
1841 ;; else started on 2nd line in block, so indent more.
1842 ;; if base line is an assignment with a start on a RHS,
1843 ;; indent to 2 beyond the leftmost "="; else skip first
1844 ;; chunk of non-whitespace characters on base line, + 1 more
1845 ;; column
1846 (end-of-line)
Barry Warsawfd4c9e82001-06-18 23:40:35 +00001847 (setq endpos (point)
1848 searching t)
Barry Warsaw095e9c61995-09-19 20:01:42 +00001849 (back-to-indentation)
1850 (setq startpos (point))
1851 ;; look at all "=" from left to right, stopping at first
1852 ;; one not nested in a list or string
1853 (while searching
1854 (skip-chars-forward "^=" endpos)
1855 (if (= (point) endpos)
1856 (setq searching nil)
1857 (forward-char 1)
1858 (setq state (parse-partial-sexp startpos (point)))
1859 (if (and (zerop (car state)) ; not in a bracket
1860 (null (nth 3 state))) ; & not in a string
1861 (progn
1862 (setq searching nil) ; done searching in any case
1863 (setq found
1864 (not (or
1865 (eq (following-char) ?=)
1866 (memq (char-after (- (point) 2))
1867 '(?< ?> ?!)))))))))
1868 (if (or (not found) ; not an assignment
1869 (looking-at "[ \t]*\\\\")) ; <=><spaces><backslash>
1870 (progn
1871 (goto-char startpos)
1872 (skip-chars-forward "^ \t\n")))
Barry Warsaw40fb4522001-07-06 20:07:13 +00001873 ;; if this is a continuation for a block opening
1874 ;; statement, add some extra offset.
1875 (+ (current-column) (if (py-statement-opens-block-p)
1876 py-continuation-offset 0)
1877 1)
Barry Warsawfd4c9e82001-06-18 23:40:35 +00001878 ))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001879
1880 ;; not on a continuation line
Barry Warsawa7891711996-08-01 15:53:09 +00001881 ((bobp) (current-indentation))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001882
Barry Warsawa7891711996-08-01 15:53:09 +00001883 ;; Dfn: "Indenting comment line". A line containing only a
1884 ;; comment, but which is treated like a statement for
1885 ;; indentation calculation purposes. Such lines are only
1886 ;; treated specially by the mode; they are not treated
1887 ;; specially by the Python interpreter.
1888
1889 ;; The rules for indenting comment lines are a line where:
1890 ;; - the first non-whitespace character is `#', and
1891 ;; - the character following the `#' is whitespace, and
Barry Warsaw41a05c71998-08-10 16:33:12 +00001892 ;; - the line is dedented with respect to (i.e. to the left
Barry Warsawa7891711996-08-01 15:53:09 +00001893 ;; of) the indentation of the preceding non-blank line.
1894
1895 ;; The first non-blank line following an indenting comment
1896 ;; line is given the same amount of indentation as the
1897 ;; indenting comment line.
1898
1899 ;; All other comment-only lines are ignored for indentation
1900 ;; purposes.
1901
1902 ;; Are we looking at a comment-only line which is *not* an
Barry Warsaw145ab1c1998-05-19 14:49:49 +00001903 ;; indenting comment line? If so, we assume that it's been
Barry Warsawa7891711996-08-01 15:53:09 +00001904 ;; placed at the desired indentation, so leave it alone.
1905 ;; Indenting comment lines are aligned as statements down
1906 ;; below.
1907 ((and (looking-at "[ \t]*#[^ \t\n]")
1908 ;; NOTE: this test will not be performed in older Emacsen
1909 (fboundp 'forward-comment)
1910 (<= (current-indentation)
1911 (save-excursion
1912 (forward-comment (- (point-max)))
1913 (current-indentation))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001914 (current-indentation))
1915
1916 ;; else indentation based on that of the statement that
1917 ;; precedes us; use the first line of that statement to
1918 ;; establish the base, in case the user forced a non-std
1919 ;; indentation for the continuation lines (if any)
1920 (t
Barry Warsawc01c5c81995-09-14 18:49:11 +00001921 ;; skip back over blank & non-indenting comment lines note:
1922 ;; will skip a blank or non-indenting comment line that
Barry Warsawfd0fb381996-03-04 17:15:40 +00001923 ;; happens to be a continuation line too. use fast Emacs 19
1924 ;; function if it's there.
Barry Warsaw6d627751996-03-06 18:41:38 +00001925 (if (and (eq py-honor-comment-indentation nil)
Barry Warsaw33d6ec01996-03-05 16:28:07 +00001926 (fboundp 'forward-comment))
Barry Warsawfd0fb381996-03-04 17:15:40 +00001927 (forward-comment (- (point-max)))
Barry Warsaw218eb751998-09-22 19:51:47 +00001928 (let ((prefix-re (concat py-block-comment-prefix "[ \t]*"))
1929 done)
Barry Warsaw6d627751996-03-06 18:41:38 +00001930 (while (not done)
Barry Warsaw12c92941998-08-10 21:44:37 +00001931 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#\\)" nil 'move)
1932 (setq done (or (bobp)
1933 (and (eq py-honor-comment-indentation t)
1934 (save-excursion
1935 (back-to-indentation)
Barry Warsaw218eb751998-09-22 19:51:47 +00001936 (not (looking-at prefix-re))
Barry Warsaw12c92941998-08-10 21:44:37 +00001937 ))
1938 (and (not (eq py-honor-comment-indentation t))
1939 (save-excursion
1940 (back-to-indentation)
Barry Warsawd36cfe42002-03-15 16:46:46 +00001941 (and (not (looking-at prefix-re))
1942 (or (looking-at "[^#]")
1943 (not (zerop (current-column)))
1944 ))
1945 ))
Barry Warsaw12c92941998-08-10 21:44:37 +00001946 ))
Barry Warsaw6d627751996-03-06 18:41:38 +00001947 )))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001948 ;; if we landed inside a string, go to the beginning of that
1949 ;; string. this handles triple quoted, multi-line spanning
1950 ;; strings.
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001951 (py-goto-beginning-of-tqs (nth 3 (parse-partial-sexp bod (point))))
Barry Warsawc210e691998-01-20 22:52:56 +00001952 ;; now skip backward over continued lines
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001953 (setq placeholder (point))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001954 (py-goto-initial-line)
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001955 ;; we may *now* have landed in a TQS, so find the beginning of
1956 ;; this string.
1957 (py-goto-beginning-of-tqs
1958 (save-excursion (nth 3 (parse-partial-sexp
1959 placeholder (point)))))
Barry Warsawf831d811996-07-31 20:42:59 +00001960 (+ (current-indentation)
1961 (if (py-statement-opens-block-p)
1962 py-indent-offset
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001963 (if (and honor-block-close-p (py-statement-closes-block-p))
Barry Warsawf831d811996-07-31 20:42:59 +00001964 (- py-indent-offset)
1965 0)))
1966 )))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001967
1968(defun py-guess-indent-offset (&optional global)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001969 "Guess a good value for, and change, `py-indent-offset'.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001970
1971By default, make a buffer-local copy of `py-indent-offset' with the
1972new value, so that other Python buffers are not affected. With
1973\\[universal-argument] (programmatically, optional argument GLOBAL),
1974change the global value of `py-indent-offset'. This affects all
1975Python buffers (that don't have their own buffer-local copy), both
1976those currently existing and those created later in the Emacs session.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001977
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001978Some people use a different value for `py-indent-offset' than you use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001979There's no excuse for such foolishness, but sometimes you have to deal
1980with their ugly code anyway. This function examines the file and sets
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001981`py-indent-offset' to what it thinks it was when they created the
1982mess.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001983
1984Specifically, it searches forward from the statement containing point,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001985looking for a line that opens a block of code. `py-indent-offset' is
1986set to the difference in indentation between that line and the Python
Barry Warsaw7ae77681994-12-12 20:38:05 +00001987statement following it. If the search doesn't succeed going forward,
1988it's tried again going backward."
1989 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001990 (let (new-value
1991 (start (point))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001992 (restart (point))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001993 (found nil)
1994 colon-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001995 (py-goto-initial-line)
1996 (while (not (or found (eobp)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001997 (when (and (re-search-forward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
1998 (not (py-in-literal restart)))
1999 (setq restart (point))
2000 (py-goto-initial-line)
2001 (if (py-statement-opens-block-p)
2002 (setq found t)
2003 (goto-char restart))))
2004 (unless found
Barry Warsaw7ae77681994-12-12 20:38:05 +00002005 (goto-char start)
2006 (py-goto-initial-line)
2007 (while (not (or found (bobp)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00002008 (setq found (and
2009 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2010 (or (py-goto-initial-line) t) ; always true -- side effect
2011 (py-statement-opens-block-p)))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002012 (setq colon-indent (current-indentation)
2013 found (and found (zerop (py-next-statement 1)))
2014 new-value (- (current-indentation) colon-indent))
2015 (goto-char start)
Barry Warsawe908b6b1998-03-19 22:48:02 +00002016 (if (not found)
2017 (error "Sorry, couldn't guess a value for py-indent-offset")
2018 (funcall (if global 'kill-local-variable 'make-local-variable)
2019 'py-indent-offset)
2020 (setq py-indent-offset new-value)
Barry Warsawd35c2551998-09-25 00:08:38 +00002021 (or noninteractive
2022 (message "%s value of py-indent-offset set to %d"
2023 (if global "Global" "Local")
2024 py-indent-offset)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00002025 ))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002026
Barry Warsaw003932a1998-07-07 15:11:24 +00002027(defun py-comment-indent-function ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002028 "Python version of `comment-indent-function'."
2029 ;; This is required when filladapt is turned off. Without it, when
2030 ;; filladapt is not used, comments which start in column zero
2031 ;; cascade one character to the right
Barry Warsaw003932a1998-07-07 15:11:24 +00002032 (save-excursion
2033 (beginning-of-line)
2034 (let ((eol (py-point 'eol)))
2035 (and comment-start-skip
2036 (re-search-forward comment-start-skip eol t)
2037 (setq eol (match-beginning 0)))
2038 (goto-char eol)
2039 (skip-chars-backward " \t")
2040 (max comment-column (+ (current-column) (if (bolp) 0 1)))
2041 )))
2042
Barry Warsawf8ddb6a1999-01-18 21:49:39 +00002043(defun py-narrow-to-defun (&optional class)
2044 "Make text outside current defun invisible.
2045The defun visible is the one that contains point or follows point.
2046Optional CLASS is passed directly to `py-beginning-of-def-or-class'."
2047 (interactive "P")
2048 (save-excursion
2049 (widen)
2050 (py-end-of-def-or-class class)
2051 (let ((end (point)))
2052 (py-beginning-of-def-or-class class)
2053 (narrow-to-region (point) end))))
2054
Barry Warsaw003932a1998-07-07 15:11:24 +00002055
Barry Warsaw7ae77681994-12-12 20:38:05 +00002056(defun py-shift-region (start end count)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002057 "Indent lines from START to END by COUNT spaces."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002058 (save-excursion
Barry Warsaw41a05c71998-08-10 16:33:12 +00002059 (goto-char end)
2060 (beginning-of-line)
2061 (setq end (point))
2062 (goto-char start)
2063 (beginning-of-line)
2064 (setq start (point))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002065 (indent-rigidly start end count)))
2066
2067(defun py-shift-region-left (start end &optional count)
2068 "Shift region of Python code to the left.
2069The lines from the line containing the start of the current region up
2070to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002071shifted to the left, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002072
2073If a prefix argument is given, the region is instead shifted by that
Barry Warsaw41a05c71998-08-10 16:33:12 +00002074many columns. With no active region, dedent only the current line.
2075You cannot dedent the region if any line is already at column zero."
Barry Warsawdea4a291996-07-03 22:59:12 +00002076 (interactive
2077 (let ((p (point))
2078 (m (mark))
2079 (arg current-prefix-arg))
2080 (if m
2081 (list (min p m) (max p m) arg)
2082 (list p (save-excursion (forward-line 1) (point)) arg))))
2083 ;; if any line is at column zero, don't shift the region
2084 (save-excursion
2085 (goto-char start)
2086 (while (< (point) end)
2087 (back-to-indentation)
Barry Warsaw71e315b1996-07-23 15:03:16 +00002088 (if (and (zerop (current-column))
2089 (not (looking-at "\\s *$")))
Barry Warsaw41a05c71998-08-10 16:33:12 +00002090 (error "Region is at left edge"))
Barry Warsawdea4a291996-07-03 22:59:12 +00002091 (forward-line 1)))
2092 (py-shift-region start end (- (prefix-numeric-value
2093 (or count py-indent-offset))))
2094 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002095
2096(defun py-shift-region-right (start end &optional count)
2097 "Shift region of Python code to the right.
2098The lines from the line containing the start of the current region up
2099to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002100shifted to the right, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002101
2102If a prefix argument is given, the region is instead shifted by that
Barry Warsawdea4a291996-07-03 22:59:12 +00002103many columns. With no active region, indent only the current line."
2104 (interactive
2105 (let ((p (point))
2106 (m (mark))
2107 (arg current-prefix-arg))
2108 (if m
2109 (list (min p m) (max p m) arg)
2110 (list p (save-excursion (forward-line 1) (point)) arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002111 (py-shift-region start end (prefix-numeric-value
Barry Warsawdea4a291996-07-03 22:59:12 +00002112 (or count py-indent-offset)))
2113 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002114
2115(defun py-indent-region (start end &optional indent-offset)
2116 "Reindent a region of Python code.
Barry Warsaw867a32a1996-03-07 18:30:26 +00002117
Barry Warsaw7ae77681994-12-12 20:38:05 +00002118The lines from the line containing the start of the current region up
2119to (but not including) the line containing the end of the region are
2120reindented. If the first line of the region has a non-whitespace
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002121character in the first column, the first line is left alone and the
2122rest of the region is reindented with respect to it. Else the entire
Barry Warsaw867a32a1996-03-07 18:30:26 +00002123region is reindented with respect to the (closest code or indenting
2124comment) statement immediately preceding the region.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002125
2126This is useful when code blocks are moved or yanked, when enclosing
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002127control structures are introduced or removed, or to reformat code
2128using a new value for the indentation offset.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002129
2130If a numeric prefix argument is given, it will be used as the value of
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002131the indentation offset. Else the value of `py-indent-offset' will be
Barry Warsaw7ae77681994-12-12 20:38:05 +00002132used.
2133
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002134Warning: The region must be consistently indented before this function
Barry Warsaw7ae77681994-12-12 20:38:05 +00002135is called! This function does not compute proper indentation from
2136scratch (that's impossible in Python), it merely adjusts the existing
2137indentation to be correct in context.
2138
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002139Warning: This function really has no idea what to do with
2140non-indenting comment lines, and shifts them as if they were indenting
2141comment lines. Fixing this appears to require telepathy.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002142
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002143Special cases: whitespace is deleted from blank lines; continuation
2144lines are shifted by the same amount their initial line was shifted,
2145in order to preserve their relative indentation with respect to their
Barry Warsaw7ae77681994-12-12 20:38:05 +00002146initial line; and comment lines beginning in column 1 are ignored."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002147 (interactive "*r\nP") ; region; raw prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002148 (save-excursion
2149 (goto-char end) (beginning-of-line) (setq end (point-marker))
2150 (goto-char start) (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002151 (let ((py-indent-offset (prefix-numeric-value
2152 (or indent-offset py-indent-offset)))
2153 (indents '(-1)) ; stack of active indent levels
2154 (target-column 0) ; column to which to indent
2155 (base-shifted-by 0) ; amount last base line was shifted
2156 (indent-base (if (looking-at "[ \t\n]")
Barry Warsaw7cb505c1996-10-23 20:44:59 +00002157 (py-compute-indentation t)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002158 0))
2159 ci)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002160 (while (< (point) end)
2161 (setq ci (current-indentation))
2162 ;; figure out appropriate target column
2163 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002164 ((or (eq (following-char) ?#) ; comment in column 1
2165 (looking-at "[ \t]*$")) ; entirely blank
2166 (setq target-column 0))
2167 ((py-continuation-line-p) ; shift relative to base line
2168 (setq target-column (+ ci base-shifted-by)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002169 (t ; new base line
2170 (if (> ci (car indents)) ; going deeper; push it
2171 (setq indents (cons ci indents))
2172 ;; else we should have seen this indent before
2173 (setq indents (memq ci indents)) ; pop deeper indents
2174 (if (null indents)
2175 (error "Bad indentation in region, at line %d"
2176 (save-restriction
2177 (widen)
2178 (1+ (count-lines 1 (point)))))))
2179 (setq target-column (+ indent-base
2180 (* py-indent-offset
2181 (- (length indents) 2))))
2182 (setq base-shifted-by (- target-column ci))))
2183 ;; shift as needed
2184 (if (/= ci target-column)
2185 (progn
2186 (delete-horizontal-space)
2187 (indent-to target-column)))
2188 (forward-line 1))))
2189 (set-marker end nil))
2190
Barry Warsawa7891711996-08-01 15:53:09 +00002191(defun py-comment-region (beg end &optional arg)
2192 "Like `comment-region' but uses double hash (`#') comment starter."
2193 (interactive "r\nP")
Barry Warsaw3fcaf611996-08-01 20:11:51 +00002194 (let ((comment-start py-block-comment-prefix))
Barry Warsawa7891711996-08-01 15:53:09 +00002195 (comment-region beg end arg)))
2196
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002197
2198;; Functions for moving point
Barry Warsaw7ae77681994-12-12 20:38:05 +00002199(defun py-previous-statement (count)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002200 "Go to the start of the COUNTth preceding Python statement.
2201By default, goes to the previous statement. If there is no such
2202statement, goes to the first statement. Return count of statements
2203left to move. `Statements' do not include blank, comment, or
2204continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002205 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002206 (if (< count 0) (py-next-statement (- count))
2207 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002208 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002209 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002210 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002211 (> count 0)
2212 (zerop (forward-line -1))
2213 (py-goto-statement-at-or-above))
2214 (setq count (1- count)))
2215 (if (> count 0) (goto-char start)))
2216 count))
2217
2218(defun py-next-statement (count)
2219 "Go to the start of next Python statement.
2220If the statement at point is the i'th Python statement, goes to the
2221start of statement i+COUNT. If there is no such statement, goes to the
2222last statement. Returns count of statements left to move. `Statements'
2223do not include blank, comment, or continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002224 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002225 (if (< count 0) (py-previous-statement (- count))
2226 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002227 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002228 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002229 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002230 (> count 0)
2231 (py-goto-statement-below))
2232 (setq count (1- count)))
2233 (if (> count 0) (goto-char start)))
2234 count))
2235
2236(defun py-goto-block-up (&optional nomark)
2237 "Move up to start of current block.
2238Go to the statement that starts the smallest enclosing block; roughly
2239speaking, this will be the closest preceding statement that ends with a
2240colon and is indented less than the statement you started on. If
2241successful, also sets the mark to the starting point.
2242
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002243`\\[py-mark-block]' can be used afterward to mark the whole code
2244block, if desired.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002245
2246If called from a program, the mark will not be set if optional argument
2247NOMARK is not nil."
2248 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002249 (let ((start (point))
2250 (found nil)
2251 initial-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002252 (py-goto-initial-line)
2253 ;; if on blank or non-indenting comment line, use the preceding stmt
2254 (if (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
2255 (progn
2256 (py-goto-statement-at-or-above)
2257 (setq found (py-statement-opens-block-p))))
2258 ;; search back for colon line indented less
2259 (setq initial-indent (current-indentation))
2260 (if (zerop initial-indent)
2261 ;; force fast exit
2262 (goto-char (point-min)))
2263 (while (not (or found (bobp)))
2264 (setq found
2265 (and
2266 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2267 (or (py-goto-initial-line) t) ; always true -- side effect
2268 (< (current-indentation) initial-indent)
2269 (py-statement-opens-block-p))))
2270 (if found
2271 (progn
2272 (or nomark (push-mark start))
2273 (back-to-indentation))
2274 (goto-char start)
2275 (error "Enclosing block not found"))))
2276
Barry Warsawab0e86c1998-05-19 15:31:46 +00002277(defun py-beginning-of-def-or-class (&optional class count)
2278 "Move point to start of `def' or `class'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002279
2280Searches back for the closest preceding `def'. If you supply a prefix
Barry Warsawab0e86c1998-05-19 15:31:46 +00002281arg, looks for a `class' instead. The docs below assume the `def'
2282case; just substitute `class' for `def' for the other case.
Barry Warsaw7c29b231998-07-07 17:45:38 +00002283Programmatically, if CLASS is `either', then moves to either `class'
2284or `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002285
Barry Warsawab0e86c1998-05-19 15:31:46 +00002286When second optional argument is given programmatically, move to the
2287COUNTth start of `def'.
2288
2289If point is in a `def' statement already, and after the `d', simply
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002290moves point to the start of the statement.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002291
Barry Warsawab0e86c1998-05-19 15:31:46 +00002292Otherwise (i.e. when point is not in a `def' statement, or at or
2293before the `d' of a `def' statement), searches for the closest
2294preceding `def' statement, and leaves point at its start. If no such
2295statement can be found, leaves point at the start of the buffer.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002296
Barry Warsawab0e86c1998-05-19 15:31:46 +00002297Returns t iff a `def' statement is found by these rules.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002298
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002299Note that doing this command repeatedly will take you closer to the
2300start of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002301
Barry Warsaw7c29b231998-07-07 17:45:38 +00002302To mark the current `def', see `\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002303 (interactive "P") ; raw prefix arg
Barry Warsaw6839d3a1998-10-28 00:10:45 +00002304 (setq count (or count 1))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002305 (let ((at-or-before-p (<= (current-column) (current-indentation)))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002306 (start-of-line (goto-char (py-point 'bol)))
2307 (start-of-stmt (goto-char (py-point 'bos)))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002308 (start-re (cond ((eq class 'either) "^[ \t]*\\(class\\|def\\)\\>")
2309 (class "^[ \t]*class\\>")
2310 (t "^[ \t]*def\\>")))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002311 )
2312 ;; searching backward
2313 (if (and (< 0 count)
2314 (or (/= start-of-stmt start-of-line)
2315 (not at-or-before-p)))
2316 (end-of-line))
2317 ;; search forward
2318 (if (and (> 0 count)
2319 (zerop (current-column))
2320 (looking-at start-re))
2321 (end-of-line))
Barry Warsawddc46961999-07-27 21:40:02 +00002322 (if (re-search-backward start-re nil 'move count)
2323 (goto-char (match-beginning 0)))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002324
Barry Warsawab0e86c1998-05-19 15:31:46 +00002325;; Backwards compatibility
2326(defalias 'beginning-of-python-def-or-class 'py-beginning-of-def-or-class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002327
Barry Warsawab0e86c1998-05-19 15:31:46 +00002328(defun py-end-of-def-or-class (&optional class count)
2329 "Move point beyond end of `def' or `class' body.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002330
Barry Warsawab0e86c1998-05-19 15:31:46 +00002331By default, looks for an appropriate `def'. If you supply a prefix
2332arg, looks for a `class' instead. The docs below assume the `def'
2333case; just substitute `class' for `def' for the other case.
Barry Warsaw7c29b231998-07-07 17:45:38 +00002334Programmatically, if CLASS is `either', then moves to either `class'
2335or `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002336
Barry Warsawab0e86c1998-05-19 15:31:46 +00002337When second optional argument is given programmatically, move to the
2338COUNTth end of `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002339
Barry Warsawab0e86c1998-05-19 15:31:46 +00002340If point is in a `def' statement already, this is the `def' we use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002341
Barry Warsawab0e86c1998-05-19 15:31:46 +00002342Else, if the `def' found by `\\[py-beginning-of-def-or-class]'
2343contains the statement you started on, that's the `def' we use.
2344
2345Otherwise, we search forward for the closest following `def', and use that.
2346
2347If a `def' can be found by these rules, point is moved to the start of
2348the line immediately following the `def' block, and the position of the
2349start of the `def' is returned.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002350
2351Else point is moved to the end of the buffer, and nil is returned.
2352
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002353Note that doing this command repeatedly will take you closer to the
2354end of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002355
Barry Warsaw7c29b231998-07-07 17:45:38 +00002356To mark the current `def', see `\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002357 (interactive "P") ; raw prefix arg
Barry Warsawab0e86c1998-05-19 15:31:46 +00002358 (if (and count (/= count 1))
2359 (py-beginning-of-def-or-class (- 1 count)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002360 (let ((start (progn (py-goto-initial-line) (point)))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002361 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2362 (class "class")
2363 (t "def")))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002364 (state 'not-found))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002365 ;; move point to start of appropriate def/class
2366 (if (looking-at (concat "[ \t]*" which "\\>")) ; already on one
2367 (setq state 'at-beginning)
Barry Warsawab0e86c1998-05-19 15:31:46 +00002368 ;; else see if py-beginning-of-def-or-class hits container
2369 (if (and (py-beginning-of-def-or-class class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002370 (progn (py-goto-beyond-block)
2371 (> (point) start)))
2372 (setq state 'at-end)
2373 ;; else search forward
2374 (goto-char start)
2375 (if (re-search-forward (concat "^[ \t]*" which "\\>") nil 'move)
2376 (progn (setq state 'at-beginning)
2377 (beginning-of-line)))))
2378 (cond
2379 ((eq state 'at-beginning) (py-goto-beyond-block) t)
2380 ((eq state 'at-end) t)
2381 ((eq state 'not-found) nil)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002382 (t (error "Internal error in `py-end-of-def-or-class'")))))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002383
2384;; Backwards compabitility
Barry Warsaw820273d1998-05-19 15:54:45 +00002385(defalias 'end-of-python-def-or-class 'py-end-of-def-or-class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002386
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002387
2388;; Functions for marking regions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002389(defun py-mark-block (&optional extend just-move)
2390 "Mark following block of lines. With prefix arg, mark structure.
2391Easier to use than explain. It sets the region to an `interesting'
2392block of succeeding lines. If point is on a blank line, it goes down to
2393the next non-blank line. That will be the start of the region. The end
2394of the region depends on the kind of line at the start:
2395
2396 - If a comment, the region will include all succeeding comment lines up
2397 to (but not including) the next non-comment line (if any).
2398
2399 - Else if a prefix arg is given, and the line begins one of these
2400 structures:
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002401
2402 if elif else try except finally for while def class
2403
Barry Warsaw7ae77681994-12-12 20:38:05 +00002404 the region will be set to the body of the structure, including
2405 following blocks that `belong' to it, but excluding trailing blank
2406 and comment lines. E.g., if on a `try' statement, the `try' block
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002407 and all (if any) of the following `except' and `finally' blocks
2408 that belong to the `try' structure will be in the region. Ditto
2409 for if/elif/else, for/else and while/else structures, and (a bit
2410 degenerate, since they're always one-block structures) def and
2411 class blocks.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002412
2413 - Else if no prefix argument is given, and the line begins a Python
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002414 block (see list above), and the block is not a `one-liner' (i.e.,
2415 the statement ends with a colon, not with code), the region will
2416 include all succeeding lines up to (but not including) the next
2417 code statement (if any) that's indented no more than the starting
2418 line, except that trailing blank and comment lines are excluded.
2419 E.g., if the starting line begins a multi-statement `def'
2420 structure, the region will be set to the full function definition,
2421 but without any trailing `noise' lines.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002422
2423 - Else the region will include all succeeding lines up to (but not
2424 including) the next blank line, or code or indenting-comment line
2425 indented strictly less than the starting line. Trailing indenting
2426 comment lines are included in this case, but not trailing blank
2427 lines.
2428
2429A msg identifying the location of the mark is displayed in the echo
2430area; or do `\\[exchange-point-and-mark]' to flip down to the end.
2431
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002432If called from a program, optional argument EXTEND plays the role of
2433the prefix arg, and if optional argument JUST-MOVE is not nil, just
2434moves to the end of the block (& does not set mark or display a msg)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002435 (interactive "P") ; raw prefix arg
2436 (py-goto-initial-line)
2437 ;; skip over blank lines
2438 (while (and
2439 (looking-at "[ \t]*$") ; while blank line
2440 (not (eobp))) ; & somewhere to go
2441 (forward-line 1))
2442 (if (eobp)
2443 (error "Hit end of buffer without finding a non-blank stmt"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002444 (let ((initial-pos (point))
2445 (initial-indent (current-indentation))
2446 last-pos ; position of last stmt in region
2447 (followers
2448 '((if elif else) (elif elif else) (else)
2449 (try except finally) (except except) (finally)
2450 (for else) (while else)
2451 (def) (class) ) )
2452 first-symbol next-symbol)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002453
2454 (cond
2455 ;; if comment line, suck up the following comment lines
2456 ((looking-at "[ \t]*#")
2457 (re-search-forward "^[ \t]*[^ \t#]" nil 'move) ; look for non-comment
2458 (re-search-backward "^[ \t]*#") ; and back to last comment in block
2459 (setq last-pos (point)))
2460
2461 ;; else if line is a block line and EXTEND given, suck up
2462 ;; the whole structure
2463 ((and extend
2464 (setq first-symbol (py-suck-up-first-keyword) )
2465 (assq first-symbol followers))
2466 (while (and
2467 (or (py-goto-beyond-block) t) ; side effect
2468 (forward-line -1) ; side effect
2469 (setq last-pos (point)) ; side effect
2470 (py-goto-statement-below)
2471 (= (current-indentation) initial-indent)
2472 (setq next-symbol (py-suck-up-first-keyword))
2473 (memq next-symbol (cdr (assq first-symbol followers))))
2474 (setq first-symbol next-symbol)))
2475
2476 ;; else if line *opens* a block, search for next stmt indented <=
2477 ((py-statement-opens-block-p)
2478 (while (and
2479 (setq last-pos (point)) ; always true -- side effect
2480 (py-goto-statement-below)
2481 (> (current-indentation) initial-indent))
2482 nil))
2483
2484 ;; else plain code line; stop at next blank line, or stmt or
2485 ;; indenting comment line indented <
2486 (t
2487 (while (and
2488 (setq last-pos (point)) ; always true -- side effect
2489 (or (py-goto-beyond-final-line) t)
2490 (not (looking-at "[ \t]*$")) ; stop at blank line
2491 (or
2492 (>= (current-indentation) initial-indent)
2493 (looking-at "[ \t]*#[^ \t\n]"))) ; ignore non-indenting #
2494 nil)))
2495
2496 ;; skip to end of last stmt
2497 (goto-char last-pos)
2498 (py-goto-beyond-final-line)
2499
2500 ;; set mark & display
2501 (if just-move
2502 () ; just return
2503 (push-mark (point) 'no-msg)
2504 (forward-line -1)
2505 (message "Mark set after: %s" (py-suck-up-leading-text))
2506 (goto-char initial-pos))))
2507
Barry Warsaw2518c671997-11-05 00:51:08 +00002508(defun py-mark-def-or-class (&optional class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002509 "Set region to body of def (or class, with prefix arg) enclosing point.
2510Pushes the current mark, then point, on the mark ring (all language
2511modes do this, but although it's handy it's never documented ...).
2512
2513In most Emacs language modes, this function bears at least a
Barry Warsawab0e86c1998-05-19 15:31:46 +00002514hallucinogenic resemblance to `\\[py-end-of-def-or-class]' and
2515`\\[py-beginning-of-def-or-class]'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002516
2517And in earlier versions of Python mode, all 3 were tightly connected.
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002518Turned out that was more confusing than useful: the `goto start' and
2519`goto end' commands are usually used to search through a file, and
2520people expect them to act a lot like `search backward' and `search
2521forward' string-search commands. But because Python `def' and `class'
2522can nest to arbitrary levels, finding the smallest def containing
2523point cannot be done via a simple backward search: the def containing
2524point may not be the closest preceding def, or even the closest
2525preceding def that's indented less. The fancy algorithm required is
2526appropriate for the usual uses of this `mark' command, but not for the
2527`goto' variations.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002528
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002529So the def marked by this command may not be the one either of the
2530`goto' commands find: If point is on a blank or non-indenting comment
2531line, moves back to start of the closest preceding code statement or
2532indenting comment line. If this is a `def' statement, that's the def
2533we use. Else searches for the smallest enclosing `def' block and uses
2534that. Else signals an error.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002535
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002536When an enclosing def is found: The mark is left immediately beyond
2537the last line of the def block. Point is left at the start of the
2538def, except that: if the def is preceded by a number of comment lines
2539followed by (at most) one optional blank line, point is left at the
2540start of the comments; else if the def is preceded by a blank line,
2541point is left at its start.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002542
2543The intent is to mark the containing def/class and its associated
2544documentation, to make moving and duplicating functions and classes
2545pleasant."
2546 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002547 (let ((start (point))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002548 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2549 (class "class")
2550 (t "def"))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002551 (push-mark start)
2552 (if (not (py-go-up-tree-to-keyword which))
2553 (progn (goto-char start)
Barry Warsaw7c29b231998-07-07 17:45:38 +00002554 (error "Enclosing %s not found"
2555 (if (eq class 'either)
2556 "def or class"
2557 which)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002558 ;; else enclosing def/class found
2559 (setq start (point))
2560 (py-goto-beyond-block)
2561 (push-mark (point))
2562 (goto-char start)
2563 (if (zerop (forward-line -1)) ; if there is a preceding line
2564 (progn
2565 (if (looking-at "[ \t]*$") ; it's blank
2566 (setq start (point)) ; so reset start point
2567 (goto-char start)) ; else try again
2568 (if (zerop (forward-line -1))
2569 (if (looking-at "[ \t]*#") ; a comment
2570 ;; look back for non-comment line
2571 ;; tricky: note that the regexp matches a blank
2572 ;; line, cuz \n is in the 2nd character class
2573 (and
2574 (re-search-backward "^[ \t]*[^ \t#]" nil 'move)
2575 (forward-line 1))
2576 ;; no comment, so go back
Barry Warsaw4da6bd51997-11-26 06:00:26 +00002577 (goto-char start)))))))
2578 (exchange-point-and-mark)
2579 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002580
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002581;; ripped from cc-mode
2582(defun py-forward-into-nomenclature (&optional arg)
2583 "Move forward to end of a nomenclature section or word.
Barry Warsaw41a05c71998-08-10 16:33:12 +00002584With \\[universal-argument] (programmatically, optional argument ARG),
2585do it that many times.
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002586
2587A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2588 (interactive "p")
2589 (let ((case-fold-search nil))
2590 (if (> arg 0)
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002591 (re-search-forward
2592 "\\(\\W\\|[_]\\)*\\([A-Z]*[a-z0-9]*\\)"
2593 (point-max) t arg)
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002594 (while (and (< arg 0)
2595 (re-search-backward
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002596 "\\(\\W\\|[a-z0-9]\\)[A-Z]+\\|\\(\\W\\|[_]\\)\\w+"
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002597 (point-min) 0))
2598 (forward-char 1)
2599 (setq arg (1+ arg)))))
2600 (py-keep-region-active))
2601
2602(defun py-backward-into-nomenclature (&optional arg)
2603 "Move backward to beginning of a nomenclature section or word.
2604With optional ARG, move that many times. If ARG is negative, move
2605forward.
2606
2607A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2608 (interactive "p")
2609 (py-forward-into-nomenclature (- arg))
2610 (py-keep-region-active))
2611
2612
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002613
Barry Warsaw4f577d22001-04-11 20:23:17 +00002614;; pdbtrack functions
2615(defun py-pdbtrack-toggle-stack-tracking (arg)
2616 (interactive "P")
2617 (if (not (get-buffer-process (current-buffer)))
2618 (error "No process associated with buffer '%s'" (current-buffer)))
2619 ;; missing or 0 is toggle, >0 turn on, <0 turn off
2620 (if (or (not arg)
2621 (zerop (setq arg (prefix-numeric-value arg))))
2622 (setq py-pdbtrack-do-tracking-p (not py-pdbtrack-do-tracking-p))
2623 (setq py-pdbtrack-do-tracking-p (> arg 0)))
2624 (message "%sabled Python's pdbtrack"
2625 (if py-pdbtrack-do-tracking-p "En" "Dis")))
2626
2627(defun turn-on-pdbtrack ()
2628 (interactive)
2629 (py-pdbtrack-toggle-stack-tracking 1))
2630
2631(defun turn-off-pdbtrack ()
2632 (interactive)
2633 (py-pdbtrack-toggle-stack-tracking 0))
2634
2635
2636
Barry Warsaw29a90f02002-04-22 21:48:20 +00002637;; Pychecker
2638(defun py-pychecker-run (command)
2639 "*Run pychecker (default on the file currently visited)."
2640 (interactive
2641 (let ((default
2642 (format "%s %s %s" py-pychecker-command
2643 (mapconcat 'identity py-pychecker-command-args " ")
2644 (buffer-file-name))))
2645
2646 (list
2647 (read-shell-command "Run pychecker like this: "
2648 default
2649 py-pychecker-history))))
2650 (save-some-buffers (not py-ask-about-save) nil)
2651 (compile command))
2652
2653
2654
2655;; pydoc commands. The guts of this function is stolen from XEmacs's
2656;; symbol-near-point, but without the useless regexp-quote call on the
2657;; results, nor the interactive bit. Also, we've added the temporary
2658;; syntax table setting, which Skip originally had broken out into a
2659;; separate function. Note that Emacs doesn't have the original
2660;; function.
Barry Warsawa7cc43b2002-04-22 17:15:19 +00002661(defun py-symbol-near-point ()
2662 "Return the first textual item to the nearest point."
2663 ;; alg stolen from etag.el
2664 (save-excursion
2665 (with-syntax-table py-dotted-expression-syntax-table
2666 (if (or (bobp) (not (memq (char-syntax (char-before)) '(?w ?_))))
2667 (while (not (looking-at "\\sw\\|\\s_\\|\\'"))
2668 (forward-char 1)))
2669 (while (looking-at "\\sw\\|\\s_")
2670 (forward-char 1))
2671 (if (re-search-backward "\\sw\\|\\s_" nil t)
2672 (progn (forward-char 1)
2673 (buffer-substring (point)
2674 (progn (forward-sexp -1)
2675 (while (looking-at "\\s'")
2676 (forward-char 1))
2677 (point))))
2678 nil))))
2679
2680(defun py-help-at-point ()
2681 "Get help from Python based on the symbol nearest point."
2682 (interactive)
2683 (let* ((sym (py-symbol-near-point))
2684 (base (substring sym 0 (or (search "." sym :from-end t) 0)))
2685 cmd)
2686 (if (not (equal base ""))
2687 (setq cmd (concat "import " base "\n")))
2688 (setq cmd (concat "import pydoc\n"
2689 cmd
2690 "try: pydoc.help(" sym ")\n"
2691 "except: print 'No help available on:', \"" sym "\""))
2692 (message cmd)
2693 (py-execute-string cmd)))
2694
2695
2696
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002697;; Documentation functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002698
2699;; dump the long form of the mode blurb; does the usual doc escapes,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002700;; plus lines of the form ^[vc]:name$ to suck variable & command docs
2701;; out of the right places, along with the keys they're on & current
2702;; values
Barry Warsaw7ae77681994-12-12 20:38:05 +00002703(defun py-dump-help-string (str)
2704 (with-output-to-temp-buffer "*Help*"
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002705 (let ((locals (buffer-local-variables))
2706 funckind funcname func funcdoc
2707 (start 0) mstart end
2708 keys )
Barry Warsaw7ae77681994-12-12 20:38:05 +00002709 (while (string-match "^%\\([vc]\\):\\(.+\\)\n" str start)
2710 (setq mstart (match-beginning 0) end (match-end 0)
2711 funckind (substring str (match-beginning 1) (match-end 1))
2712 funcname (substring str (match-beginning 2) (match-end 2))
2713 func (intern funcname))
2714 (princ (substitute-command-keys (substring str start mstart)))
2715 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002716 ((equal funckind "c") ; command
2717 (setq funcdoc (documentation func)
2718 keys (concat
2719 "Key(s): "
2720 (mapconcat 'key-description
2721 (where-is-internal func py-mode-map)
2722 ", "))))
2723 ((equal funckind "v") ; variable
Barry Warsaw604cefa1996-09-03 18:17:04 +00002724 (setq funcdoc (documentation-property func 'variable-documentation)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002725 keys (if (assq func locals)
2726 (concat
2727 "Local/Global values: "
2728 (prin1-to-string (symbol-value func))
2729 " / "
2730 (prin1-to-string (default-value func)))
2731 (concat
2732 "Value: "
2733 (prin1-to-string (symbol-value func))))))
2734 (t ; unexpected
2735 (error "Error in py-dump-help-string, tag `%s'" funckind)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002736 (princ (format "\n-> %s:\t%s\t%s\n\n"
2737 (if (equal funckind "c") "Command" "Variable")
2738 funcname keys))
2739 (princ funcdoc)
2740 (terpri)
2741 (setq start end))
2742 (princ (substitute-command-keys (substring str start))))
2743 (print-help-return-message)))
2744
2745(defun py-describe-mode ()
2746 "Dump long form of Python-mode docs."
2747 (interactive)
2748 (py-dump-help-string "Major mode for editing Python files.
2749Knows about Python indentation, tokens, comments and continuation lines.
2750Paragraphs are separated by blank lines only.
2751
2752Major sections below begin with the string `@'; specific function and
2753variable docs begin with `->'.
2754
2755@EXECUTING PYTHON CODE
2756
Barry Warsaw820273d1998-05-19 15:54:45 +00002757\\[py-execute-import-or-reload]\timports or reloads the file in the Python interpreter
Barry Warsaw7ae77681994-12-12 20:38:05 +00002758\\[py-execute-buffer]\tsends the entire buffer to the Python interpreter
2759\\[py-execute-region]\tsends the current region
Barry Warsaw820273d1998-05-19 15:54:45 +00002760\\[py-execute-def-or-class]\tsends the current function or class definition
2761\\[py-execute-string]\tsends an arbitrary string
Barry Warsaw7ae77681994-12-12 20:38:05 +00002762\\[py-shell]\tstarts a Python interpreter window; this will be used by
Barry Warsaw820273d1998-05-19 15:54:45 +00002763\tsubsequent Python execution commands
2764%c:py-execute-import-or-reload
Barry Warsaw7ae77681994-12-12 20:38:05 +00002765%c:py-execute-buffer
2766%c:py-execute-region
Barry Warsaw820273d1998-05-19 15:54:45 +00002767%c:py-execute-def-or-class
2768%c:py-execute-string
Barry Warsaw7ae77681994-12-12 20:38:05 +00002769%c:py-shell
2770
2771@VARIABLES
2772
2773py-indent-offset\tindentation increment
Barry Warsaw42f707f1996-07-29 21:05:05 +00002774py-block-comment-prefix\tcomment string used by comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00002775
2776py-python-command\tshell command to invoke Python interpreter
Barry Warsaw7ae77681994-12-12 20:38:05 +00002777py-temp-directory\tdirectory used for temp files (if needed)
2778
2779py-beep-if-tab-change\tring the bell if tab-width is changed
2780%v:py-indent-offset
2781%v:py-block-comment-prefix
2782%v:py-python-command
Barry Warsaw7ae77681994-12-12 20:38:05 +00002783%v:py-temp-directory
2784%v:py-beep-if-tab-change
2785
2786@KINDS OF LINES
2787
2788Each physical line in the file is either a `continuation line' (the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002789preceding line ends with a backslash that's not part of a comment, or
2790the paren/bracket/brace nesting level at the start of the line is
2791non-zero, or both) or an `initial line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00002792
2793An initial line is in turn a `blank line' (contains nothing except
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002794possibly blanks or tabs), a `comment line' (leftmost non-blank
2795character is `#'), or a `code line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00002796
2797Comment Lines
2798
2799Although all comment lines are treated alike by Python, Python mode
2800recognizes two kinds that act differently with respect to indentation.
2801
2802An `indenting comment line' is a comment line with a blank, tab or
2803nothing after the initial `#'. The indentation commands (see below)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002804treat these exactly as if they were code lines: a line following an
Barry Warsaw7ae77681994-12-12 20:38:05 +00002805indenting comment line will be indented like the comment line. All
2806other comment lines (those with a non-whitespace character immediately
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002807following the initial `#') are `non-indenting comment lines', and
2808their indentation is ignored by the indentation commands.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002809
2810Indenting comment lines are by far the usual case, and should be used
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002811whenever possible. Non-indenting comment lines are useful in cases
2812like these:
Barry Warsaw7ae77681994-12-12 20:38:05 +00002813
2814\ta = b # a very wordy single-line comment that ends up being
2815\t #... continued onto another line
2816
2817\tif a == b:
2818##\t\tprint 'panic!' # old code we've `commented out'
2819\t\treturn a
2820
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002821Since the `#...' and `##' comment lines have a non-whitespace
2822character following the initial `#', Python mode ignores them when
2823computing the proper indentation for the next line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002824
2825Continuation Lines and Statements
2826
2827The Python-mode commands generally work on statements instead of on
2828individual lines, where a `statement' is a comment or blank line, or a
2829code line and all of its following continuation lines (if any)
2830considered as a single logical unit. The commands in this mode
2831generally (when it makes sense) automatically move to the start of the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002832statement containing point, even if point happens to be in the middle
2833of some continuation line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002834
2835
2836@INDENTATION
2837
2838Primarily for entering new code:
2839\t\\[indent-for-tab-command]\t indent line appropriately
2840\t\\[py-newline-and-indent]\t insert newline, then indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00002841\t\\[py-electric-backspace]\t reduce indentation, or delete single character
Barry Warsaw7ae77681994-12-12 20:38:05 +00002842
2843Primarily for reindenting existing code:
2844\t\\[py-guess-indent-offset]\t guess py-indent-offset from file content; change locally
2845\t\\[universal-argument] \\[py-guess-indent-offset]\t ditto, but change globally
2846
2847\t\\[py-indent-region]\t reindent region to match its context
2848\t\\[py-shift-region-left]\t shift region left by py-indent-offset
2849\t\\[py-shift-region-right]\t shift region right by py-indent-offset
2850
2851Unlike most programming languages, Python uses indentation, and only
2852indentation, to specify block structure. Hence the indentation supplied
2853automatically by Python-mode is just an educated guess: only you know
2854the block structure you intend, so only you can supply correct
2855indentation.
2856
2857The \\[indent-for-tab-command] and \\[py-newline-and-indent] keys try to suggest plausible indentation, based on
2858the indentation of preceding statements. E.g., assuming
2859py-indent-offset is 4, after you enter
2860\tif a > 0: \\[py-newline-and-indent]
2861the cursor will be moved to the position of the `_' (_ is not a
2862character in the file, it's just used here to indicate the location of
2863the cursor):
2864\tif a > 0:
2865\t _
2866If you then enter `c = d' \\[py-newline-and-indent], the cursor will move
2867to
2868\tif a > 0:
2869\t c = d
2870\t _
2871Python-mode cannot know whether that's what you intended, or whether
2872\tif a > 0:
2873\t c = d
2874\t_
2875was your intent. In general, Python-mode either reproduces the
2876indentation of the (closest code or indenting-comment) preceding
2877statement, or adds an extra py-indent-offset blanks if the preceding
2878statement has `:' as its last significant (non-whitespace and non-
2879comment) character. If the suggested indentation is too much, use
Barry Warsaw27ee1151997-12-03 05:03:44 +00002880\\[py-electric-backspace] to reduce it.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002881
2882Continuation lines are given extra indentation. If you don't like the
2883suggested indentation, change it to something you do like, and Python-
2884mode will strive to indent later lines of the statement in the same way.
2885
2886If a line is a continuation line by virtue of being in an unclosed
2887paren/bracket/brace structure (`list', for short), the suggested
2888indentation depends on whether the current line contains the first item
2889in the list. If it does, it's indented py-indent-offset columns beyond
2890the indentation of the line containing the open bracket. If you don't
2891like that, change it by hand. The remaining items in the list will mimic
2892whatever indentation you give to the first item.
2893
2894If a line is a continuation line because the line preceding it ends with
2895a backslash, the third and following lines of the statement inherit their
2896indentation from the line preceding them. The indentation of the second
2897line in the statement depends on the form of the first (base) line: if
2898the base line is an assignment statement with anything more interesting
2899than the backslash following the leftmost assigning `=', the second line
2900is indented two columns beyond that `='. Else it's indented to two
2901columns beyond the leftmost solid chunk of non-whitespace characters on
2902the base line.
2903
2904Warning: indent-region should not normally be used! It calls \\[indent-for-tab-command]
2905repeatedly, and as explained above, \\[indent-for-tab-command] can't guess the block
2906structure you intend.
2907%c:indent-for-tab-command
2908%c:py-newline-and-indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00002909%c:py-electric-backspace
Barry Warsaw7ae77681994-12-12 20:38:05 +00002910
2911
2912The next function may be handy when editing code you didn't write:
2913%c:py-guess-indent-offset
2914
2915
2916The remaining `indent' functions apply to a region of Python code. They
2917assume the block structure (equals indentation, in Python) of the region
2918is correct, and alter the indentation in various ways while preserving
2919the block structure:
2920%c:py-indent-region
2921%c:py-shift-region-left
2922%c:py-shift-region-right
2923
2924@MARKING & MANIPULATING REGIONS OF CODE
2925
2926\\[py-mark-block]\t mark block of lines
Barry Warsaw2518c671997-11-05 00:51:08 +00002927\\[py-mark-def-or-class]\t mark smallest enclosing def
2928\\[universal-argument] \\[py-mark-def-or-class]\t mark smallest enclosing class
Barry Warsaw42f707f1996-07-29 21:05:05 +00002929\\[comment-region]\t comment out region of code
2930\\[universal-argument] \\[comment-region]\t uncomment region of code
Barry Warsaw7ae77681994-12-12 20:38:05 +00002931%c:py-mark-block
Barry Warsaw2518c671997-11-05 00:51:08 +00002932%c:py-mark-def-or-class
Barry Warsaw42f707f1996-07-29 21:05:05 +00002933%c:comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00002934
2935@MOVING POINT
2936
2937\\[py-previous-statement]\t move to statement preceding point
2938\\[py-next-statement]\t move to statement following point
2939\\[py-goto-block-up]\t move up to start of current block
Barry Warsawab0e86c1998-05-19 15:31:46 +00002940\\[py-beginning-of-def-or-class]\t move to start of def
2941\\[universal-argument] \\[py-beginning-of-def-or-class]\t move to start of class
2942\\[py-end-of-def-or-class]\t move to end of def
2943\\[universal-argument] \\[py-end-of-def-or-class]\t move to end of class
Barry Warsaw7ae77681994-12-12 20:38:05 +00002944
2945The first two move to one statement beyond the statement that contains
2946point. A numeric prefix argument tells them to move that many
2947statements instead. Blank lines, comment lines, and continuation lines
2948do not count as `statements' for these commands. So, e.g., you can go
2949to the first code statement in a file by entering
2950\t\\[beginning-of-buffer]\t to move to the top of the file
2951\t\\[py-next-statement]\t to skip over initial comments and blank lines
2952Or do `\\[py-previous-statement]' with a huge prefix argument.
2953%c:py-previous-statement
2954%c:py-next-statement
2955%c:py-goto-block-up
Barry Warsawab0e86c1998-05-19 15:31:46 +00002956%c:py-beginning-of-def-or-class
2957%c:py-end-of-def-or-class
Barry Warsaw7ae77681994-12-12 20:38:05 +00002958
2959@LITTLE-KNOWN EMACS COMMANDS PARTICULARLY USEFUL IN PYTHON MODE
2960
2961`\\[indent-new-comment-line]' is handy for entering a multi-line comment.
2962
2963`\\[set-selective-display]' with a `small' prefix arg is ideally suited for viewing the
2964overall class and def structure of a module.
2965
2966`\\[back-to-indentation]' moves point to a line's first non-blank character.
2967
2968`\\[indent-relative]' is handy for creating odd indentation.
2969
2970@OTHER EMACS HINTS
2971
2972If you don't like the default value of a variable, change its value to
2973whatever you do like by putting a `setq' line in your .emacs file.
2974E.g., to set the indentation increment to 4, put this line in your
2975.emacs:
2976\t(setq py-indent-offset 4)
2977To see the value of a variable, do `\\[describe-variable]' and enter the variable
2978name at the prompt.
2979
2980When entering a key sequence like `C-c C-n', it is not necessary to
2981release the CONTROL key after doing the `C-c' part -- it suffices to
2982press the CONTROL key, press and release `c' (while still holding down
2983CONTROL), press and release `n' (while still holding down CONTROL), &
2984then release CONTROL.
2985
2986Entering Python mode calls with no arguments the value of the variable
2987`python-mode-hook', if that value exists and is not nil; for backward
2988compatibility it also tries `py-mode-hook'; see the `Hooks' section of
2989the Elisp manual for details.
2990
2991Obscure: When python-mode is first loaded, it looks for all bindings
2992to newline-and-indent in the global keymap, and shadows them with
2993local bindings to py-newline-and-indent."))
2994
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002995
2996;; Helper functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002997(defvar py-parse-state-re
2998 (concat
2999 "^[ \t]*\\(if\\|elif\\|else\\|while\\|def\\|class\\)\\>"
3000 "\\|"
3001 "^[^ #\t\n]"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003002
Barry Warsaw7ae77681994-12-12 20:38:05 +00003003(defun py-parse-state ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003004 "Return the parse state at point (see `parse-partial-sexp' docs)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003005 (save-excursion
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00003006 (let ((here (point))
Barry Warsawb2d5e622002-04-22 15:29:27 +00003007 pps done)
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00003008 (while (not done)
3009 ;; back up to the first preceding line (if any; else start of
3010 ;; buffer) that begins with a popular Python keyword, or a
3011 ;; non- whitespace and non-comment character. These are good
3012 ;; places to start parsing to see whether where we started is
3013 ;; at a non-zero nesting level. It may be slow for people who
3014 ;; write huge code blocks or huge lists ... tough beans.
3015 (re-search-backward py-parse-state-re nil 'move)
3016 (beginning-of-line)
Barry Warsawf64b4051998-02-12 16:52:14 +00003017 ;; In XEmacs, we have a much better way to test for whether
3018 ;; we're in a triple-quoted string or not. Emacs does not
Barry Warsaw145ab1c1998-05-19 14:49:49 +00003019 ;; have this built-in function, which is its loss because
Barry Warsawf64b4051998-02-12 16:52:14 +00003020 ;; without scanning from the beginning of the buffer, there's
3021 ;; no accurate way to determine this otherwise.
Barry Warsawb2d5e622002-04-22 15:29:27 +00003022 (save-excursion (setq pps (parse-partial-sexp (point) here)))
3023 ;; make sure we don't land inside a triple-quoted string
3024 (setq done (or (not (nth 3 pps))
3025 (bobp)))
3026 ;; Just go ahead and short circuit the test back to the
3027 ;; beginning of the buffer. This will be slow, but not
3028 ;; nearly as slow as looping through many
3029 ;; re-search-backwards.
3030 (if (not done)
3031 (goto-char (point-min))))
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00003032 pps)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003033
Barry Warsaw7ae77681994-12-12 20:38:05 +00003034(defun py-nesting-level ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003035 "Return the buffer position of the last unclosed enclosing list.
3036If nesting level is zero, return nil."
Barry Warsawf64b4051998-02-12 16:52:14 +00003037 (let ((status (py-parse-state)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003038 (if (zerop (car status))
3039 nil ; not in a nest
3040 (car (cdr status))))) ; char# of open bracket
3041
Barry Warsaw7ae77681994-12-12 20:38:05 +00003042(defun py-backslash-continuation-line-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003043 "Return t iff preceding line ends with backslash that is not in a comment."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003044 (save-excursion
3045 (beginning-of-line)
3046 (and
3047 ;; use a cheap test first to avoid the regexp if possible
3048 ;; use 'eq' because char-after may return nil
3049 (eq (char-after (- (point) 2)) ?\\ )
3050 ;; make sure; since eq test passed, there is a preceding line
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003051 (forward-line -1) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00003052 (looking-at py-continued-re))))
3053
Barry Warsaw7ae77681994-12-12 20:38:05 +00003054(defun py-continuation-line-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003055 "Return t iff current line is a continuation line."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003056 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003057 (beginning-of-line)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003058 (or (py-backslash-continuation-line-p)
3059 (py-nesting-level))))
3060
Barry Warsaw9c1696c1998-12-15 04:36:22 +00003061(defun py-goto-beginning-of-tqs (delim)
3062 "Go to the beginning of the triple quoted string we find ourselves in.
3063DELIM is the TQS string delimiter character we're searching backwards
3064for."
Barry Warsaw3c34bb32000-10-27 05:00:25 +00003065 (let ((skip (and delim (make-string 1 delim)))
3066 (continue t))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00003067 (when skip
3068 (save-excursion
Barry Warsaw3c34bb32000-10-27 05:00:25 +00003069 (while continue
3070 (py-safe (search-backward skip))
3071 (setq continue (and (not (bobp))
3072 (= (char-before) ?\\))))
3073 (if (and (= (char-before) delim)
3074 (= (char-before (1- (point))) delim))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00003075 (setq skip (make-string 3 delim))))
3076 ;; we're looking at a triple-quoted string
3077 (py-safe (search-backward skip)))))
3078
Barry Warsaw7ae77681994-12-12 20:38:05 +00003079(defun py-goto-initial-line ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003080 "Go to the initial line of the current statement.
3081Usually this is the line we're on, but if we're on the 2nd or
3082following lines of a continuation block, we need to go up to the first
3083line of the block."
3084 ;; Tricky: We want to avoid quadratic-time behavior for long
3085 ;; continued blocks, whether of the backslash or open-bracket
3086 ;; varieties, or a mix of the two. The following manages to do that
3087 ;; in the usual cases.
3088 ;;
3089 ;; Also, if we're sitting inside a triple quoted string, this will
3090 ;; drop us at the line that begins the string.
Barry Warsaw9ec9fbc1998-01-21 05:15:57 +00003091 (let (open-bracket-pos)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003092 (while (py-continuation-line-p)
3093 (beginning-of-line)
3094 (if (py-backslash-continuation-line-p)
3095 (while (py-backslash-continuation-line-p)
3096 (forward-line -1))
3097 ;; else zip out of nested brackets/braces/parens
3098 (while (setq open-bracket-pos (py-nesting-level))
3099 (goto-char open-bracket-pos)))))
3100 (beginning-of-line))
3101
Barry Warsaw7ae77681994-12-12 20:38:05 +00003102(defun py-goto-beyond-final-line ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003103 "Go to the point just beyond the fine line of the current statement.
3104Usually this is the start of the next line, but if this is a
3105multi-line statement we need to skip over the continuation lines."
3106 ;; Tricky: Again we need to be clever to avoid quadratic time
3107 ;; behavior.
3108 ;;
3109 ;; XXX: Not quite the right solution, but deals with multi-line doc
3110 ;; strings
Barry Warsaw751f4931998-05-19 16:06:21 +00003111 (if (looking-at (concat "[ \t]*\\(" py-stringlit-re "\\)"))
3112 (goto-char (match-end 0)))
3113 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +00003114 (forward-line 1)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003115 (let (state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003116 (while (and (py-continuation-line-p)
3117 (not (eobp)))
3118 ;; skip over the backslash flavor
3119 (while (and (py-backslash-continuation-line-p)
3120 (not (eobp)))
3121 (forward-line 1))
3122 ;; if in nest, zip to the end of the nest
3123 (setq state (py-parse-state))
3124 (if (and (not (zerop (car state)))
3125 (not (eobp)))
3126 (progn
Barry Warsawaffc0ca1997-11-03 16:59:38 +00003127 (parse-partial-sexp (point) (point-max) 0 nil state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003128 (forward-line 1))))))
3129
Barry Warsaw7ae77681994-12-12 20:38:05 +00003130(defun py-statement-opens-block-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003131 "Return t iff the current statement opens a block.
3132I.e., iff it ends with a colon that is not in a comment. Point should
3133be at the start of a statement."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003134 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003135 (let ((start (point))
3136 (finish (progn (py-goto-beyond-final-line) (1- (point))))
3137 (searching t)
3138 (answer nil)
3139 state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003140 (goto-char start)
3141 (while searching
3142 ;; look for a colon with nothing after it except whitespace, and
3143 ;; maybe a comment
3144 (if (re-search-forward ":\\([ \t]\\|\\\\\n\\)*\\(#.*\\)?$"
3145 finish t)
3146 (if (eq (point) finish) ; note: no `else' clause; just
3147 ; keep searching if we're not at
3148 ; the end yet
3149 ;; sure looks like it opens a block -- but it might
3150 ;; be in a comment
3151 (progn
3152 (setq searching nil) ; search is done either way
3153 (setq state (parse-partial-sexp start
3154 (match-beginning 0)))
3155 (setq answer (not (nth 4 state)))))
3156 ;; search failed: couldn't find another interesting colon
3157 (setq searching nil)))
3158 answer)))
3159
Barry Warsawf831d811996-07-31 20:42:59 +00003160(defun py-statement-closes-block-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003161 "Return t iff the current statement closes a block.
3162I.e., if the line starts with `return', `raise', `break', `continue',
3163and `pass'. This doesn't catch embedded statements."
Barry Warsawf831d811996-07-31 20:42:59 +00003164 (let ((here (point)))
Barry Warsawa8f99ba1999-05-24 18:37:57 +00003165 (py-goto-initial-line)
Barry Warsawc0d2d511999-06-03 22:18:59 +00003166 (back-to-indentation)
Barry Warsawf831d811996-07-31 20:42:59 +00003167 (prog1
Barry Warsawaffc0ca1997-11-03 16:59:38 +00003168 (looking-at (concat py-block-closing-keywords-re "\\>"))
Barry Warsawf831d811996-07-31 20:42:59 +00003169 (goto-char here))))
3170
Barry Warsaw7ae77681994-12-12 20:38:05 +00003171(defun py-goto-beyond-block ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003172 "Go to point just beyond the final line of block begun by the current line.
3173This is the same as where `py-goto-beyond-final-line' goes unless
3174we're on colon line, in which case we go to the end of the block.
3175Assumes point is at the beginning of the line."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003176 (if (py-statement-opens-block-p)
3177 (py-mark-block nil 'just-move)
3178 (py-goto-beyond-final-line)))
3179
Barry Warsaw7ae77681994-12-12 20:38:05 +00003180(defun py-goto-statement-at-or-above ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003181 "Go to the start of the first statement at or preceding point.
3182Return t if there is such a statement, otherwise nil. `Statement'
3183does not include blank lines, comments, or continuation lines."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003184 (py-goto-initial-line)
3185 (if (looking-at py-blank-or-comment-re)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003186 ;; skip back over blank & comment lines
3187 ;; note: will skip a blank or comment line that happens to be
3188 ;; a continuation line too
3189 (if (re-search-backward "^[ \t]*[^ \t#\n]" nil t)
3190 (progn (py-goto-initial-line) t)
3191 nil)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003192 t))
3193
Barry Warsaw7ae77681994-12-12 20:38:05 +00003194(defun py-goto-statement-below ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003195 "Go to start of the first statement following the statement containing point.
3196Return t if there is such a statement, otherwise nil. `Statement'
3197does not include blank lines, comments, or continuation lines."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003198 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003199 (let ((start (point)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003200 (py-goto-beyond-final-line)
3201 (while (and
3202 (looking-at py-blank-or-comment-re)
3203 (not (eobp)))
3204 (forward-line 1))
3205 (if (eobp)
3206 (progn (goto-char start) nil)
3207 t)))
3208
Barry Warsaw7ae77681994-12-12 20:38:05 +00003209(defun py-go-up-tree-to-keyword (key)
Barry Warsaw41a05c71998-08-10 16:33:12 +00003210 "Go to begining of statement starting with KEY, at or preceding point.
3211
3212KEY is a regular expression describing a Python keyword. Skip blank
3213lines and non-indenting comments. If the statement found starts with
3214KEY, then stop, otherwise go back to first enclosing block starting
3215with KEY. If successful, leave point at the start of the KEY line and
3216return t. Otherwise, leav point at an undefined place and return nil."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003217 ;; skip blanks and non-indenting #
3218 (py-goto-initial-line)
3219 (while (and
3220 (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
3221 (zerop (forward-line -1))) ; go back
3222 nil)
3223 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003224 (let* ((re (concat "[ \t]*" key "\\b"))
3225 (case-fold-search nil) ; let* so looking-at sees this
3226 (found (looking-at re))
3227 (dead nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003228 (while (not (or found dead))
3229 (condition-case nil ; in case no enclosing block
3230 (py-goto-block-up 'no-mark)
3231 (error (setq dead t)))
3232 (or dead (setq found (looking-at re))))
3233 (beginning-of-line)
3234 found))
3235
Barry Warsaw7ae77681994-12-12 20:38:05 +00003236(defun py-suck-up-leading-text ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003237 "Return string in buffer from start of indentation to end of line.
3238Prefix with \"...\" if leading whitespace was skipped."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003239 (save-excursion
3240 (back-to-indentation)
3241 (concat
3242 (if (bolp) "" "...")
3243 (buffer-substring (point) (progn (end-of-line) (point))))))
3244
Barry Warsaw7ae77681994-12-12 20:38:05 +00003245(defun py-suck-up-first-keyword ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003246 "Return first keyword on the line as a Lisp symbol.
3247`Keyword' is defined (essentially) as the regular expression
3248([a-z]+). Returns nil if none was found."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003249 (let ((case-fold-search nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003250 (if (looking-at "[ \t]*\\([a-z]+\\)\\b")
3251 (intern (buffer-substring (match-beginning 1) (match-end 1)))
3252 nil)))
3253
Barry Warsawb3e81d51996-09-04 15:12:42 +00003254(defun py-current-defun ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003255 "Python value for `add-log-current-defun-function'.
3256This tells add-log.el how to find the current function/method/variable."
Barry Warsawb3e81d51996-09-04 15:12:42 +00003257 (save-excursion
3258 (if (re-search-backward py-defun-start-re nil t)
3259 (or (match-string 3)
3260 (let ((method (match-string 2)))
3261 (if (and (not (zerop (length (match-string 1))))
3262 (re-search-backward py-class-start-re nil t))
3263 (concat (match-string 1) "." method)
3264 method)))
3265 nil)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003266
3267
Barry Warsawfec75d61995-07-05 23:26:15 +00003268(defconst py-help-address "python-mode@python.org"
Barry Warsaw850437a1995-03-08 21:50:28 +00003269 "Address accepting submission of bug reports.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003270
Barry Warsaw850437a1995-03-08 21:50:28 +00003271(defun py-version ()
3272 "Echo the current version of `python-mode' in the minibuffer."
3273 (interactive)
3274 (message "Using `python-mode' version %s" py-version)
3275 (py-keep-region-active))
3276
3277;; only works under Emacs 19
3278;(eval-when-compile
3279; (require 'reporter))
3280
3281(defun py-submit-bug-report (enhancement-p)
3282 "Submit via mail a bug report on `python-mode'.
Barry Warsaw41a05c71998-08-10 16:33:12 +00003283With \\[universal-argument] (programmatically, argument ENHANCEMENT-P
3284non-nil) just submit an enhancement request."
Barry Warsaw850437a1995-03-08 21:50:28 +00003285 (interactive
3286 (list (not (y-or-n-p
Barry Warsaw41a05c71998-08-10 16:33:12 +00003287 "Is this a bug report (hit `n' to send other comments)? "))))
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00003288 (let ((reporter-prompt-for-summary-p (if enhancement-p
3289 "(Very) brief summary: "
3290 t)))
Barry Warsaw850437a1995-03-08 21:50:28 +00003291 (require 'reporter)
3292 (reporter-submit-bug-report
3293 py-help-address ;address
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00003294 (concat "python-mode " py-version) ;pkgname
Barry Warsaw850437a1995-03-08 21:50:28 +00003295 ;; varlist
3296 (if enhancement-p nil
3297 '(py-python-command
3298 py-indent-offset
3299 py-block-comment-prefix
Barry Warsaw850437a1995-03-08 21:50:28 +00003300 py-temp-directory
3301 py-beep-if-tab-change))
3302 nil ;pre-hooks
3303 nil ;post-hooks
3304 "Dear Barry,") ;salutation
3305 (if enhancement-p nil
3306 (set-mark (point))
3307 (insert
3308"Please replace this text with a sufficiently large code sample\n\
3309and an exact recipe so that I can reproduce your problem. Failure\n\
3310to do so may mean a greater delay in fixing your bug.\n\n")
3311 (exchange-point-and-mark)
3312 (py-keep-region-active))))
3313
3314
Barry Warsaw47384781997-11-26 05:27:45 +00003315(defun py-kill-emacs-hook ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003316 "Delete files in `py-file-queue'.
3317These are Python temporary files awaiting execution."
Barry Warsaw47384781997-11-26 05:27:45 +00003318 (mapcar #'(lambda (filename)
3319 (py-safe (delete-file filename)))
3320 py-file-queue))
3321
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003322;; arrange to kill temp files when Emacs exists
Barry Warsawc72c11c1997-08-09 06:42:08 +00003323(add-hook 'kill-emacs-hook 'py-kill-emacs-hook)
Barry Warsaw4f577d22001-04-11 20:23:17 +00003324(add-hook 'comint-output-filter-functions 'py-pdbtrack-track-stack-file)
3325
3326;; Add a designator to the minor mode strings
3327(or (assq 'py-pdbtrack-minor-mode-string minor-mode-alist)
3328 (push '(py-pdbtrack-is-tracking-p py-pdbtrack-minor-mode-string)
3329 minor-mode-alist))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003330
3331
3332
3333(provide 'python-mode)
3334;;; python-mode.el ends here