blob: ba4f88a90b015d2d5b38ca4cd1267a2b77d13e80 [file] [log] [blame]
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001;;; python-mode.el --- Major mode for editing Python programs
2
3;; Copyright (C) 1992,1993,1994 Tim Peters
4
Barry Warsawb2d5e622002-04-22 15:29:27 +00005;; Author: 1995-2002 Barry A. Warsaw
Barry Warsawfec75d61995-07-05 23:26:15 +00006;; 1992-1994 Tim Peters
Barry Warsawa97a3f31997-11-04 18:47:06 +00007;; Maintainer: python-mode@python.org
8;; Created: Feb 1992
9;; Keywords: python languages oop
Barry Warsaw7b0f5681995-03-08 21:33:04 +000010
Barry Warsaw19b1c612001-07-06 20:27:29 +000011(defconst py-version "$Revision$"
Barry Warsawc72c11c1997-08-09 06:42:08 +000012 "`python-mode' version number.")
13
Barry Warsawcfec3591995-03-10 15:58:16 +000014;; This software is provided as-is, without express or implied
15;; warranty. Permission to use, copy, modify, distribute or sell this
16;; software, without fee, for any purpose and by any individual or
17;; organization, is hereby granted, provided that the above copyright
18;; notice and this paragraph appear in all copies.
Barry Warsaw7b0f5681995-03-08 21:33:04 +000019
20;;; Commentary:
Barry Warsaw755c6711996-08-01 20:02:55 +000021
Barry Warsaw7b0f5681995-03-08 21:33:04 +000022;; This is a major mode for editing Python programs. It was developed
Barry Warsaw261f87d1996-08-20 19:57:34 +000023;; by Tim Peters after an original idea by Michael A. Guravage. Tim
Barry Warsawf7039e21998-08-20 22:10:46 +000024;; subsequently left the net; in 1995, Barry Warsaw inherited the mode
Barry Warsaw38e21e71998-10-27 22:09:25 +000025;; and is the current maintainer. Tim's now back but disavows all
26;; responsibility for the mode. Smart Tim :-)
Barry Warsaw7b0f5681995-03-08 21:33:04 +000027
Barry Warsaw4f577d22001-04-11 20:23:17 +000028;; pdbtrack support contributed by Ken Manheimer, April 2001.
29
Barry Warsawb2d5e622002-04-22 15:29:27 +000030;; Please use the SourceForge Python project to submit bugs or
31;; patches:
Barry Warsaw4f577d22001-04-11 20:23:17 +000032;;
33;; http://sourceforge.net/projects/python
Barry Warsaw37231521997-12-11 17:23:13 +000034
35;; FOR MORE INFORMATION:
36
Barry Warsaw4f577d22001-04-11 20:23:17 +000037;; There is some information on python-mode.el at
38
Barry Warsawf7039e21998-08-20 22:10:46 +000039;; http://www.python.org/emacs/python-mode/
40;;
Barry Warsawb2d5e622002-04-22 15:29:27 +000041;; It does contain links to other packages that you might find useful,
42;; such as pdb interfaces, OO-Browser links, etc.
Barry Warsaw37231521997-12-11 17:23:13 +000043
44;; BUG REPORTING:
Barry Warsaw7ae77681994-12-12 20:38:05 +000045
Barry Warsaw4f577d22001-04-11 20:23:17 +000046;; As mentioned above, please use the SourceForge Python project for
47;; submitting bug reports or patches. The old recommendation, to use
48;; C-c C-b will still work, but those reports have a higher chance of
49;; getting buried in my mailbox. Please include a complete, but
Barry Warsawaffc0ca1997-11-03 16:59:38 +000050;; concise code sample and a recipe for reproducing the bug. Send
51;; suggestions and other comments to python-mode@python.org.
52
53;; When in a Python mode buffer, do a C-h m for more help. It's
Barry Warsaw37231521997-12-11 17:23:13 +000054;; doubtful that a texinfo manual would be very useful, but if you
55;; want to contribute one, I'll certainly accept it!
Barry Warsawb5e0ecb1995-03-14 18:32:54 +000056
Barry Warsaw7b0f5681995-03-08 21:33:04 +000057;;; Code:
58
Barry Warsaw6dfbe5d1998-08-20 21:51:27 +000059(require 'comint)
Barry Warsawc72c11c1997-08-09 06:42:08 +000060(require 'custom)
Barry Warsaw4f577d22001-04-11 20:23:17 +000061(require 'cl)
Barry Warsaw1f4fed62002-07-17 13:45:00 +000062(require 'compile)
Barry Warsawc72c11c1997-08-09 06:42:08 +000063
Barry Warsaw7b0f5681995-03-08 21:33:04 +000064
65;; user definable variables
66;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
Barry Warsaw7ae77681994-12-12 20:38:05 +000067
Barry Warsawc72c11c1997-08-09 06:42:08 +000068(defgroup python nil
69 "Support for the Python programming language, <http://www.python.org/>"
Barry Warsaw5ed843f1999-07-28 22:06:06 +000070 :group 'languages
71 :prefix "py-")
Barry Warsaw7ae77681994-12-12 20:38:05 +000072
Barry Warsawc72c11c1997-08-09 06:42:08 +000073(defcustom py-python-command "python"
74 "*Shell command used to start Python interpreter."
75 :type 'string
76 :group 'python)
77
Barry Warsawa2398801998-04-09 23:28:20 +000078(defcustom py-jpython-command "jpython"
79 "*Shell command used to start the JPython interpreter."
80 :type 'string
Barry Warsaw5ed843f1999-07-28 22:06:06 +000081 :group 'python
82 :tag "JPython Command")
Barry Warsawa2398801998-04-09 23:28:20 +000083
Barry Warsawaa384fd1999-02-16 23:36:16 +000084(defcustom py-default-interpreter 'cpython
85 "*Which Python interpreter is used by default.
86The value for this variable can be either `cpython' or `jpython'.
87
88When the value is `cpython', the variables `py-python-command' and
89`py-python-command-args' are consulted to determine the interpreter
90and arguments to use.
91
92When the value is `jpython', the variables `py-jpython-command' and
93`py-jpython-command-args' are consulted to determine the interpreter
94and arguments to use.
95
Barry Warsaw11f21561999-07-28 21:59:43 +000096Note that this variable is consulted only the first time that a Python
97mode buffer is visited during an Emacs session. After that, use
Barry Warsawaa384fd1999-02-16 23:36:16 +000098\\[py-toggle-shells] to change the interpreter shell."
99 :type '(choice (const :tag "Python (a.k.a. CPython)" cpython)
100 (const :tag "JPython" jpython))
101 :group 'python)
102
Barry Warsaw8f972b71998-02-05 20:45:49 +0000103(defcustom py-python-command-args '("-i")
104 "*List of string arguments to be used when starting a Python shell."
105 :type '(repeat string)
106 :group 'python)
107
Barry Warsawa2398801998-04-09 23:28:20 +0000108(defcustom py-jpython-command-args '("-i")
109 "*List of string arguments to be used when starting a JPython shell."
110 :type '(repeat string)
Barry Warsaw5ed843f1999-07-28 22:06:06 +0000111 :group 'python
112 :tag "JPython Command Args")
Barry Warsawa2398801998-04-09 23:28:20 +0000113
Barry Warsawc72c11c1997-08-09 06:42:08 +0000114(defcustom py-indent-offset 4
Barry Warsaw41a05c71998-08-10 16:33:12 +0000115 "*Amount of offset per level of indentation.
116`\\[py-guess-indent-offset]' can usually guess a good value when
117you're editing someone else's Python code."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000118 :type 'integer
119 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000120
Barry Warsawfd4c9e82001-06-18 23:40:35 +0000121(defcustom py-continuation-offset 4
Barry Warsaw40fb4522001-07-06 20:07:13 +0000122 "*Additional amount of offset to give for some continuation lines.
Barry Warsawfd4c9e82001-06-18 23:40:35 +0000123Continuation lines are those that immediately follow a backslash
Barry Warsaw40fb4522001-07-06 20:07:13 +0000124terminated line. Only those continuation lines for a block opening
125statement are given this extra offset."
Barry Warsawfd4c9e82001-06-18 23:40:35 +0000126 :type 'integer
127 :group 'python)
128
Barry Warsaw742a5111998-03-13 17:29:15 +0000129(defcustom py-smart-indentation t
130 "*Should `python-mode' try to automagically set some indentation variables?
131When this variable is non-nil, two things happen when a buffer is set
132to `python-mode':
133
Barry Warsawc0d2d511999-06-03 22:18:59 +0000134 1. `py-indent-offset' is guessed from existing code in the buffer.
Barry Warsaw639eea61998-03-16 18:12:13 +0000135 Only guessed values between 2 and 8 are considered. If a valid
Barry Warsaw742a5111998-03-13 17:29:15 +0000136 guess can't be made (perhaps because you are visiting a new
Barry Warsaw639eea61998-03-16 18:12:13 +0000137 file), then the value in `py-indent-offset' is used.
Barry Warsaw742a5111998-03-13 17:29:15 +0000138
Barry Warsaw639eea61998-03-16 18:12:13 +0000139 2. `indent-tabs-mode' is turned off if `py-indent-offset' does not
140 equal `tab-width' (`indent-tabs-mode' is never turned on by
141 Python mode). This means that for newly written code, tabs are
142 only inserted in indentation if one tab is one indentation
143 level, otherwise only spaces are used.
Barry Warsaw742a5111998-03-13 17:29:15 +0000144
Barry Warsaw8046bef1998-03-13 20:04:52 +0000145Note that both these settings occur *after* `python-mode-hook' is run,
146so if you want to defeat the automagic configuration, you must also
147set `py-smart-indentation' to nil in your `python-mode-hook'."
Barry Warsaw742a5111998-03-13 17:29:15 +0000148 :type 'boolean
149 :group 'python)
150
Barry Warsawc72c11c1997-08-09 06:42:08 +0000151(defcustom py-align-multiline-strings-p t
152 "*Flag describing how multi-line triple quoted strings are aligned.
Barry Warsaw095e9c61995-09-19 20:01:42 +0000153When this flag is non-nil, continuation lines are lined up under the
154preceding line's indentation. When this flag is nil, continuation
Barry Warsawc72c11c1997-08-09 06:42:08 +0000155lines are aligned to column zero."
156 :type '(choice (const :tag "Align under preceding line" t)
157 (const :tag "Align to column zero" nil))
158 :group 'python)
Barry Warsaw095e9c61995-09-19 20:01:42 +0000159
Barry Warsaw218eb751998-09-22 19:51:47 +0000160(defcustom py-block-comment-prefix "##"
Barry Warsaw867a32a1996-03-07 18:30:26 +0000161 "*String used by \\[comment-region] to comment out a block of code.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000162This should follow the convention for non-indenting comment lines so
163that the indentation commands won't get confused (i.e., the string
164should be of the form `#x...' where `x' is not a blank or a tab, and
Barry Warsaw218eb751998-09-22 19:51:47 +0000165`...' is arbitrary). However, this string should not end in whitespace."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000166 :type 'string
167 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000168
Barry Warsawc72c11c1997-08-09 06:42:08 +0000169(defcustom py-honor-comment-indentation t
Barry Warsaw6d627751996-03-06 18:41:38 +0000170 "*Controls how comment lines influence subsequent indentation.
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000171
Barry Warsaw6d627751996-03-06 18:41:38 +0000172When nil, all comment lines are skipped for indentation purposes, and
Barry Warsawc72c11c1997-08-09 06:42:08 +0000173if possible, a faster algorithm is used (i.e. X/Emacs 19 and beyond).
Barry Warsaw6d627751996-03-06 18:41:38 +0000174
175When t, lines that begin with a single `#' are a hint to subsequent
176line indentation. If the previous line is such a comment line (as
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000177opposed to one that starts with `py-block-comment-prefix'), then its
Barry Warsaw6d627751996-03-06 18:41:38 +0000178indentation is used as a hint for this line's indentation. Lines that
179begin with `py-block-comment-prefix' are ignored for indentation
180purposes.
181
Barry Warsawd36cfe42002-03-15 16:46:46 +0000182When not nil or t, comment lines that begin with a single `#' are used
183as indentation hints, unless the comment character is in column zero."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000184 :type '(choice
185 (const :tag "Skip all comment lines (fast)" nil)
186 (const :tag "Single # `sets' indentation for next line" t)
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000187 (const :tag "Single # `sets' indentation except at column zero"
188 other)
Barry Warsawc72c11c1997-08-09 06:42:08 +0000189 )
190 :group 'python)
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000191
Barry Warsaw516b6201997-08-09 06:43:20 +0000192(defcustom py-temp-directory
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000193 (let ((ok '(lambda (x)
194 (and x
195 (setq x (expand-file-name x)) ; always true
196 (file-directory-p x)
197 (file-writable-p x)
198 x))))
Barry Warsaw7ae77681994-12-12 20:38:05 +0000199 (or (funcall ok (getenv "TMPDIR"))
200 (funcall ok "/usr/tmp")
201 (funcall ok "/tmp")
Barry Warsawd1648372002-03-18 18:53:56 +0000202 (funcall ok "/var/tmp")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000203 (funcall ok ".")
204 (error
Barry Warsaw6c6db0a1998-02-25 16:33:56 +0000205 "Couldn't find a usable temp directory -- set `py-temp-directory'")))
Barry Warsawd1648372002-03-18 18:53:56 +0000206 "*Directory used for temporary files created by a *Python* process.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000207By default, the first directory from this list that exists and that you
Barry Warsawd1648372002-03-18 18:53:56 +0000208can write into: the value (if any) of the environment variable TMPDIR,
209/usr/tmp, /tmp, /var/tmp, or the current directory."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000210 :type 'string
211 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000212
Barry Warsaw516b6201997-08-09 06:43:20 +0000213(defcustom py-beep-if-tab-change t
Barry Warsaw41a05c71998-08-10 16:33:12 +0000214 "*Ring the bell if `tab-width' is changed.
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000215If a comment of the form
216
217 \t# vi:set tabsize=<number>:
218
219is found before the first code line when the file is entered, and the
220current value of (the general Emacs variable) `tab-width' does not
221equal <number>, `tab-width' is set to <number>, a message saying so is
222displayed in the echo area, and if `py-beep-if-tab-change' is non-nil
Barry Warsawc72c11c1997-08-09 06:42:08 +0000223the Emacs bell is also rung as a warning."
224 :type 'boolean
225 :group 'python)
226
Barry Warsaw9981d221997-12-03 05:25:48 +0000227(defcustom py-jump-on-exception t
228 "*Jump to innermost exception frame in *Python Output* buffer.
Barry Warsaw12c92941998-08-10 21:44:37 +0000229When this variable is non-nil and an exception occurs when running
Barry Warsaw9981d221997-12-03 05:25:48 +0000230Python code synchronously in a subprocess, jump immediately to the
Barry Warsaw12c92941998-08-10 21:44:37 +0000231source code of the innermost traceback frame."
Barry Warsaw3bfed5b1998-05-19 16:25:04 +0000232 :type 'boolean
233 :group 'python)
234
235(defcustom py-ask-about-save t
236 "If not nil, ask about which buffers to save before executing some code.
237Otherwise, all modified buffers are saved without asking."
238 :type 'boolean
239 :group 'python)
Barry Warsaw9981d221997-12-03 05:25:48 +0000240
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000241(defcustom py-backspace-function 'backward-delete-char-untabify
242 "*Function called by `py-electric-backspace' when deleting backwards."
243 :type 'function
244 :group 'python)
245
246(defcustom py-delete-function 'delete-char
247 "*Function called by `py-electric-delete' when deleting forwards."
248 :type 'function
249 :group 'python)
250
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000251(defcustom py-imenu-show-method-args-p nil
252 "*Controls echoing of arguments of functions & methods in the Imenu buffer.
253When non-nil, arguments are printed."
254 :type 'boolean
255 :group 'python)
256(make-variable-buffer-local 'py-indent-offset)
257
Barry Warsaw4f577d22001-04-11 20:23:17 +0000258(defcustom py-pdbtrack-do-tracking-p t
259 "*Controls whether the pdbtrack feature is enabled or not.
260When non-nil, pdbtrack is enabled in all comint-based buffers,
261e.g. shell buffers and the *Python* buffer. When using pdb to debug a
262Python program, pdbtrack notices the pdb prompt and displays the
263source file and line that the program is stopped at, much the same way
264as gud-mode does for debugging C programs with gdb."
265 :type 'boolean
266 :group 'python)
267(make-variable-buffer-local 'py-pdbtrack-do-tracking-p)
268
269(defcustom py-pdbtrack-minor-mode-string " PDB"
270 "*String to use in the minor mode list when pdbtrack is enabled."
271 :type 'string
272 :group 'python)
273
Barry Warsaw88491612002-04-25 21:31:47 +0000274(defcustom py-import-check-point-max
275 20000
276 "Maximum number of characters to search for a Java-ish import statement.
277When `python-mode' tries to calculate the shell to use (either a
278CPython or a JPython shell), it looks at the so-called `shebang' line
279-- i.e. #! line. If that's not available, it looks at some of the
280file heading imports to see if they look Java-like."
281 :type 'integer
282 :group 'python
283 )
284
285(defcustom py-jpython-packages
286 '("java" "javax" "org" "com")
287 "Imported packages that imply `jpython-mode'."
288 :type '(repeat string)
289 :group 'python)
290
Barry Warsawc0ecb531998-01-20 21:43:34 +0000291;; Not customizable
292(defvar py-master-file nil
293 "If non-nil, execute the named file instead of the buffer's file.
Barry Warsaw50b3eb61998-02-25 15:57:47 +0000294The intent is to allow you to set this variable in the file's local
Barry Warsawc0ecb531998-01-20 21:43:34 +0000295variable section, e.g.:
296
297 # Local Variables:
298 # py-master-file: \"master.py\"
299 # End:
300
Barry Warsaw41a05c71998-08-10 16:33:12 +0000301so that typing \\[py-execute-buffer] in that buffer executes the named
Barry Warsaw1bbc0311998-10-27 21:54:56 +0000302master file instead of the buffer's file. If the file name has a
303relative path, the value of variable `default-directory' for the
304buffer is prepended to come up with a file name.")
Barry Warsawc0ecb531998-01-20 21:43:34 +0000305(make-variable-buffer-local 'py-master-file)
306
Barry Warsaw29a90f02002-04-22 21:48:20 +0000307(defcustom py-pychecker-command "pychecker"
308 "*Shell command used to run Pychecker."
309 :type 'string
310 :group 'python
311 :tag "Pychecker Command")
312
313(defcustom py-pychecker-command-args '("--stdlib")
314 "*List of string arguments to be passed to pychecker."
315 :type '(repeat string)
316 :group 'python
317 :tag "Pychecker Command Args")
318
Barry Warsaw88491612002-04-25 21:31:47 +0000319(defvar py-shell-alist
320 '(("jpython" . 'jpython)
321 ("jython" . 'jpython)
322 ("python" . 'cpython))
323 "*Alist of interpreters and python shells. Used by `py-choose-shell'
324to select the appropriate python interpreter mode for a file.")
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000325
Barry Warsawc72c11c1997-08-09 06:42:08 +0000326
327;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
328;; NO USER DEFINABLE VARIABLES BEYOND THIS POINT
329
Barry Warsaw5e21cb01997-11-05 18:41:11 +0000330(defconst py-emacs-features
331 (let (features)
Barry Warsaw5e21cb01997-11-05 18:41:11 +0000332 features)
Barry Warsawc12c62e1997-09-04 04:18:07 +0000333 "A list of features extant in the Emacs you are using.
Barry Warsaw6ae21ad1997-11-06 14:36:49 +0000334There are many flavors of Emacs out there, with different levels of
335support for features needed by `python-mode'.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000336
Barry Warsaw29a90f02002-04-22 21:48:20 +0000337;; Face for None, True, False, self, and Ellipsis
338(defvar py-pseudo-keyword-face 'py-pseudo-keyword-face
339 "Face for pseudo keywords in Python mode, like self, True, False, Ellipsis.")
340(make-face 'py-pseudo-keyword-face)
341
342(defun py-font-lock-mode-hook ()
343 (or (face-differs-from-default-p 'py-pseudo-keyword-face)
344 (copy-face 'font-lock-keyword-face 'py-pseudo-keyword-face)))
345(add-hook 'font-lock-mode-hook 'py-font-lock-mode-hook)
346
Barry Warsawfb07f401997-02-24 03:37:22 +0000347(defvar python-font-lock-keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000348 (let ((kw1 (mapconcat 'identity
349 '("and" "assert" "break" "class"
350 "continue" "def" "del" "elif"
351 "else" "except" "exec" "for"
352 "from" "global" "if" "import"
353 "in" "is" "lambda" "not"
354 "or" "pass" "print" "raise"
Barry Warsawe275c422001-06-19 18:24:42 +0000355 "return" "while" "yield"
Barry Warsawb8f11661997-11-06 14:35:15 +0000356 )
357 "\\|"))
358 (kw2 (mapconcat 'identity
359 '("else:" "except:" "finally:" "try:")
360 "\\|"))
361 )
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000362 (list
Barry Warsawef3c8911997-11-05 18:55:50 +0000363 ;; keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000364 (cons (concat "\\b\\(" kw1 "\\)\\b[ \n\t(]") 1)
365 ;; block introducing keywords with immediately following colons.
366 ;; Yes "except" is in both lists.
367 (cons (concat "\\b\\(" kw2 "\\)[ \n\t(]") 1)
Barry Warsawe0c182f2000-12-27 17:41:47 +0000368 ;; `as' but only in "import foo as bar"
369 '("[ \t]*\\(\\bfrom\\b.*\\)?\\bimport\\b.*\\b\\(as\\)\\b" . 2)
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000370 ;; classes
371 '("\\bclass[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
372 1 font-lock-type-face)
373 ;; functions
374 '("\\bdef[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
375 1 font-lock-function-name-face)
Barry Warsaw29a90f02002-04-22 21:48:20 +0000376 ;; pseudo-keywords
377 '("\\b\\(self\\|None\\|True\\|False\\|Ellipsis\\)\\b"
378 1 py-pseudo-keyword-face)
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000379 ))
Barry Warsaw62d9d6e1996-03-06 20:32:27 +0000380 "Additional expressions to highlight in Python mode.")
Barry Warsawfb07f401997-02-24 03:37:22 +0000381(put 'python-mode 'font-lock-defaults '(python-font-lock-keywords))
382
Barry Warsawe467bfb1997-11-26 05:40:58 +0000383;; have to bind py-file-queue before installing the kill-emacs-hook
Barry Warsaw7ae77681994-12-12 20:38:05 +0000384(defvar py-file-queue nil
385 "Queue of Python temp files awaiting execution.
386Currently-active file is at the head of the list.")
387
Barry Warsaw4f577d22001-04-11 20:23:17 +0000388(defvar py-pdbtrack-is-tracking-p nil)
Ken Manheimered6000a2003-03-03 17:09:44 +0000389(defvar py-pdbtrack-last-grubbed-buffer nil
390 "Record of the last buffer used when the source path was invalid.
391
392This buffer is consulted before the buffer-list history for satisfying
393`py-pdbtrack-grub-for-buffer', since it's the most often the likely
394prospect as debugging continues.")
395(make-variable-buffer-local 'py-pdbtrack-last-grubbed-buffer)
Barry Warsaw29a90f02002-04-22 21:48:20 +0000396(defvar py-pychecker-history nil)
Barry Warsaw4f577d22001-04-11 20:23:17 +0000397
398
Barry Warsawc72c11c1997-08-09 06:42:08 +0000399
400;; Constants
401
Barry Warsawc72c11c1997-08-09 06:42:08 +0000402(defconst py-stringlit-re
403 (concat
Barry Warsaw751f4931998-05-19 16:06:21 +0000404 ;; These fail if backslash-quote ends the string (not worth
405 ;; fixing?). They precede the short versions so that the first two
406 ;; quotes don't look like an empty short string.
407 ;;
408 ;; (maybe raw), long single quoted triple quoted strings (SQTQ),
409 ;; with potential embedded single quotes
410 "[rR]?'''[^']*\\(\\('[^']\\|''[^']\\)[^']*\\)*'''"
411 "\\|"
412 ;; (maybe raw), long double quoted triple quoted strings (DQTQ),
413 ;; with potential embedded double quotes
414 "[rR]?\"\"\"[^\"]*\\(\\(\"[^\"]\\|\"\"[^\"]\\)[^\"]*\\)*\"\"\""
415 "\\|"
416 "[rR]?'\\([^'\n\\]\\|\\\\.\\)*'" ; single-quoted
Barry Warsawc72c11c1997-08-09 06:42:08 +0000417 "\\|" ; or
Barry Warsaw751f4931998-05-19 16:06:21 +0000418 "[rR]?\"\\([^\"\n\\]\\|\\\\.\\)*\"" ; double-quoted
Barry Warsaw41a05c71998-08-10 16:33:12 +0000419 )
420 "Regular expression matching a Python string literal.")
Barry Warsaw751f4931998-05-19 16:06:21 +0000421
Barry Warsawc72c11c1997-08-09 06:42:08 +0000422(defconst py-continued-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000423 ;; This is tricky because a trailing backslash does not mean
424 ;; continuation if it's in a comment
Barry Warsawc72c11c1997-08-09 06:42:08 +0000425 (concat
426 "\\(" "[^#'\"\n\\]" "\\|" py-stringlit-re "\\)*"
Barry Warsaw41a05c71998-08-10 16:33:12 +0000427 "\\\\$")
428 "Regular expression matching Python backslash continuation lines.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000429
Barry Warsaw41a05c71998-08-10 16:33:12 +0000430(defconst py-blank-or-comment-re "[ \t]*\\($\\|#\\)"
Barry Warsaw71c3adb1998-08-10 16:34:33 +0000431 "Regular expression matching a blank or comment line.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000432
Barry Warsawc72c11c1997-08-09 06:42:08 +0000433(defconst py-outdent-re
434 (concat "\\(" (mapconcat 'identity
435 '("else:"
436 "except\\(\\s +.*\\)?:"
437 "finally:"
438 "elif\\s +.*:")
439 "\\|")
Barry Warsaw41a05c71998-08-10 16:33:12 +0000440 "\\)")
441 "Regular expression matching statements to be dedented one level.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000442
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000443(defconst py-block-closing-keywords-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000444 "\\(return\\|raise\\|break\\|continue\\|pass\\)"
445 "Regular expression matching keywords which typically close a block.")
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000446
Barry Warsawc72c11c1997-08-09 06:42:08 +0000447(defconst py-no-outdent-re
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000448 (concat
449 "\\("
450 (mapconcat 'identity
451 (list "try:"
452 "except\\(\\s +.*\\)?:"
453 "while\\s +.*:"
454 "for\\s +.*:"
455 "if\\s +.*:"
456 "elif\\s +.*:"
457 (concat py-block-closing-keywords-re "[ \t\n]")
458 )
459 "\\|")
Barry Warsaw41a05c71998-08-10 16:33:12 +0000460 "\\)")
461 "Regular expression matching lines not to dedent after.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000462
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000463(defconst py-defun-start-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000464 "^\\([ \t]*\\)def[ \t]+\\([a-zA-Z_0-9]+\\)\\|\\(^[a-zA-Z_0-9]+\\)[ \t]*="
465 ;; If you change this, you probably have to change py-current-defun
466 ;; as well. This is only used by py-current-defun to find the name
467 ;; for add-log.el.
Barry Warsaw71c3adb1998-08-10 16:34:33 +0000468 "Regular expression matching a function, method, or variable assignment.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000469
Barry Warsaw41a05c71998-08-10 16:33:12 +0000470(defconst py-class-start-re "^class[ \t]*\\([a-zA-Z_0-9]+\\)"
471 ;; If you change this, you probably have to change py-current-defun
472 ;; as well. This is only used by py-current-defun to find the name
473 ;; for add-log.el.
474 "Regular expression for finding a class name.")
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000475
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000476(defconst py-traceback-line-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000477 "[ \t]+File \"\\([^\"]+\\)\", line \\([0-9]+\\)"
478 "Regular expression that describes tracebacks.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000479
Barry Warsaw4f577d22001-04-11 20:23:17 +0000480;; pdbtrack contants
481(defconst py-pdbtrack-stack-entry-regexp
Ken Manheimere7aca522003-03-03 00:35:32 +0000482; "^> \\([^(]+\\)(\\([0-9]+\\))\\([?a-zA-Z0-9_]+\\)()"
483 "^> \\(.*\\)(\\([0-9]+\\))\\([?a-zA-Z0-9_]+\\)()"
Barry Warsaw4f577d22001-04-11 20:23:17 +0000484 "Regular expression pdbtrack uses to find a stack trace entry.")
485
Ken Manheimer2448f1b2003-05-01 21:07:32 +0000486(defconst py-pdbtrack-input-prompt "\n[(<]*pdb[>)]+ "
Barry Warsaw4f577d22001-04-11 20:23:17 +0000487 "Regular expression pdbtrack uses to recognize a pdb prompt.")
488
489(defconst py-pdbtrack-track-range 10000
490 "Max number of characters from end of buffer to search for stack entry.")
491
Barry Warsawc72c11c1997-08-09 06:42:08 +0000492
493
Barry Warsawc72c11c1997-08-09 06:42:08 +0000494;; Major mode boilerplate
495
Barry Warsaw7ae77681994-12-12 20:38:05 +0000496;; define a mode-specific abbrev table for those who use such things
497(defvar python-mode-abbrev-table nil
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000498 "Abbrev table in use in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000499(define-abbrev-table 'python-mode-abbrev-table nil)
500
Barry Warsaw7ae77681994-12-12 20:38:05 +0000501(defvar python-mode-hook nil
502 "*Hook called by `python-mode'.")
503
Barry Warsaw88491612002-04-25 21:31:47 +0000504(defvar jpython-mode-hook nil
505 "*Hook called by `jpython-mode'. `jpython-mode' also calls
506`python-mode-hook'.")
507
Barry Warsaw56bd2ed2002-04-25 15:44:17 +0000508(defvar py-shell-hook nil
509 "*Hook called by `py-shell'.")
510
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000511;; In previous version of python-mode.el, the hook was incorrectly
512;; called py-mode-hook, and was not defvar'd. Deprecate its use.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000513(and (fboundp 'make-obsolete-variable)
514 (make-obsolete-variable 'py-mode-hook 'python-mode-hook))
515
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000516(defvar py-mode-map ()
517 "Keymap used in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000518(if py-mode-map
Barry Warsawc72c11c1997-08-09 06:42:08 +0000519 nil
Barry Warsaw7ae77681994-12-12 20:38:05 +0000520 (setq py-mode-map (make-sparse-keymap))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000521 ;; electric keys
522 (define-key py-mode-map ":" 'py-electric-colon)
523 ;; indentation level modifiers
524 (define-key py-mode-map "\C-c\C-l" 'py-shift-region-left)
525 (define-key py-mode-map "\C-c\C-r" 'py-shift-region-right)
526 (define-key py-mode-map "\C-c<" 'py-shift-region-left)
527 (define-key py-mode-map "\C-c>" 'py-shift-region-right)
Skip Montanaro6c5bc342002-12-31 16:56:20 +0000528 ;; paragraph and string filling
529 (define-key py-mode-map "\eq" 'py-fill-paragraph)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000530 ;; subprocess commands
531 (define-key py-mode-map "\C-c\C-c" 'py-execute-buffer)
Barry Warsaw820273d1998-05-19 15:54:45 +0000532 (define-key py-mode-map "\C-c\C-m" 'py-execute-import-or-reload)
Barry Warsaw1d0364b1998-05-19 16:15:26 +0000533 (define-key py-mode-map "\C-c\C-s" 'py-execute-string)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000534 (define-key py-mode-map "\C-c|" 'py-execute-region)
Barry Warsaw820273d1998-05-19 15:54:45 +0000535 (define-key py-mode-map "\e\C-x" 'py-execute-def-or-class)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000536 (define-key py-mode-map "\C-c!" 'py-shell)
Barry Warsawa2398801998-04-09 23:28:20 +0000537 (define-key py-mode-map "\C-c\C-t" 'py-toggle-shells)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000538 ;; Caution! Enter here at your own risk. We are trying to support
539 ;; several behaviors and it gets disgusting. :-( This logic ripped
540 ;; largely from CC Mode.
541 ;;
542 ;; In XEmacs 19, Emacs 19, and Emacs 20, we use this to bind
543 ;; backwards deletion behavior to DEL, which both Delete and
544 ;; Backspace get translated to. There's no way to separate this
545 ;; behavior in a clean way, so deal with it! Besides, it's been
546 ;; this way since the dawn of time.
547 (if (not (boundp 'delete-key-deletes-forward))
548 (define-key py-mode-map "\177" 'py-electric-backspace)
549 ;; However, XEmacs 20 actually achieved enlightenment. It is
550 ;; possible to sanely define both backward and forward deletion
551 ;; behavior under X separately (TTYs are forever beyond hope, but
552 ;; who cares? XEmacs 20 does the right thing with these too).
553 (define-key py-mode-map [delete] 'py-electric-delete)
554 (define-key py-mode-map [backspace] 'py-electric-backspace))
Barry Warsaw8c4a8de1997-11-26 20:30:33 +0000555 ;; Separate M-BS from C-M-h. The former should remain
556 ;; backward-kill-word.
557 (define-key py-mode-map [(control meta h)] 'py-mark-def-or-class)
Barry Warsaw2518c671997-11-05 00:51:08 +0000558 (define-key py-mode-map "\C-c\C-k" 'py-mark-block)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000559 ;; Miscellaneous
560 (define-key py-mode-map "\C-c:" 'py-guess-indent-offset)
561 (define-key py-mode-map "\C-c\t" 'py-indent-region)
Barry Warsaw4f577d22001-04-11 20:23:17 +0000562 (define-key py-mode-map "\C-c\C-d" 'py-pdbtrack-toggle-stack-tracking)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000563 (define-key py-mode-map "\C-c\C-n" 'py-next-statement)
564 (define-key py-mode-map "\C-c\C-p" 'py-previous-statement)
565 (define-key py-mode-map "\C-c\C-u" 'py-goto-block-up)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000566 (define-key py-mode-map "\C-c#" 'py-comment-region)
567 (define-key py-mode-map "\C-c?" 'py-describe-mode)
Barry Warsaw04949552002-04-22 22:05:49 +0000568 (define-key py-mode-map [f1] 'py-help-at-point)
Barry Warsawa7cc43b2002-04-22 17:15:19 +0000569 (define-key py-mode-map "\C-c\C-h" 'py-help-at-point)
Barry Warsawab0e86c1998-05-19 15:31:46 +0000570 (define-key py-mode-map "\e\C-a" 'py-beginning-of-def-or-class)
571 (define-key py-mode-map "\e\C-e" 'py-end-of-def-or-class)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000572 (define-key py-mode-map "\C-c-" 'py-up-exception)
573 (define-key py-mode-map "\C-c=" 'py-down-exception)
Barry Warsawf8ddb6a1999-01-18 21:49:39 +0000574 ;; stuff that is `standard' but doesn't interface well with
575 ;; python-mode, which forces us to rebind to special commands
576 (define-key py-mode-map "\C-xnd" 'py-narrow-to-defun)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000577 ;; information
578 (define-key py-mode-map "\C-c\C-b" 'py-submit-bug-report)
579 (define-key py-mode-map "\C-c\C-v" 'py-version)
Barry Warsaw29a90f02002-04-22 21:48:20 +0000580 (define-key py-mode-map "\C-c\C-w" 'py-pychecker-run)
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000581 ;; shadow global bindings for newline-and-indent w/ the py- version.
582 ;; BAW - this is extremely bad form, but I'm not going to change it
583 ;; for now.
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000584 (mapcar #'(lambda (key)
585 (define-key py-mode-map key 'py-newline-and-indent))
586 (where-is-internal 'newline-and-indent))
Barry Warsawf19feb81999-01-21 17:06:11 +0000587 ;; Force RET to be py-newline-and-indent even if it didn't get
588 ;; mapped by the above code. motivation: Emacs' default binding for
589 ;; RET is `newline' and C-j is `newline-and-indent'. Most Pythoneers
590 ;; expect RET to do a `py-newline-and-indent' and any Emacsers who
591 ;; dislike this are probably knowledgeable enough to do a rebind.
592 ;; However, we do *not* change C-j since many Emacsers have already
593 ;; swapped RET and C-j and they don't want C-j bound to `newline' to
594 ;; change.
595 (define-key py-mode-map "\C-m" 'py-newline-and-indent)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000596 )
597
598(defvar py-mode-output-map nil
Barry Warsaw41a05c71998-08-10 16:33:12 +0000599 "Keymap used in *Python Output* buffers.")
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000600(if py-mode-output-map
601 nil
602 (setq py-mode-output-map (make-sparse-keymap))
603 (define-key py-mode-output-map [button2] 'py-mouseto-exception)
604 (define-key py-mode-output-map "\C-c\C-c" 'py-goto-exception)
605 ;; TBD: Disable all self-inserting keys. This is bogus, we should
606 ;; really implement this as *Python Output* buffer being read-only
607 (mapcar #' (lambda (key)
608 (define-key py-mode-output-map key
609 #'(lambda () (interactive) (beep))))
610 (where-is-internal 'self-insert-command))
Barry Warsaw850437a1995-03-08 21:50:28 +0000611 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000612
Barry Warsaw6dfbe5d1998-08-20 21:51:27 +0000613(defvar py-shell-map nil
614 "Keymap used in *Python* shell buffers.")
615(if py-shell-map
616 nil
617 (setq py-shell-map (copy-keymap comint-mode-map))
618 (define-key py-shell-map [tab] 'tab-to-tab-stop)
619 (define-key py-shell-map "\C-c-" 'py-up-exception)
620 (define-key py-shell-map "\C-c=" 'py-down-exception)
621 )
622
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000623(defvar py-mode-syntax-table nil
624 "Syntax table used in `python-mode' buffers.")
Barry Warsawa7cc43b2002-04-22 17:15:19 +0000625(when (not py-mode-syntax-table)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000626 (setq py-mode-syntax-table (make-syntax-table))
Barry Warsawc72c11c1997-08-09 06:42:08 +0000627 (modify-syntax-entry ?\( "()" py-mode-syntax-table)
628 (modify-syntax-entry ?\) ")(" py-mode-syntax-table)
629 (modify-syntax-entry ?\[ "(]" py-mode-syntax-table)
630 (modify-syntax-entry ?\] ")[" py-mode-syntax-table)
631 (modify-syntax-entry ?\{ "(}" py-mode-syntax-table)
632 (modify-syntax-entry ?\} "){" py-mode-syntax-table)
633 ;; Add operator symbols misassigned in the std table
634 (modify-syntax-entry ?\$ "." py-mode-syntax-table)
635 (modify-syntax-entry ?\% "." py-mode-syntax-table)
636 (modify-syntax-entry ?\& "." py-mode-syntax-table)
637 (modify-syntax-entry ?\* "." py-mode-syntax-table)
638 (modify-syntax-entry ?\+ "." py-mode-syntax-table)
639 (modify-syntax-entry ?\- "." py-mode-syntax-table)
640 (modify-syntax-entry ?\/ "." py-mode-syntax-table)
641 (modify-syntax-entry ?\< "." py-mode-syntax-table)
642 (modify-syntax-entry ?\= "." py-mode-syntax-table)
643 (modify-syntax-entry ?\> "." py-mode-syntax-table)
644 (modify-syntax-entry ?\| "." py-mode-syntax-table)
645 ;; For historical reasons, underscore is word class instead of
646 ;; symbol class. GNU conventions say it should be symbol class, but
647 ;; there's a natural conflict between what major mode authors want
648 ;; and what users expect from `forward-word' and `backward-word'.
649 ;; Guido and I have hashed this out and have decided to keep
650 ;; underscore in word class. If you're tempted to change it, try
651 ;; binding M-f and M-b to py-forward-into-nomenclature and
Barry Warsawaa384fd1999-02-16 23:36:16 +0000652 ;; py-backward-into-nomenclature instead. This doesn't help in all
653 ;; situations where you'd want the different behavior
654 ;; (e.g. backward-kill-word).
Barry Warsawc72c11c1997-08-09 06:42:08 +0000655 (modify-syntax-entry ?\_ "w" py-mode-syntax-table)
656 ;; Both single quote and double quote are string delimiters
657 (modify-syntax-entry ?\' "\"" py-mode-syntax-table)
658 (modify-syntax-entry ?\" "\"" py-mode-syntax-table)
659 ;; backquote is open and close paren
660 (modify-syntax-entry ?\` "$" py-mode-syntax-table)
661 ;; comment delimiters
662 (modify-syntax-entry ?\# "<" py-mode-syntax-table)
663 (modify-syntax-entry ?\n ">" py-mode-syntax-table)
664 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000665
Barry Warsawa7cc43b2002-04-22 17:15:19 +0000666;; An auxiliary syntax table which places underscore and dot in the
667;; symbol class for simplicity
668(defvar py-dotted-expression-syntax-table nil
669 "Syntax table used to identify Python dotted expressions.")
670(when (not py-dotted-expression-syntax-table)
671 (setq py-dotted-expression-syntax-table
672 (copy-syntax-table py-mode-syntax-table))
673 (modify-syntax-entry ?_ "_" py-dotted-expression-syntax-table)
674 (modify-syntax-entry ?. "_" py-dotted-expression-syntax-table))
675
Barry Warsawb3e81d51996-09-04 15:12:42 +0000676
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000677
Barry Warsawbc3760b1998-09-14 16:16:18 +0000678;; Utilities
Barry Warsawbc3760b1998-09-14 16:16:18 +0000679(defmacro py-safe (&rest body)
680 "Safely execute BODY, return nil if an error occurred."
681 (` (condition-case nil
682 (progn (,@ body))
683 (error nil))))
684
685(defsubst py-keep-region-active ()
686 "Keep the region active in XEmacs."
687 ;; Ignore byte-compiler warnings you might see. Also note that
688 ;; FSF's Emacs 19 does it differently; its policy doesn't require us
689 ;; to take explicit action.
690 (and (boundp 'zmacs-region-stays)
691 (setq zmacs-region-stays t)))
692
693(defsubst py-point (position)
694 "Returns the value of point at certain commonly referenced POSITIONs.
695POSITION can be one of the following symbols:
696
697 bol -- beginning of line
698 eol -- end of line
699 bod -- beginning of def or class
700 eod -- end of def or class
701 bob -- beginning of buffer
702 eob -- end of buffer
703 boi -- back to indentation
704 bos -- beginning of statement
705
706This function does not modify point or mark."
707 (let ((here (point)))
708 (cond
709 ((eq position 'bol) (beginning-of-line))
710 ((eq position 'eol) (end-of-line))
711 ((eq position 'bod) (py-beginning-of-def-or-class))
712 ((eq position 'eod) (py-end-of-def-or-class))
713 ;; Kind of funny, I know, but useful for py-up-exception.
714 ((eq position 'bob) (beginning-of-buffer))
715 ((eq position 'eob) (end-of-buffer))
716 ((eq position 'boi) (back-to-indentation))
717 ((eq position 'bos) (py-goto-initial-line))
718 (t (error "Unknown buffer position requested: %s" position))
719 )
720 (prog1
721 (point)
722 (goto-char here))))
723
724(defsubst py-highlight-line (from to file line)
725 (cond
726 ((fboundp 'make-extent)
727 ;; XEmacs
728 (let ((e (make-extent from to)))
729 (set-extent-property e 'mouse-face 'highlight)
730 (set-extent-property e 'py-exc-info (cons file line))
731 (set-extent-property e 'keymap py-mode-output-map)))
732 (t
733 ;; Emacs -- Please port this!
734 )
735 ))
736
737(defun py-in-literal (&optional lim)
738 "Return non-nil if point is in a Python literal (a comment or string).
739Optional argument LIM indicates the beginning of the containing form,
740i.e. the limit on how far back to scan."
741 ;; This is the version used for non-XEmacs, which has a nicer
742 ;; interface.
743 ;;
744 ;; WARNING: Watch out for infinite recursion.
745 (let* ((lim (or lim (py-point 'bod)))
746 (state (parse-partial-sexp lim (point))))
747 (cond
748 ((nth 3 state) 'string)
749 ((nth 4 state) 'comment)
750 (t nil))))
751
752;; XEmacs has a built-in function that should make this much quicker.
753;; In this case, lim is ignored
754(defun py-fast-in-literal (&optional lim)
755 "Fast version of `py-in-literal', used only by XEmacs.
756Optional LIM is ignored."
757 ;; don't have to worry about context == 'block-comment
758 (buffer-syntactic-context))
759
760(if (fboundp 'buffer-syntactic-context)
761 (defalias 'py-in-literal 'py-fast-in-literal))
762
763
764
Barry Warsaw42f707f1996-07-29 21:05:05 +0000765;; Menu definitions, only relevent if you have the easymenu.el package
766;; (standard in the latest Emacs 19 and XEmacs 19 distributions).
Barry Warsaw5490a061996-08-06 15:43:33 +0000767(defvar py-menu nil
768 "Menu for Python Mode.
Barry Warsawc72c11c1997-08-09 06:42:08 +0000769This menu will get created automatically if you have the `easymenu'
770package. Note that the latest X/Emacs releases contain this package.")
Barry Warsaw5490a061996-08-06 15:43:33 +0000771
Barry Warsawc72c11c1997-08-09 06:42:08 +0000772(and (py-safe (require 'easymenu) t)
773 (easy-menu-define
774 py-menu py-mode-map "Python Mode menu"
775 '("Python"
776 ["Comment Out Region" py-comment-region (mark)]
777 ["Uncomment Region" (py-comment-region (point) (mark) '(4)) (mark)]
778 "-"
779 ["Mark current block" py-mark-block t]
Barry Warsaw2518c671997-11-05 00:51:08 +0000780 ["Mark current def" py-mark-def-or-class t]
781 ["Mark current class" (py-mark-def-or-class t) t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000782 "-"
783 ["Shift region left" py-shift-region-left (mark)]
784 ["Shift region right" py-shift-region-right (mark)]
785 "-"
Barry Warsaw820273d1998-05-19 15:54:45 +0000786 ["Import/reload file" py-execute-import-or-reload t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000787 ["Execute buffer" py-execute-buffer t]
788 ["Execute region" py-execute-region (mark)]
Barry Warsaw820273d1998-05-19 15:54:45 +0000789 ["Execute def or class" py-execute-def-or-class (mark)]
Barry Warsaw1d0364b1998-05-19 16:15:26 +0000790 ["Execute string" py-execute-string t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000791 ["Start interpreter..." py-shell t]
792 "-"
793 ["Go to start of block" py-goto-block-up t]
Barry Warsawab0e86c1998-05-19 15:31:46 +0000794 ["Go to start of class" (py-beginning-of-def-or-class t) t]
795 ["Move to end of class" (py-end-of-def-or-class t) t]
796 ["Move to start of def" py-beginning-of-def-or-class t]
797 ["Move to end of def" py-end-of-def-or-class t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000798 "-"
799 ["Describe mode" py-describe-mode t]
800 )))
Barry Warsaw42f707f1996-07-29 21:05:05 +0000801
Barry Warsaw81437461996-08-01 19:48:02 +0000802
803
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000804;; Imenu definitions
805(defvar py-imenu-class-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000806 (concat ; <<classes>>
807 "\\(" ;
808 "^[ \t]*" ; newline and maybe whitespace
809 "\\(class[ \t]+[a-zA-Z0-9_]+\\)" ; class name
810 ; possibly multiple superclasses
Barry Warsaw3179fe01998-04-04 21:36:53 +0000811 "\\([ \t]*\\((\\([a-zA-Z0-9_,. \t\n]\\)*)\\)?\\)"
Barry Warsaw81437461996-08-01 19:48:02 +0000812 "[ \t]*:" ; and the final :
813 "\\)" ; >>classes<<
814 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000815 "Regexp for Python classes for use with the Imenu package."
Barry Warsaw81437461996-08-01 19:48:02 +0000816 )
817
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000818(defvar py-imenu-method-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000819 (concat ; <<methods and functions>>
820 "\\(" ;
821 "^[ \t]*" ; new line and maybe whitespace
822 "\\(def[ \t]+" ; function definitions start with def
823 "\\([a-zA-Z0-9_]+\\)" ; name is here
824 ; function arguments...
Barry Warsaw1d5f9881998-10-28 04:08:13 +0000825;; "[ \t]*(\\([-+/a-zA-Z0-9_=,\* \t\n.()\"'#]*\\))"
826 "[ \t]*(\\([^:#]*\\))"
Barry Warsaw81437461996-08-01 19:48:02 +0000827 "\\)" ; end of def
828 "[ \t]*:" ; and then the :
829 "\\)" ; >>methods and functions<<
830 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000831 "Regexp for Python methods/functions for use with the Imenu package."
Barry Warsaw81437461996-08-01 19:48:02 +0000832 )
833
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000834(defvar py-imenu-method-no-arg-parens '(2 8)
835 "Indices into groups of the Python regexp for use with Imenu.
Barry Warsaw81437461996-08-01 19:48:02 +0000836
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000837Using these values will result in smaller Imenu lists, as arguments to
Barry Warsaw81437461996-08-01 19:48:02 +0000838functions are not listed.
839
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000840See the variable `py-imenu-show-method-args-p' for more
Barry Warsaw81437461996-08-01 19:48:02 +0000841information.")
842
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000843(defvar py-imenu-method-arg-parens '(2 7)
Barry Warsaw1bbc0311998-10-27 21:54:56 +0000844 "Indices into groups of the Python regexp for use with imenu.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000845Using these values will result in large Imenu lists, as arguments to
Barry Warsaw81437461996-08-01 19:48:02 +0000846functions are listed.
847
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000848See the variable `py-imenu-show-method-args-p' for more
Barry Warsaw81437461996-08-01 19:48:02 +0000849information.")
850
851;; Note that in this format, this variable can still be used with the
852;; imenu--generic-function. Otherwise, there is no real reason to have
853;; it.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000854(defvar py-imenu-generic-expression
Barry Warsaw81437461996-08-01 19:48:02 +0000855 (cons
856 (concat
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000857 py-imenu-class-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000858 "\\|" ; or...
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000859 py-imenu-method-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000860 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000861 py-imenu-method-no-arg-parens)
862 "Generic Python expression which may be used directly with Imenu.
Barry Warsaw81437461996-08-01 19:48:02 +0000863Used by setting the variable `imenu-generic-expression' to this value.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000864Also, see the function \\[py-imenu-create-index] for a better
865alternative for finding the index.")
Barry Warsaw81437461996-08-01 19:48:02 +0000866
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000867;; These next two variables are used when searching for the Python
Barry Warsaw81437461996-08-01 19:48:02 +0000868;; class/definitions. Just saving some time in accessing the
869;; generic-python-expression, really.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000870(defvar py-imenu-generic-regexp nil)
871(defvar py-imenu-generic-parens nil)
Barry Warsaw81437461996-08-01 19:48:02 +0000872
873
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000874(defun py-imenu-create-index-function ()
875 "Python interface function for the Imenu package.
876Finds all Python classes and functions/methods. Calls function
877\\[py-imenu-create-index-engine]. See that function for the details
878of how this works."
879 (setq py-imenu-generic-regexp (car py-imenu-generic-expression)
880 py-imenu-generic-parens (if py-imenu-show-method-args-p
881 py-imenu-method-arg-parens
882 py-imenu-method-no-arg-parens))
Barry Warsaw81437461996-08-01 19:48:02 +0000883 (goto-char (point-min))
Barry Warsaw1d5f9881998-10-28 04:08:13 +0000884 ;; Warning: When the buffer has no classes or functions, this will
885 ;; return nil, which seems proper according to the Imenu API, but
886 ;; causes an error in the XEmacs port of Imenu. Sigh.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000887 (py-imenu-create-index-engine nil))
Barry Warsaw81437461996-08-01 19:48:02 +0000888
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000889(defun py-imenu-create-index-engine (&optional start-indent)
890 "Function for finding Imenu definitions in Python.
Barry Warsaw81437461996-08-01 19:48:02 +0000891
892Finds all definitions (classes, methods, or functions) in a Python
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000893file for the Imenu package.
Barry Warsaw81437461996-08-01 19:48:02 +0000894
895Returns a possibly nested alist of the form
896
897 (INDEX-NAME . INDEX-POSITION)
898
899The second element of the alist may be an alist, producing a nested
900list as in
901
902 (INDEX-NAME . INDEX-ALIST)
903
904This function should not be called directly, as it calls itself
905recursively and requires some setup. Rather this is the engine for
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000906the function \\[py-imenu-create-index-function].
Barry Warsaw81437461996-08-01 19:48:02 +0000907
908It works recursively by looking for all definitions at the current
909indention level. When it finds one, it adds it to the alist. If it
910finds a definition at a greater indentation level, it removes the
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000911previous definition from the alist. In its place it adds all
Barry Warsaw81437461996-08-01 19:48:02 +0000912definitions found at the next indentation level. When it finds a
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000913definition that is less indented then the current level, it returns
914the alist it has created thus far.
Barry Warsaw81437461996-08-01 19:48:02 +0000915
916The optional argument START-INDENT indicates the starting indentation
917at which to continue looking for Python classes, methods, or
918functions. If this is not supplied, the function uses the indentation
919of the first definition found."
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000920 (let (index-alist
921 sub-method-alist
Barry Warsaw81437461996-08-01 19:48:02 +0000922 looking-p
923 def-name prev-name
924 cur-indent def-pos
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000925 (class-paren (first py-imenu-generic-parens))
926 (def-paren (second py-imenu-generic-parens)))
Barry Warsaw81437461996-08-01 19:48:02 +0000927 (setq looking-p
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000928 (re-search-forward py-imenu-generic-regexp (point-max) t))
Barry Warsaw81437461996-08-01 19:48:02 +0000929 (while looking-p
930 (save-excursion
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000931 ;; used to set def-name to this value but generic-extract-name
932 ;; is new to imenu-1.14. this way it still works with
933 ;; imenu-1.11
934 ;;(imenu--generic-extract-name py-imenu-generic-parens))
Barry Warsaw81437461996-08-01 19:48:02 +0000935 (let ((cur-paren (if (match-beginning class-paren)
936 class-paren def-paren)))
937 (setq def-name
Barry Warsawc8520351997-11-26 06:14:40 +0000938 (buffer-substring-no-properties (match-beginning cur-paren)
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000939 (match-end cur-paren))))
Barry Warsaw93c88cc1998-08-18 02:00:44 +0000940 (save-match-data
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000941 (py-beginning-of-def-or-class 'either))
Barry Warsaw81437461996-08-01 19:48:02 +0000942 (beginning-of-line)
943 (setq cur-indent (current-indentation)))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000944 ;; HACK: want to go to the next correct definition location. We
945 ;; explicitly list them here but it would be better to have them
946 ;; in a list.
Barry Warsaw81437461996-08-01 19:48:02 +0000947 (setq def-pos
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000948 (or (match-beginning class-paren)
949 (match-beginning def-paren)))
Barry Warsaw81437461996-08-01 19:48:02 +0000950 ;; if we don't have a starting indent level, take this one
951 (or start-indent
952 (setq start-indent cur-indent))
Barry Warsaw81437461996-08-01 19:48:02 +0000953 ;; if we don't have class name yet, take this one
954 (or prev-name
955 (setq prev-name def-name))
Barry Warsaw81437461996-08-01 19:48:02 +0000956 ;; what level is the next definition on? must be same, deeper
957 ;; or shallower indentation
958 (cond
Barry Warsaw32a03962002-07-16 16:04:13 +0000959 ;; Skip code in comments and strings
960 ((py-in-literal))
Barry Warsaw81437461996-08-01 19:48:02 +0000961 ;; at the same indent level, add it to the list...
962 ((= start-indent cur-indent)
Barry Warsaw81437461996-08-01 19:48:02 +0000963 (push (cons def-name def-pos) index-alist))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000964 ;; deeper indented expression, recurse
Barry Warsaw81437461996-08-01 19:48:02 +0000965 ((< start-indent cur-indent)
Barry Warsaw81437461996-08-01 19:48:02 +0000966 ;; the point is currently on the expression we're supposed to
967 ;; start on, so go back to the last expression. The recursive
968 ;; call will find this place again and add it to the correct
969 ;; list
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000970 (re-search-backward py-imenu-generic-regexp (point-min) 'move)
971 (setq sub-method-alist (py-imenu-create-index-engine cur-indent))
Barry Warsaw81437461996-08-01 19:48:02 +0000972 (if sub-method-alist
973 ;; we put the last element on the index-alist on the start
974 ;; of the submethod alist so the user can still get to it.
975 (let ((save-elmt (pop index-alist)))
Barry Warsawc8520351997-11-26 06:14:40 +0000976 (push (cons prev-name
Barry Warsaw81437461996-08-01 19:48:02 +0000977 (cons save-elmt sub-method-alist))
978 index-alist))))
Barry Warsaw81437461996-08-01 19:48:02 +0000979 ;; found less indented expression, we're done.
980 (t
981 (setq looking-p nil)
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000982 (re-search-backward py-imenu-generic-regexp (point-min) t)))
983 ;; end-cond
Barry Warsaw81437461996-08-01 19:48:02 +0000984 (setq prev-name def-name)
985 (and looking-p
986 (setq looking-p
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000987 (re-search-forward py-imenu-generic-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000988 (point-max) 'move))))
989 (nreverse index-alist)))
990
Barry Warsaw88491612002-04-25 21:31:47 +0000991
992
993(defun py-choose-shell-by-shebang ()
994 "Choose CPython or JPython mode by looking at #! on the first line.
995Returns the appropriate mode function.
996Used by `py-choose-shell', and similar to but distinct from
997`set-auto-mode', though it uses `auto-mode-interpreter-regexp' (if available)."
998 ;; look for an interpreter specified in the first line
999 ;; similar to set-auto-mode (files.el)
1000 (let* ((re (if (boundp 'auto-mode-interpreter-regexp)
1001 auto-mode-interpreter-regexp
1002 ;; stolen from Emacs 21.2
1003 "#![ \t]?\\([^ \t\n]*/bin/env[ \t]\\)?\\([^ \t\n]+\\)"))
1004 (interpreter (save-excursion
1005 (goto-char (point-min))
1006 (if (looking-at re)
1007 (match-string 2)
1008 "")))
1009 elt)
1010 ;; Map interpreter name to a mode.
1011 (setq elt (assoc (file-name-nondirectory interpreter)
1012 py-shell-alist))
1013 (and elt (caddr elt))))
1014
1015
1016
1017(defun py-choose-shell-by-import ()
1018 "Choose CPython or JPython mode based imports.
1019If a file imports any packages in `py-jpython-packages', within
1020`py-import-check-point-max' characters from the start of the file,
1021return `jpython', otherwise return nil."
1022 (let (mode)
1023 (save-excursion
1024 (goto-char (point-min))
1025 (while (and (not mode)
1026 (search-forward-regexp
1027 "^\\(\\(from\\)\\|\\(import\\)\\) \\([^ \t\n.]+\\)"
1028 py-import-check-point-max t))
1029 (setq mode (and (member (match-string 4) py-jpython-packages)
1030 'jpython
1031 ))))
1032 mode))
1033
1034
1035(defun py-choose-shell ()
1036 "Choose CPython or JPython mode. Returns the appropriate mode function.
1037This does the following:
1038 - look for an interpreter with `py-choose-shell-by-shebang'
1039 - examine imports using `py-choose-shell-by-import'
1040 - default to the variable `py-default-interpreter'"
1041 (interactive)
1042 (or (py-choose-shell-by-shebang)
1043 (py-choose-shell-by-import)
1044 py-default-interpreter
1045; 'cpython ;; don't use to py-default-interpreter, because default
1046; ;; is only way to choose CPython
1047 ))
1048
Barry Warsaw42f707f1996-07-29 21:05:05 +00001049
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001050;;;###autoload
Barry Warsaw7ae77681994-12-12 20:38:05 +00001051(defun python-mode ()
1052 "Major mode for editing Python files.
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001053To submit a problem report, enter `\\[py-submit-bug-report]' from a
1054`python-mode' buffer. Do `\\[py-describe-mode]' for detailed
1055documentation. To see what version of `python-mode' you are running,
1056enter `\\[py-version]'.
1057
1058This mode knows about Python indentation, tokens, comments and
1059continuation lines. Paragraphs are separated by blank lines only.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001060
1061COMMANDS
1062\\{py-mode-map}
1063VARIABLES
1064
Barry Warsaw42f707f1996-07-29 21:05:05 +00001065py-indent-offset\t\tindentation increment
Barry Warsaw41a05c71998-08-10 16:33:12 +00001066py-block-comment-prefix\t\tcomment string used by `comment-region'
Barry Warsaw42f707f1996-07-29 21:05:05 +00001067py-python-command\t\tshell command to invoke Python interpreter
Barry Warsaw42f707f1996-07-29 21:05:05 +00001068py-temp-directory\t\tdirectory used for temp files (if needed)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001069py-beep-if-tab-change\t\tring the bell if `tab-width' is changed"
Barry Warsaw7ae77681994-12-12 20:38:05 +00001070 (interactive)
Barry Warsaw615d4a41996-09-04 14:14:10 +00001071 ;; set up local variables
Barry Warsaw7ae77681994-12-12 20:38:05 +00001072 (kill-all-local-variables)
Barry Warsaw615d4a41996-09-04 14:14:10 +00001073 (make-local-variable 'font-lock-defaults)
1074 (make-local-variable 'paragraph-separate)
1075 (make-local-variable 'paragraph-start)
1076 (make-local-variable 'require-final-newline)
1077 (make-local-variable 'comment-start)
Barry Warsaw5c8bef11996-12-17 21:56:10 +00001078 (make-local-variable 'comment-end)
Barry Warsaw615d4a41996-09-04 14:14:10 +00001079 (make-local-variable 'comment-start-skip)
1080 (make-local-variable 'comment-column)
Barry Warsaw003932a1998-07-07 15:11:24 +00001081 (make-local-variable 'comment-indent-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +00001082 (make-local-variable 'indent-region-function)
1083 (make-local-variable 'indent-line-function)
Barry Warsawb3e81d51996-09-04 15:12:42 +00001084 (make-local-variable 'add-log-current-defun-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +00001085 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +00001086 (set-syntax-table py-mode-syntax-table)
Barry Warsaw003932a1998-07-07 15:11:24 +00001087 (setq major-mode 'python-mode
1088 mode-name "Python"
1089 local-abbrev-table python-mode-abbrev-table
1090 font-lock-defaults '(python-font-lock-keywords)
1091 paragraph-separate "^[ \t]*$"
1092 paragraph-start "^[ \t]*$"
1093 require-final-newline t
1094 comment-start "# "
1095 comment-end ""
1096 comment-start-skip "# *"
1097 comment-column 40
1098 comment-indent-function 'py-comment-indent-function
1099 indent-region-function 'py-indent-region
1100 indent-line-function 'py-indent-line
Barry Warsawb3e81d51996-09-04 15:12:42 +00001101 ;; tell add-log.el how to find the current function/method/variable
1102 add-log-current-defun-function 'py-current-defun
Barry Warsawb1f89511996-09-03 16:38:30 +00001103 )
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001104 (use-local-map py-mode-map)
Barry Warsaw42f707f1996-07-29 21:05:05 +00001105 ;; add the menu
1106 (if py-menu
1107 (easy-menu-add py-menu))
Barry Warsaw57697af1995-09-14 20:01:14 +00001108 ;; Emacs 19 requires this
Barry Warsawc72c11c1997-08-09 06:42:08 +00001109 (if (boundp 'comment-multi-line)
Barry Warsaw57697af1995-09-14 20:01:14 +00001110 (setq comment-multi-line nil))
Barry Warsaw6839d3a1998-10-28 00:10:45 +00001111 ;; Install Imenu if available
Barry Warsaw742a5111998-03-13 17:29:15 +00001112 (when (py-safe (require 'imenu))
Barry Warsaw6839d3a1998-10-28 00:10:45 +00001113 (setq imenu-create-index-function #'py-imenu-create-index-function)
1114 (setq imenu-generic-expression py-imenu-generic-expression)
Barry Warsaw742a5111998-03-13 17:29:15 +00001115 (if (fboundp 'imenu-add-to-menubar)
1116 (imenu-add-to-menubar (format "%s-%s" "IM" mode-name)))
1117 )
1118 ;; Run the mode hook. Note that py-mode-hook is deprecated.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001119 (if python-mode-hook
1120 (run-hooks 'python-mode-hook)
Barry Warsaw742a5111998-03-13 17:29:15 +00001121 (run-hooks 'py-mode-hook))
1122 ;; Now do the automagical guessing
1123 (if py-smart-indentation
1124 (let ((offset py-indent-offset))
Barry Warsaw145ab1c1998-05-19 14:49:49 +00001125 ;; It's okay if this fails to guess a good value
Barry Warsaw742a5111998-03-13 17:29:15 +00001126 (if (and (py-safe (py-guess-indent-offset))
1127 (<= py-indent-offset 8)
1128 (>= py-indent-offset 2))
1129 (setq offset py-indent-offset))
1130 (setq py-indent-offset offset)
Barry Warsaw639eea61998-03-16 18:12:13 +00001131 ;; Only turn indent-tabs-mode off if tab-width !=
1132 ;; py-indent-offset. Never turn it on, because the user must
1133 ;; have explicitly turned it off.
1134 (if (/= tab-width py-indent-offset)
1135 (setq indent-tabs-mode nil))
Barry Warsaw11f21561999-07-28 21:59:43 +00001136 ))
1137 ;; Set the default shell if not already set
1138 (when (null py-which-shell)
Barry Warsaw88491612002-04-25 21:31:47 +00001139 (py-toggle-shells (py-choose-shell))))
1140
1141
1142(defun jpython-mode ()
1143 "Major mode for editing JPython/Jython files.
1144This is a simple wrapper around `python-mode'.
1145It runs `jpython-mode-hook' then calls `python-mode.'
1146It is added to `interpreter-mode-alist' and `py-choose-shell'.
1147"
1148 (interactive)
1149 (python-mode)
1150 (py-toggle-shells 'jpython)
1151 (when jpython-mode-hook
1152 (run-hooks 'jpython-mode-hook)))
1153
1154
1155;; It's handy to add recognition of Python files to the
1156;; interpreter-mode-alist and to auto-mode-alist. With the former, we
1157;; can specify different `derived-modes' based on the #! line, but
1158;; with the latter, we can't. So we just won't add them if they're
1159;; already added.
1160(let ((modes '(("jpython" . jpython-mode)
1161 ("jython" . jpython-mode)
1162 ("python" . python-mode))))
1163 (while modes
1164 (when (not (assoc (car modes) interpreter-mode-alist))
Barry Warsawcf22c822002-04-25 21:46:33 +00001165 (push (car modes) interpreter-mode-alist))
Barry Warsaw88491612002-04-25 21:31:47 +00001166 (setq modes (cdr modes))))
1167
1168(when (not (or (rassq 'python-mode auto-mode-alist)
1169 (rassq 'jpython-mode auto-mode-alist)))
1170 (push '("\\.py$" . python-mode) auto-mode-alist))
1171
Barry Warsaw7ae77681994-12-12 20:38:05 +00001172
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001173
Barry Warsawb91b7431995-03-14 15:55:20 +00001174;; electric characters
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001175(defun py-outdent-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00001176 "Returns non-nil if the current line should dedent one level."
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001177 (save-excursion
1178 (and (progn (back-to-indentation)
1179 (looking-at py-outdent-re))
Barry Warsaw1a1c6bb1999-01-09 17:22:38 +00001180 ;; short circuit infloop on illegal construct
1181 (not (bobp))
Barry Warsawf06777d1998-01-21 05:36:18 +00001182 (progn (forward-line -1)
1183 (py-goto-initial-line)
1184 (back-to-indentation)
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001185 (while (or (looking-at py-blank-or-comment-re)
1186 (bobp))
1187 (backward-to-indentation 1))
1188 (not (looking-at py-no-outdent-re)))
1189 )))
1190
Barry Warsawb91b7431995-03-14 15:55:20 +00001191(defun py-electric-colon (arg)
1192 "Insert a colon.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001193In certain cases the line is dedented appropriately. If a numeric
1194argument ARG is provided, that many colons are inserted
1195non-electrically. Electric behavior is inhibited inside a string or
1196comment."
Barry Warsawb91b7431995-03-14 15:55:20 +00001197 (interactive "P")
1198 (self-insert-command (prefix-numeric-value arg))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001199 ;; are we in a string or comment?
1200 (if (save-excursion
1201 (let ((pps (parse-partial-sexp (save-excursion
Barry Warsawab0e86c1998-05-19 15:31:46 +00001202 (py-beginning-of-def-or-class)
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001203 (point))
1204 (point))))
1205 (not (or (nth 3 pps) (nth 4 pps)))))
1206 (save-excursion
1207 (let ((here (point))
1208 (outdent 0)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001209 (indent (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001210 (if (and (not arg)
1211 (py-outdent-p)
1212 (= indent (save-excursion
Barry Warsawa7661821996-08-02 16:22:43 +00001213 (py-next-statement -1)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001214 (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001215 )
1216 (setq outdent py-indent-offset))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001217 ;; Don't indent, only dedent. This assumes that any lines
1218 ;; that are already dedented relative to
1219 ;; py-compute-indentation were put there on purpose. It's
1220 ;; highly annoying to have `:' indent for you. Use TAB, C-c
1221 ;; C-l or C-c C-r to adjust. TBD: Is there a better way to
1222 ;; determine this???
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001223 (if (< (current-indentation) indent) nil
1224 (goto-char here)
1225 (beginning-of-line)
1226 (delete-horizontal-space)
1227 (indent-to (- indent outdent))
1228 )))))
Barry Warsawb91b7431995-03-14 15:55:20 +00001229
1230
Barry Warsawa97a3f31997-11-04 18:47:06 +00001231;; Python subprocess utilities and filters
1232(defun py-execute-file (proc filename)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001233 "Send to Python interpreter process PROC \"execfile('FILENAME')\".
1234Make that process's buffer visible and force display. Also make
1235comint believe the user typed this string so that
1236`kill-output-from-shell' does The Right Thing."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001237 (let ((curbuf (current-buffer))
1238 (procbuf (process-buffer proc))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001239; (comint-scroll-to-bottom-on-output t)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001240 (msg (format "## working on region in file %s...\n" filename))
Barry Warsaw02e5f691998-09-24 23:48:40 +00001241 (cmd (format "execfile(r'%s')\n" filename)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001242 (unwind-protect
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001243 (save-excursion
Barry Warsawa97a3f31997-11-04 18:47:06 +00001244 (set-buffer procbuf)
1245 (goto-char (point-max))
1246 (move-marker (process-mark proc) (point))
1247 (funcall (process-filter proc) proc msg))
1248 (set-buffer curbuf))
1249 (process-send-string proc cmd)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001250
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001251(defun py-comint-output-filter-function (string)
1252 "Watch output for Python prompt and exec next file waiting in queue.
1253This function is appropriate for `comint-output-filter-functions'."
Barry Warsaw014e0e21998-11-17 19:24:47 +00001254 ;; TBD: this should probably use split-string
Barry Warsaw4f94c731998-09-25 19:40:10 +00001255 (when (and (or (string-equal string ">>> ")
Barry Warsaw4f94c731998-09-25 19:40:10 +00001256 (and (>= (length string) 5)
1257 (string-equal (substring string -5) "\n>>> ")))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001258 py-file-queue)
Barry Warsaw17afa132002-04-26 15:49:52 +00001259 (pop-to-buffer (current-buffer))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001260 (py-safe (delete-file (car py-file-queue)))
1261 (setq py-file-queue (cdr py-file-queue))
1262 (if py-file-queue
1263 (let ((pyproc (get-buffer-process (current-buffer))))
1264 (py-execute-file pyproc (car py-file-queue))))
1265 ))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001266
Barry Warsaw4f577d22001-04-11 20:23:17 +00001267(defun py-pdbtrack-overlay-arrow (activation)
1268 "Activate or de arrow at beginning-of-line in current buffer."
1269 ;; This was derived/simplified from edebug-overlay-arrow
1270 (cond (activation
1271 (setq overlay-arrow-position (make-marker))
1272 (setq overlay-arrow-string "=>")
1273 (set-marker overlay-arrow-position (py-point 'bol) (current-buffer))
1274 (setq py-pdbtrack-is-tracking-p t))
1275 (overlay-arrow-position
1276 (setq overlay-arrow-position nil)
1277 (setq py-pdbtrack-is-tracking-p nil))
1278 ))
1279
1280(defun py-pdbtrack-track-stack-file (text)
1281 "Show the file indicated by the pdb stack entry line, in a separate window.
1282
1283Activity is disabled if the buffer-local variable
1284`py-pdbtrack-do-tracking-p' is nil.
1285
1286We depend on the pdb input prompt matching `py-pdbtrack-input-prompt'
Ken Manheimere7aca522003-03-03 00:35:32 +00001287at the beginning of the line.
1288
1289If the traceback target file path is invalid, we look for the most
1290recently visited python-mode buffer which either has the name of the
1291current function \(or class) or which defines the function \(or
1292class). This is to provide for remote scripts, eg, Zope's 'Script
Ken Manheimer595adce2003-05-01 20:46:14 +00001293(Python)' - put a _copy_ of the script in a buffer named for the
1294script, and set to python-mode, and pdbtrack will find it.)"
Barry Warsaw4f577d22001-04-11 20:23:17 +00001295 ;; Instead of trying to piece things together from partial text
1296 ;; (which can be almost useless depending on Emacs version), we
1297 ;; monitor to the point where we have the next pdb prompt, and then
1298 ;; check all text from comint-last-input-end to process-mark.
1299 ;;
Ken Manheimere7aca522003-03-03 00:35:32 +00001300 ;; Also, we're very conservative about clearing the overlay arrow,
1301 ;; to minimize residue. This means, for instance, that executing
1302 ;; other pdb commands wipe out the highlight. You can always do a
1303 ;; 'where' (aka 'w') command to reveal the overlay arrow.
Barry Warsaw4f577d22001-04-11 20:23:17 +00001304 (let* ((origbuf (current-buffer))
1305 (currproc (get-buffer-process origbuf)))
Ken Manheimere7aca522003-03-03 00:35:32 +00001306
Barry Warsaw4f577d22001-04-11 20:23:17 +00001307 (if (not (and currproc py-pdbtrack-do-tracking-p))
1308 (py-pdbtrack-overlay-arrow nil)
Ken Manheimere7aca522003-03-03 00:35:32 +00001309
1310 (let* ((procmark (process-mark currproc))
Barry Warsaw4f577d22001-04-11 20:23:17 +00001311 (block (buffer-substring (max comint-last-input-end
1312 (- procmark
1313 py-pdbtrack-track-range))
1314 procmark))
Ken Manheimere7aca522003-03-03 00:35:32 +00001315 target target_fname target_lineno)
1316
Barry Warsaw4f577d22001-04-11 20:23:17 +00001317 (if (not (string-match (concat py-pdbtrack-input-prompt "$") block))
1318 (py-pdbtrack-overlay-arrow nil)
Ken Manheimere7aca522003-03-03 00:35:32 +00001319
1320 (setq target (py-pdbtrack-get-source-buffer block))
1321
1322 (if (stringp target)
1323 (message "pdbtrack: %s" target)
1324
1325 (setq target_lineno (car target))
1326 (setq target_buffer (cadr target))
1327 (setq target_fname (buffer-file-name target_buffer))
1328 (switch-to-buffer-other-window target_buffer)
1329 (goto-line target_lineno)
1330 (message "pdbtrack: line %s, file %s" target_lineno target_fname)
1331 (py-pdbtrack-overlay-arrow t)
1332 (pop-to-buffer origbuf t)
1333
1334 )))))
1335 )
1336
1337(defun py-pdbtrack-get-source-buffer (block)
1338 "Return line number and buffer of code indicated by block's traceback text.
1339
1340We look first to visit the file indicated in the trace.
1341
1342Failing that, we look for the most recently visited python-mode buffer
1343with the same name or having
1344having the named function.
1345
1346If we're unable find the source code we return a string describing the
1347problem as best as we can determine."
1348
1349 (if (not (string-match py-pdbtrack-stack-entry-regexp block))
1350
1351 "Traceback cue not found"
1352
1353 (let* ((filename (match-string 1 block))
1354 (lineno (string-to-int (match-string 2 block)))
1355 (funcname (match-string 3 block))
1356 funcbuffer)
1357
1358 (cond ((file-exists-p filename)
1359 (list lineno (find-file-noselect filename)))
1360
1361 ((setq funcbuffer (py-pdbtrack-grub-for-buffer funcname lineno))
1362 (if (string-match "/Script (Python)$" filename)
1363 ;; Add in number of lines for leading '##' comments:
1364 (setq lineno
1365 (+ lineno
1366 (save-excursion
1367 (set-buffer funcbuffer)
1368 (count-lines
1369 (point-min)
Ken Manheimerad428cd2003-03-03 04:05:03 +00001370 (max (point-min)
1371 (string-match "^\\([^#]\\|#[^#]\\|#$\\)"
1372 (buffer-substring (point-min)
Ken Manheimer8e9b80f2003-06-17 19:18:57 +00001373 (point-max)))
Ken Manheimerad428cd2003-03-03 04:05:03 +00001374 ))))))
Ken Manheimere7aca522003-03-03 00:35:32 +00001375 (list lineno funcbuffer))
1376
1377 ((= (elt filename 0) ?\<)
1378 (format "(Non-file source: '%s')" filename))
1379
Ken Manheimer595adce2003-05-01 20:46:14 +00001380 (t (format "Not found: %s(), %s" funcname filename)))
Ken Manheimere7aca522003-03-03 00:35:32 +00001381 )
1382 )
1383 )
1384
1385(defun py-pdbtrack-grub-for-buffer (funcname lineno)
1386 "Find most recent buffer itself named or having function funcname.
1387
Ken Manheimered6000a2003-03-03 17:09:44 +00001388We first check the last buffer this function found, if any, then walk
1389throught the buffer-list history for python-mode buffers that are
1390named for funcname or define a function funcname."
Ken Manheimere7aca522003-03-03 00:35:32 +00001391 (let ((buffers (buffer-list))
Ken Manheimere7aca522003-03-03 00:35:32 +00001392 curbuf
1393 got)
1394 (while (and buffers (not got))
1395 (setq buf (car buffers)
1396 buffers (cdr buffers))
Ken Manheimered6000a2003-03-03 17:09:44 +00001397 (if (and (save-excursion (set-buffer buf)
1398 (string= major-mode "python-mode"))
1399 (or (string-match funcname (buffer-name buf))
Ken Manheimere7aca522003-03-03 00:35:32 +00001400 (string-match (concat "^\\s-*\\(def\\|class\\)\\s-+"
1401 funcname "\\s-*(")
Ken Manheimer8e9b80f2003-06-17 19:18:57 +00001402 (save-excursion
1403 (set-buffer buf)
1404 (buffer-substring (point-min)
1405 (point-max))))))
Ken Manheimere7aca522003-03-03 00:35:32 +00001406 (setq got buf)))
Ken Manheimered6000a2003-03-03 17:09:44 +00001407 (setq py-pdbtrack-last-grubbed-buffer got)))
Barry Warsaw4f577d22001-04-11 20:23:17 +00001408
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001409(defun py-postprocess-output-buffer (buf)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001410 "Highlight exceptions found in BUF.
1411If an exception occurred return t, otherwise return nil. BUF must exist."
Barry Warsawf9b99f41998-03-26 16:08:59 +00001412 (let (line file bol err-p)
Barry Warsaw9981d221997-12-03 05:25:48 +00001413 (save-excursion
1414 (set-buffer buf)
1415 (beginning-of-buffer)
1416 (while (re-search-forward py-traceback-line-re nil t)
1417 (setq file (match-string 1)
1418 line (string-to-int (match-string 2))
1419 bol (py-point 'bol))
Barry Warsawf9b99f41998-03-26 16:08:59 +00001420 (py-highlight-line bol (py-point 'eol) file line)))
1421 (when (and py-jump-on-exception line)
1422 (beep)
1423 (py-jump-to-exception file line)
1424 (setq err-p t))
1425 err-p))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001426
Barry Warsaw9981d221997-12-03 05:25:48 +00001427
Barry Warsawa97a3f31997-11-04 18:47:06 +00001428
1429;;; Subprocess commands
1430
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001431;; only used when (memq 'broken-temp-names py-emacs-features)
1432(defvar py-serial-number 0)
1433(defvar py-exception-buffer nil)
1434(defconst py-output-buffer "*Python Output*")
Barry Warsawa2398801998-04-09 23:28:20 +00001435(make-variable-buffer-local 'py-output-buffer)
1436
1437;; for toggling between CPython and JPython
Barry Warsawaa384fd1999-02-16 23:36:16 +00001438(defvar py-which-shell nil)
Barry Warsawa2398801998-04-09 23:28:20 +00001439(defvar py-which-args py-python-command-args)
1440(defvar py-which-bufname "Python")
1441(make-variable-buffer-local 'py-which-shell)
1442(make-variable-buffer-local 'py-which-args)
1443(make-variable-buffer-local 'py-which-bufname)
1444
1445(defun py-toggle-shells (arg)
1446 "Toggles between the CPython and JPython shells.
Barry Warsaw11f21561999-07-28 21:59:43 +00001447
Barry Warsaw41a05c71998-08-10 16:33:12 +00001448With positive argument ARG (interactively \\[universal-argument]),
1449uses the CPython shell, with negative ARG uses the JPython shell, and
Barry Warsaw11f21561999-07-28 21:59:43 +00001450with a zero argument, toggles the shell.
1451
1452Programmatically, ARG can also be one of the symbols `cpython' or
1453`jpython', equivalent to positive arg and negative arg respectively."
Barry Warsawa2398801998-04-09 23:28:20 +00001454 (interactive "P")
1455 ;; default is to toggle
1456 (if (null arg)
1457 (setq arg 0))
Barry Warsaw11f21561999-07-28 21:59:43 +00001458 ;; preprocess arg
1459 (cond
1460 ((equal arg 0)
1461 ;; toggle
1462 (if (string-equal py-which-bufname "Python")
1463 (setq arg -1)
1464 (setq arg 1)))
1465 ((equal arg 'cpython) (setq arg 1))
1466 ((equal arg 'jpython) (setq arg -1)))
Barry Warsawa2398801998-04-09 23:28:20 +00001467 (let (msg)
1468 (cond
1469 ((< 0 arg)
1470 ;; set to CPython
1471 (setq py-which-shell py-python-command
1472 py-which-args py-python-command-args
1473 py-which-bufname "Python"
1474 msg "CPython"
1475 mode-name "Python"))
1476 ((> 0 arg)
1477 (setq py-which-shell py-jpython-command
1478 py-which-args py-jpython-command-args
1479 py-which-bufname "JPython"
1480 msg "JPython"
1481 mode-name "JPython"))
1482 )
Barry Warsawea609c11998-04-10 16:08:26 +00001483 (message "Using the %s shell" msg)
Barry Warsawa2398801998-04-09 23:28:20 +00001484 (setq py-output-buffer (format "*%s Output*" py-which-bufname))))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001485
Barry Warsawa97a3f31997-11-04 18:47:06 +00001486;;;###autoload
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001487(defun py-shell (&optional argprompt)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001488 "Start an interactive Python interpreter in another window.
1489This is like Shell mode, except that Python is running in the window
1490instead of a shell. See the `Interactive Shell' and `Shell Mode'
1491sections of the Emacs manual for details, especially for the key
1492bindings active in the `*Python*' buffer.
1493
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001494With optional \\[universal-argument], the user is prompted for the
1495flags to pass to the Python interpreter. This has no effect when this
1496command is used to switch to an existing process, only when a new
1497process is started. If you use this, you will probably want to ensure
1498that the current arguments are retained (they will be included in the
1499prompt). This argument is ignored when this function is called
1500programmatically, or when running in Emacs 19.34 or older.
1501
Barry Warsawa2398801998-04-09 23:28:20 +00001502Note: You can toggle between using the CPython interpreter and the
1503JPython interpreter by hitting \\[py-toggle-shells]. This toggles
1504buffer local variables which control whether all your subshell
1505interactions happen to the `*JPython*' or `*Python*' buffers (the
1506latter is the name used for the CPython buffer).
1507
Barry Warsawa97a3f31997-11-04 18:47:06 +00001508Warning: Don't use an interactive Python if you change sys.ps1 or
1509sys.ps2 from their default values, or if you're running code that
1510prints `>>> ' or `... ' at the start of a line. `python-mode' can't
1511distinguish your output from Python's output, and assumes that `>>> '
1512at the start of a line is a prompt from Python. Similarly, the Emacs
1513Shell mode code assumes that both `>>> ' and `... ' at the start of a
1514line are Python prompts. Bad things can happen if you fool either
1515mode.
1516
1517Warning: If you do any editing *in* the process buffer *while* the
1518buffer is accepting output from Python, do NOT attempt to `undo' the
1519changes. Some of the output (nowhere near the parts you changed!) may
1520be lost if you do. This appears to be an Emacs bug, an unfortunate
1521interaction between undo and process filters; the same problem exists in
1522non-Python process buffers using the default (Emacs-supplied) process
1523filter."
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001524 (interactive "P")
Barry Warsaw50765ab1999-08-10 21:49:00 +00001525 ;; Set the default shell if not already set
1526 (when (null py-which-shell)
1527 (py-toggle-shells py-default-interpreter))
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001528 (let ((args py-which-args))
1529 (when (and argprompt
1530 (interactive-p)
1531 (fboundp 'split-string))
1532 ;; TBD: Perhaps force "-i" in the final list?
1533 (setq args (split-string
1534 (read-string (concat py-which-bufname
1535 " arguments: ")
1536 (concat
1537 (mapconcat 'identity py-which-args " ") " ")
1538 ))))
1539 (switch-to-buffer-other-window
1540 (apply 'make-comint py-which-bufname py-which-shell nil args))
1541 (make-local-variable 'comint-prompt-regexp)
1542 (setq comint-prompt-regexp "^>>> \\|^[.][.][.] \\|^(pdb) ")
1543 (add-hook 'comint-output-filter-functions
1544 'py-comint-output-filter-function)
Barry Warsaw4f577d22001-04-11 20:23:17 +00001545 ;; pdbtrack
1546 (add-hook 'comint-output-filter-functions 'py-pdbtrack-track-stack-file)
1547 (setq py-pdbtrack-do-tracking-p t)
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001548 (set-syntax-table py-mode-syntax-table)
1549 (use-local-map py-shell-map)
Barry Warsaw56bd2ed2002-04-25 15:44:17 +00001550 (run-hooks 'py-shell-hook)
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001551 ))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001552
Barry Warsawa97a3f31997-11-04 18:47:06 +00001553(defun py-clear-queue ()
1554 "Clear the queue of temporary files waiting to execute."
1555 (interactive)
1556 (let ((n (length py-file-queue)))
1557 (mapcar 'delete-file py-file-queue)
1558 (setq py-file-queue nil)
1559 (message "%d pending files de-queued." n)))
1560
Barry Warsaw820273d1998-05-19 15:54:45 +00001561
Barry Warsawa97a3f31997-11-04 18:47:06 +00001562(defun py-execute-region (start end &optional async)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001563 "Execute the region in a Python interpreter.
1564
Barry Warsawa97a3f31997-11-04 18:47:06 +00001565The region is first copied into a temporary file (in the directory
1566`py-temp-directory'). If there is no Python interpreter shell
1567running, this file is executed synchronously using
Barry Warsaw41a05c71998-08-10 16:33:12 +00001568`shell-command-on-region'. If the program is long running, use
1569\\[universal-argument] to run the command asynchronously in its own
1570buffer.
1571
1572When this function is used programmatically, arguments START and END
1573specify the region to execute, and optional third argument ASYNC, if
1574non-nil, specifies to run the command asynchronously in its own
1575buffer.
Barry Warsawa97a3f31997-11-04 18:47:06 +00001576
1577If the Python interpreter shell is running, the region is execfile()'d
1578in that shell. If you try to execute regions too quickly,
1579`python-mode' will queue them up and execute them one at a time when
1580it sees a `>>> ' prompt from Python. Each time this happens, the
1581process buffer is popped into a window (if it's not already in some
1582window) so you can see it, and a comment of the form
1583
1584 \t## working on region in file <name>...
1585
1586is inserted at the end. See also the command `py-clear-queue'."
1587 (interactive "r\nP")
Barry Warsaw4aab68e2002-04-25 19:17:42 +00001588 ;; Skip ahead to the first non-blank line
Barry Warsaw014e0e21998-11-17 19:24:47 +00001589 (let* ((proc (get-process py-which-bufname))
Barry Warsaw5e21cb01997-11-05 18:41:11 +00001590 (temp (if (memq 'broken-temp-names py-emacs-features)
Barry Warsaw1b344241998-08-07 22:24:16 +00001591 (let
1592 ((sn py-serial-number)
1593 (pid (and (fboundp 'emacs-pid) (emacs-pid))))
1594 (setq py-serial-number (1+ py-serial-number))
1595 (if pid
1596 (format "python-%d-%d" sn pid)
1597 (format "python-%d" sn)))
Barry Warsaw2f32fbb1998-02-25 16:45:43 +00001598 (make-temp-name "python-")))
Barry Warsawb2d5e622002-04-22 15:29:27 +00001599 (file (concat (expand-file-name temp py-temp-directory) ".py"))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001600 (cur (current-buffer))
Barry Warsawb2d5e622002-04-22 15:29:27 +00001601 (buf (get-buffer-create file))
1602 shell)
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001603 ;; Write the contents of the buffer, watching out for indented regions.
1604 (save-excursion
1605 (goto-char start)
Barry Warsaw69c92662002-05-12 17:37:46 +00001606 (beginning-of-line)
1607 (while (and (looking-at "\\s *$")
1608 (< (point) end))
1609 (forward-line 1))
1610 (setq start (point))
1611 (or (< start end)
1612 (error "Region is empty"))
Barry Warsaw99eadf42000-06-23 20:24:25 +00001613 (let ((needs-if (/= (py-point 'bol) (py-point 'boi))))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001614 (set-buffer buf)
Barry Warsawb2d5e622002-04-22 15:29:27 +00001615 (python-mode)
Barry Warsaw99eadf42000-06-23 20:24:25 +00001616 (when needs-if
1617 (insert "if 1:\n"))
Barry Warsawa0113cd2002-04-22 16:23:29 +00001618 (insert-buffer-substring cur start end)
1619 ;; Set the shell either to the #! line command, or to the
1620 ;; py-which-shell buffer local variable.
Barry Warsaw88491612002-04-25 21:31:47 +00001621 (setq shell (or (py-choose-shell-by-shebang)
1622 (py-choose-shell-by-import)
1623 py-which-shell))))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001624 (cond
Barry Warsaw145ab1c1998-05-19 14:49:49 +00001625 ;; always run the code in its own asynchronous subprocess
Barry Warsawa97a3f31997-11-04 18:47:06 +00001626 (async
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001627 ;; User explicitly wants this to run in its own async subprocess
1628 (save-excursion
1629 (set-buffer buf)
1630 (write-region (point-min) (point-max) file nil 'nomsg))
Barry Warsaw34d83171998-11-20 03:04:07 +00001631 (let* ((buf (generate-new-buffer-name py-output-buffer))
1632 ;; TBD: a horrible hack, but why create new Custom variables?
1633 (arg (if (string-equal py-which-bufname "Python")
1634 "-u" "")))
Barry Warsawb2d5e622002-04-22 15:29:27 +00001635 (start-process py-which-bufname buf shell arg file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001636 (pop-to-buffer buf)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001637 (py-postprocess-output-buffer buf)
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001638 ;; TBD: clean up the temporary file!
Barry Warsawa97a3f31997-11-04 18:47:06 +00001639 ))
1640 ;; if the Python interpreter shell is running, queue it up for
1641 ;; execution there.
1642 (proc
1643 ;; use the existing python shell
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001644 (save-excursion
1645 (set-buffer buf)
1646 (write-region (point-min) (point-max) file nil 'nomsg))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001647 (if (not py-file-queue)
1648 (py-execute-file proc file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001649 (message "File %s queued for execution" file))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001650 (setq py-file-queue (append py-file-queue (list file)))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001651 (setq py-exception-buffer (cons file (current-buffer))))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001652 (t
Barry Warsawa0113cd2002-04-22 16:23:29 +00001653 ;; TBD: a horrible hack, but why create new Custom variables?
1654 (let ((cmd (concat shell (if (string-equal py-which-bufname "JPython")
1655 " -" ""))))
Barry Warsaw34d83171998-11-20 03:04:07 +00001656 ;; otherwise either run it synchronously in a subprocess
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001657 (save-excursion
1658 (set-buffer buf)
1659 (shell-command-on-region (point-min) (point-max)
1660 cmd py-output-buffer))
Barry Warsaw34d83171998-11-20 03:04:07 +00001661 ;; shell-command-on-region kills the output buffer if it never
1662 ;; existed and there's no output from the command
1663 (if (not (get-buffer py-output-buffer))
1664 (message "No output.")
1665 (setq py-exception-buffer (current-buffer))
1666 (let ((err-p (py-postprocess-output-buffer py-output-buffer)))
1667 (pop-to-buffer py-output-buffer)
1668 (if err-p
1669 (pop-to-buffer py-exception-buffer)))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001670 ))
Barry Warsaw29a90f02002-04-22 21:48:20 +00001671 ))
Barry Warsaw71534602001-02-20 23:07:56 +00001672 ;; Clean up after ourselves.
1673 (kill-buffer buf)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001674
Barry Warsaw820273d1998-05-19 15:54:45 +00001675
1676;; Code execution commands
Barry Warsawa97a3f31997-11-04 18:47:06 +00001677(defun py-execute-buffer (&optional async)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001678 "Send the contents of the buffer to a Python interpreter.
Barry Warsawc0ecb531998-01-20 21:43:34 +00001679If the file local variable `py-master-file' is non-nil, execute the
1680named file instead of the buffer's file.
1681
Barry Warsaw7ae77681994-12-12 20:38:05 +00001682If there is a *Python* process buffer it is used. If a clipping
1683restriction is in effect, only the accessible portion of the buffer is
1684sent. A trailing newline will be supplied if needed.
1685
Barry Warsaw41a05c71998-08-10 16:33:12 +00001686See the `\\[py-execute-region]' docs for an account of some
1687subtleties, including the use of the optional ASYNC argument."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001688 (interactive "P")
Barry Warsawc0ecb531998-01-20 21:43:34 +00001689 (if py-master-file
1690 (let* ((filename (expand-file-name py-master-file))
1691 (buffer (or (get-file-buffer filename)
1692 (find-file-noselect filename))))
1693 (set-buffer buffer)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001694 (py-execute-region (point-min) (point-max) async))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001695
Barry Warsaw820273d1998-05-19 15:54:45 +00001696(defun py-execute-import-or-reload (&optional async)
1697 "Import the current buffer's file in a Python interpreter.
1698
1699If the file has already been imported, then do reload instead to get
Barry Warsaw7c29b231998-07-07 17:45:38 +00001700the latest version.
1701
1702If the file's name does not end in \".py\", then do execfile instead.
1703
1704If the current buffer is not visiting a file, do `py-execute-buffer'
1705instead.
1706
1707If the file local variable `py-master-file' is non-nil, import or
1708reload the named file instead of the buffer's file. The file may be
1709saved based on the value of `py-execute-import-or-reload-save-p'.
Barry Warsaw820273d1998-05-19 15:54:45 +00001710
Barry Warsaw41a05c71998-08-10 16:33:12 +00001711See the `\\[py-execute-region]' docs for an account of some
1712subtleties, including the use of the optional ASYNC argument.
Barry Warsaw820273d1998-05-19 15:54:45 +00001713
Barry Warsaw7c29b231998-07-07 17:45:38 +00001714This may be preferable to `\\[py-execute-buffer]' because:
Barry Warsaw820273d1998-05-19 15:54:45 +00001715
1716 - Definitions stay in their module rather than appearing at top
1717 level, where they would clutter the global namespace and not affect
1718 uses of qualified names (MODULE.NAME).
1719
1720 - The Python debugger gets line number information about the functions."
1721 (interactive "P")
1722 ;; Check file local variable py-master-file
1723 (if py-master-file
1724 (let* ((filename (expand-file-name py-master-file))
1725 (buffer (or (get-file-buffer filename)
1726 (find-file-noselect filename))))
1727 (set-buffer buffer)))
1728 (let ((file (buffer-file-name (current-buffer))))
1729 (if file
1730 (progn
Barry Warsaw3bfed5b1998-05-19 16:25:04 +00001731 ;; Maybe save some buffers
1732 (save-some-buffers (not py-ask-about-save) nil)
Barry Warsaw820273d1998-05-19 15:54:45 +00001733 (py-execute-string
1734 (if (string-match "\\.py$" file)
1735 (let ((f (file-name-sans-extension
1736 (file-name-nondirectory file))))
1737 (format "if globals().has_key('%s'):\n reload(%s)\nelse:\n import %s\n"
1738 f f f))
Barry Warsaw02e5f691998-09-24 23:48:40 +00001739 (format "execfile(r'%s')\n" file))
Barry Warsaw820273d1998-05-19 15:54:45 +00001740 async))
1741 ;; else
1742 (py-execute-buffer async))))
1743
1744
1745(defun py-execute-def-or-class (&optional async)
1746 "Send the current function or class definition to a Python interpreter.
1747
1748If there is a *Python* process buffer it is used.
1749
Barry Warsaw41a05c71998-08-10 16:33:12 +00001750See the `\\[py-execute-region]' docs for an account of some
1751subtleties, including the use of the optional ASYNC argument."
Barry Warsaw820273d1998-05-19 15:54:45 +00001752 (interactive "P")
1753 (save-excursion
1754 (py-mark-def-or-class)
1755 ;; mark is before point
1756 (py-execute-region (mark) (point) async)))
1757
1758
1759(defun py-execute-string (string &optional async)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001760 "Send the argument STRING to a Python interpreter.
Barry Warsaw820273d1998-05-19 15:54:45 +00001761
1762If there is a *Python* process buffer it is used.
1763
Barry Warsaw41a05c71998-08-10 16:33:12 +00001764See the `\\[py-execute-region]' docs for an account of some
1765subtleties, including the use of the optional ASYNC argument."
Barry Warsaw820273d1998-05-19 15:54:45 +00001766 (interactive "sExecute Python command: ")
1767 (save-excursion
1768 (set-buffer (get-buffer-create
1769 (generate-new-buffer-name " *Python Command*")))
1770 (insert string)
1771 (py-execute-region (point-min) (point-max) async)))
1772
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001773
1774
1775(defun py-jump-to-exception (file line)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001776 "Jump to the Python code in FILE at LINE."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001777 (let ((buffer (cond ((string-equal file "<stdin>")
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001778 (if (consp py-exception-buffer)
1779 (cdr py-exception-buffer)
1780 py-exception-buffer))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001781 ((and (consp py-exception-buffer)
1782 (string-equal file (car py-exception-buffer)))
1783 (cdr py-exception-buffer))
1784 ((py-safe (find-file-noselect file)))
1785 ;; could not figure out what file the exception
1786 ;; is pointing to, so prompt for it
1787 (t (find-file (read-file-name "Exception file: "
1788 nil
1789 file t))))))
1790 (pop-to-buffer buffer)
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001791 ;; Force Python mode
Barry Warsaw820273d1998-05-19 15:54:45 +00001792 (if (not (eq major-mode 'python-mode))
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001793 (python-mode))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001794 (goto-line line)
1795 (message "Jumping to exception in file %s on line %d" file line)))
1796
1797(defun py-mouseto-exception (event)
Barry Warsaw12c92941998-08-10 21:44:37 +00001798 "Jump to the code which caused the Python exception at EVENT.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001799EVENT is usually a mouse click."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001800 (interactive "e")
1801 (cond
1802 ((fboundp 'event-point)
1803 ;; XEmacs
1804 (let* ((point (event-point event))
1805 (buffer (event-buffer event))
1806 (e (and point buffer (extent-at point buffer 'py-exc-info)))
1807 (info (and e (extent-property e 'py-exc-info))))
1808 (message "Event point: %d, info: %s" point info)
1809 (and info
1810 (py-jump-to-exception (car info) (cdr info)))
1811 ))
1812 ;; Emacs -- Please port this!
1813 ))
1814
1815(defun py-goto-exception ()
1816 "Go to the line indicated by the traceback."
1817 (interactive)
1818 (let (file line)
1819 (save-excursion
1820 (beginning-of-line)
1821 (if (looking-at py-traceback-line-re)
1822 (setq file (match-string 1)
1823 line (string-to-int (match-string 2)))))
1824 (if (not file)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001825 (error "Not on a traceback line"))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001826 (py-jump-to-exception file line)))
1827
1828(defun py-find-next-exception (start buffer searchdir errwhere)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001829 "Find the next Python exception and jump to the code that caused it.
1830START is the buffer position in BUFFER from which to begin searching
1831for an exception. SEARCHDIR is a function, either
1832`re-search-backward' or `re-search-forward' indicating the direction
1833to search. ERRWHERE is used in an error message if the limit (top or
1834bottom) of the trackback stack is encountered."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001835 (let (file line)
1836 (save-excursion
1837 (set-buffer buffer)
1838 (goto-char (py-point start))
1839 (if (funcall searchdir py-traceback-line-re nil t)
1840 (setq file (match-string 1)
1841 line (string-to-int (match-string 2)))))
1842 (if (and file line)
1843 (py-jump-to-exception file line)
1844 (error "%s of traceback" errwhere))))
1845
1846(defun py-down-exception (&optional bottom)
1847 "Go to the next line down in the traceback.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001848With \\[univeral-argument] (programmatically, optional argument
1849BOTTOM), jump to the bottom (innermost) exception in the exception
1850stack."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001851 (interactive "P")
1852 (let* ((proc (get-process "Python"))
1853 (buffer (if proc "*Python*" py-output-buffer)))
1854 (if bottom
1855 (py-find-next-exception 'eob buffer 're-search-backward "Bottom")
1856 (py-find-next-exception 'eol buffer 're-search-forward "Bottom"))))
1857
1858(defun py-up-exception (&optional top)
1859 "Go to the previous line up in the traceback.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001860With \\[universal-argument] (programmatically, optional argument TOP)
1861jump to the top (outermost) exception in the exception stack."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001862 (interactive "P")
1863 (let* ((proc (get-process "Python"))
1864 (buffer (if proc "*Python*" py-output-buffer)))
1865 (if top
1866 (py-find-next-exception 'bob buffer 're-search-forward "Top")
Barry Warsawffbc17d1997-11-27 20:08:14 +00001867 (py-find-next-exception 'bol buffer 're-search-backward "Top"))))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001868
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001869
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001870;; Electric deletion
1871(defun py-electric-backspace (arg)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001872 "Delete preceding character or levels of indentation.
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001873Deletion is performed by calling the function in `py-backspace-function'
Barry Warsawb0539931996-12-17 22:05:07 +00001874with a single argument (the number of characters to delete).
Barry Warsaw7ae77681994-12-12 20:38:05 +00001875
Barry Warsaw41a05c71998-08-10 16:33:12 +00001876If point is at the leftmost column, delete the preceding newline.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001877
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001878Otherwise, if point is at the leftmost non-whitespace character of a
1879line that is neither a continuation line nor a non-indenting comment
1880line, or if point is at the end of a blank line, this command reduces
1881the indentation to match that of the line that opened the current
1882block of code. The line that opened the block is displayed in the
Barry Warsaw41a05c71998-08-10 16:33:12 +00001883echo area to help you keep track of where you are. With
1884\\[universal-argument] dedents that many blocks (but not past column
1885zero).
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001886
1887Otherwise the preceding character is deleted, converting a tab to
1888spaces if needed so that only a single column position is deleted.
Barry Warsawfa2def21999-05-24 21:43:37 +00001889\\[universal-argument] specifies how many characters to delete;
1890default is 1.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001891
1892When used programmatically, argument ARG specifies the number of
1893blocks to dedent, or the number of characters to delete, as indicated
1894above."
Barry Warsaw03970731996-07-03 23:12:52 +00001895 (interactive "*p")
Barry Warsaw7ae77681994-12-12 20:38:05 +00001896 (if (or (/= (current-indentation) (current-column))
1897 (bolp)
1898 (py-continuation-line-p)
Barry Warsawfa2def21999-05-24 21:43:37 +00001899; (not py-honor-comment-indentation)
1900; (looking-at "#[^ \t\n]") ; non-indenting #
1901 )
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001902 (funcall py-backspace-function arg)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001903 ;; else indent the same as the colon line that opened the block
Barry Warsaw7ae77681994-12-12 20:38:05 +00001904 ;; force non-blank so py-goto-block-up doesn't ignore it
1905 (insert-char ?* 1)
1906 (backward-char)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001907 (let ((base-indent 0) ; indentation of base line
1908 (base-text "") ; and text of base line
1909 (base-found-p nil))
Barry Warsaw03970731996-07-03 23:12:52 +00001910 (save-excursion
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001911 (while (< 0 arg)
Barry Warsaw03970731996-07-03 23:12:52 +00001912 (condition-case nil ; in case no enclosing block
1913 (progn
1914 (py-goto-block-up 'no-mark)
1915 (setq base-indent (current-indentation)
1916 base-text (py-suck-up-leading-text)
1917 base-found-p t))
1918 (error nil))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001919 (setq arg (1- arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001920 (delete-char 1) ; toss the dummy character
1921 (delete-horizontal-space)
1922 (indent-to base-indent)
1923 (if base-found-p
1924 (message "Closes block: %s" base-text)))))
1925
Barry Warsawfc8a01f1995-03-09 16:07:29 +00001926
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001927(defun py-electric-delete (arg)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001928 "Delete preceding or following character or levels of whitespace.
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001929
1930The behavior of this function depends on the variable
1931`delete-key-deletes-forward'. If this variable is nil (or does not
Barry Warsaw41a05c71998-08-10 16:33:12 +00001932exist, as in older Emacsen and non-XEmacs versions), then this
1933function behaves identically to \\[c-electric-backspace].
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001934
1935If `delete-key-deletes-forward' is non-nil and is supported in your
1936Emacs, then deletion occurs in the forward direction, by calling the
Barry Warsaw41a05c71998-08-10 16:33:12 +00001937function in `py-delete-function'.
1938
1939\\[universal-argument] (programmatically, argument ARG) specifies the
1940number of characters to delete (default is 1)."
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001941 (interactive "*p")
Barry Warsaw1d7b0fa1999-01-15 02:12:31 +00001942 (if (or (and (fboundp 'delete-forward-p) ;XEmacs 21
1943 (delete-forward-p))
1944 (and (boundp 'delete-key-deletes-forward) ;XEmacs 20
1945 delete-key-deletes-forward))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001946 (funcall py-delete-function arg)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001947 (py-electric-backspace arg)))
1948
1949;; required for pending-del and delsel modes
1950(put 'py-electric-backspace 'delete-selection 'supersede) ;delsel
1951(put 'py-electric-backspace 'pending-delete 'supersede) ;pending-del
1952(put 'py-electric-delete 'delete-selection 'supersede) ;delsel
1953(put 'py-electric-delete 'pending-delete 'supersede) ;pending-del
1954
1955
1956
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001957(defun py-indent-line (&optional arg)
1958 "Fix the indentation of the current line according to Python rules.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001959With \\[universal-argument] (programmatically, the optional argument
1960ARG non-nil), ignore dedenting rules for block closing statements
1961(e.g. return, raise, break, continue, pass)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001962
1963This function is normally bound to `indent-line-function' so
1964\\[indent-for-tab-command] will call it."
1965 (interactive "P")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001966 (let* ((ci (current-indentation))
1967 (move-to-indentation-p (<= (current-column) ci))
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001968 (need (py-compute-indentation (not arg))))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001969 ;; see if we need to dedent
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001970 (if (py-outdent-p)
Barry Warsaw0012c1e1995-03-14 16:32:55 +00001971 (setq need (- need py-indent-offset)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001972 (if (/= ci need)
1973 (save-excursion
1974 (beginning-of-line)
1975 (delete-horizontal-space)
1976 (indent-to need)))
1977 (if move-to-indentation-p (back-to-indentation))))
1978
1979(defun py-newline-and-indent ()
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001980 "Strives to act like the Emacs `newline-and-indent'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001981This is just `strives to' because correct indentation can't be computed
1982from scratch for Python code. In general, deletes the whitespace before
1983point, inserts a newline, and takes an educated guess as to how you want
1984the new line indented."
1985 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001986 (let ((ci (current-indentation)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001987 (if (< ci (current-column)) ; if point beyond indentation
1988 (newline-and-indent)
1989 ;; else try to act like newline-and-indent "normally" acts
1990 (beginning-of-line)
1991 (insert-char ?\n 1)
1992 (move-to-column ci))))
1993
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001994(defun py-compute-indentation (honor-block-close-p)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001995 "Compute Python indentation.
1996When HONOR-BLOCK-CLOSE-P is non-nil, statements such as `return',
1997`raise', `break', `continue', and `pass' force one level of
1998dedenting."
Barry Warsaw7ae77681994-12-12 20:38:05 +00001999 (save-excursion
Barry Warsawf64b4051998-02-12 16:52:14 +00002000 (beginning-of-line)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00002001 (let* ((bod (py-point 'bod))
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00002002 (pps (parse-partial-sexp bod (point)))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002003 (boipps (parse-partial-sexp bod (py-point 'boi)))
2004 placeholder)
Barry Warsaw095e9c61995-09-19 20:01:42 +00002005 (cond
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00002006 ;; are we inside a multi-line string or comment?
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00002007 ((or (and (nth 3 pps) (nth 3 boipps))
2008 (and (nth 4 pps) (nth 4 boipps)))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002009 (save-excursion
2010 (if (not py-align-multiline-strings-p) 0
2011 ;; skip back over blank & non-indenting comment lines
2012 ;; note: will skip a blank or non-indenting comment line
2013 ;; that happens to be a continuation line too
2014 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#[ \t\n]\\)" nil 'move)
2015 (back-to-indentation)
2016 (current-column))))
2017 ;; are we on a continuation line?
2018 ((py-continuation-line-p)
2019 (let ((startpos (point))
2020 (open-bracket-pos (py-nesting-level))
Barry Warsawce60bc71996-08-01 18:17:14 +00002021 endpos searching found state)
Barry Warsaw095e9c61995-09-19 20:01:42 +00002022 (if open-bracket-pos
2023 (progn
2024 ;; align with first item in list; else a normal
2025 ;; indent beyond the line with the open bracket
2026 (goto-char (1+ open-bracket-pos)) ; just beyond bracket
2027 ;; is the first list item on the same line?
2028 (skip-chars-forward " \t")
2029 (if (null (memq (following-char) '(?\n ?# ?\\)))
2030 ; yes, so line up with it
2031 (current-column)
2032 ;; first list item on another line, or doesn't exist yet
2033 (forward-line 1)
2034 (while (and (< (point) startpos)
2035 (looking-at "[ \t]*[#\n\\\\]")) ; skip noise
2036 (forward-line 1))
Barry Warsaw92166d91998-04-01 21:59:41 +00002037 (if (and (< (point) startpos)
2038 (/= startpos
2039 (save-excursion
2040 (goto-char (1+ open-bracket-pos))
Barry Warsaw77d1fce1998-04-16 20:04:59 +00002041 (forward-comment (point-max))
Barry Warsaw92166d91998-04-01 21:59:41 +00002042 (point))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002043 ;; again mimic the first list item
2044 (current-indentation)
2045 ;; else they're about to enter the first item
2046 (goto-char open-bracket-pos)
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002047 (setq placeholder (point))
2048 (py-goto-initial-line)
2049 (py-goto-beginning-of-tqs
2050 (save-excursion (nth 3 (parse-partial-sexp
2051 placeholder (point)))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002052 (+ (current-indentation) py-indent-offset))))
2053
2054 ;; else on backslash continuation line
2055 (forward-line -1)
2056 (if (py-continuation-line-p) ; on at least 3rd line in block
2057 (current-indentation) ; so just continue the pattern
2058 ;; else started on 2nd line in block, so indent more.
2059 ;; if base line is an assignment with a start on a RHS,
2060 ;; indent to 2 beyond the leftmost "="; else skip first
2061 ;; chunk of non-whitespace characters on base line, + 1 more
2062 ;; column
2063 (end-of-line)
Barry Warsawfd4c9e82001-06-18 23:40:35 +00002064 (setq endpos (point)
2065 searching t)
Barry Warsaw095e9c61995-09-19 20:01:42 +00002066 (back-to-indentation)
2067 (setq startpos (point))
2068 ;; look at all "=" from left to right, stopping at first
2069 ;; one not nested in a list or string
2070 (while searching
2071 (skip-chars-forward "^=" endpos)
2072 (if (= (point) endpos)
2073 (setq searching nil)
2074 (forward-char 1)
2075 (setq state (parse-partial-sexp startpos (point)))
2076 (if (and (zerop (car state)) ; not in a bracket
2077 (null (nth 3 state))) ; & not in a string
2078 (progn
2079 (setq searching nil) ; done searching in any case
2080 (setq found
2081 (not (or
2082 (eq (following-char) ?=)
2083 (memq (char-after (- (point) 2))
2084 '(?< ?> ?!)))))))))
2085 (if (or (not found) ; not an assignment
2086 (looking-at "[ \t]*\\\\")) ; <=><spaces><backslash>
2087 (progn
2088 (goto-char startpos)
2089 (skip-chars-forward "^ \t\n")))
Barry Warsaw40fb4522001-07-06 20:07:13 +00002090 ;; if this is a continuation for a block opening
2091 ;; statement, add some extra offset.
2092 (+ (current-column) (if (py-statement-opens-block-p)
2093 py-continuation-offset 0)
2094 1)
Barry Warsawfd4c9e82001-06-18 23:40:35 +00002095 ))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002096
2097 ;; not on a continuation line
Barry Warsawa7891711996-08-01 15:53:09 +00002098 ((bobp) (current-indentation))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002099
Barry Warsawa7891711996-08-01 15:53:09 +00002100 ;; Dfn: "Indenting comment line". A line containing only a
2101 ;; comment, but which is treated like a statement for
2102 ;; indentation calculation purposes. Such lines are only
2103 ;; treated specially by the mode; they are not treated
2104 ;; specially by the Python interpreter.
2105
2106 ;; The rules for indenting comment lines are a line where:
2107 ;; - the first non-whitespace character is `#', and
2108 ;; - the character following the `#' is whitespace, and
Barry Warsaw41a05c71998-08-10 16:33:12 +00002109 ;; - the line is dedented with respect to (i.e. to the left
Barry Warsawa7891711996-08-01 15:53:09 +00002110 ;; of) the indentation of the preceding non-blank line.
2111
2112 ;; The first non-blank line following an indenting comment
2113 ;; line is given the same amount of indentation as the
2114 ;; indenting comment line.
2115
2116 ;; All other comment-only lines are ignored for indentation
2117 ;; purposes.
2118
2119 ;; Are we looking at a comment-only line which is *not* an
Barry Warsaw145ab1c1998-05-19 14:49:49 +00002120 ;; indenting comment line? If so, we assume that it's been
Barry Warsawa7891711996-08-01 15:53:09 +00002121 ;; placed at the desired indentation, so leave it alone.
2122 ;; Indenting comment lines are aligned as statements down
2123 ;; below.
2124 ((and (looking-at "[ \t]*#[^ \t\n]")
2125 ;; NOTE: this test will not be performed in older Emacsen
2126 (fboundp 'forward-comment)
2127 (<= (current-indentation)
2128 (save-excursion
2129 (forward-comment (- (point-max)))
2130 (current-indentation))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002131 (current-indentation))
2132
2133 ;; else indentation based on that of the statement that
2134 ;; precedes us; use the first line of that statement to
2135 ;; establish the base, in case the user forced a non-std
2136 ;; indentation for the continuation lines (if any)
2137 (t
Barry Warsawc01c5c81995-09-14 18:49:11 +00002138 ;; skip back over blank & non-indenting comment lines note:
2139 ;; will skip a blank or non-indenting comment line that
Barry Warsawfd0fb381996-03-04 17:15:40 +00002140 ;; happens to be a continuation line too. use fast Emacs 19
2141 ;; function if it's there.
Barry Warsaw6d627751996-03-06 18:41:38 +00002142 (if (and (eq py-honor-comment-indentation nil)
Barry Warsaw33d6ec01996-03-05 16:28:07 +00002143 (fboundp 'forward-comment))
Barry Warsawfd0fb381996-03-04 17:15:40 +00002144 (forward-comment (- (point-max)))
Barry Warsaw218eb751998-09-22 19:51:47 +00002145 (let ((prefix-re (concat py-block-comment-prefix "[ \t]*"))
2146 done)
Barry Warsaw6d627751996-03-06 18:41:38 +00002147 (while (not done)
Barry Warsaw12c92941998-08-10 21:44:37 +00002148 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#\\)" nil 'move)
2149 (setq done (or (bobp)
2150 (and (eq py-honor-comment-indentation t)
2151 (save-excursion
2152 (back-to-indentation)
Barry Warsaw218eb751998-09-22 19:51:47 +00002153 (not (looking-at prefix-re))
Barry Warsaw12c92941998-08-10 21:44:37 +00002154 ))
2155 (and (not (eq py-honor-comment-indentation t))
2156 (save-excursion
2157 (back-to-indentation)
Barry Warsawd36cfe42002-03-15 16:46:46 +00002158 (and (not (looking-at prefix-re))
2159 (or (looking-at "[^#]")
2160 (not (zerop (current-column)))
2161 ))
2162 ))
Barry Warsaw12c92941998-08-10 21:44:37 +00002163 ))
Barry Warsaw6d627751996-03-06 18:41:38 +00002164 )))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002165 ;; if we landed inside a string, go to the beginning of that
2166 ;; string. this handles triple quoted, multi-line spanning
2167 ;; strings.
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002168 (py-goto-beginning-of-tqs (nth 3 (parse-partial-sexp bod (point))))
Barry Warsawc210e691998-01-20 22:52:56 +00002169 ;; now skip backward over continued lines
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002170 (setq placeholder (point))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002171 (py-goto-initial-line)
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002172 ;; we may *now* have landed in a TQS, so find the beginning of
2173 ;; this string.
2174 (py-goto-beginning-of-tqs
2175 (save-excursion (nth 3 (parse-partial-sexp
2176 placeholder (point)))))
Barry Warsawf831d811996-07-31 20:42:59 +00002177 (+ (current-indentation)
2178 (if (py-statement-opens-block-p)
2179 py-indent-offset
Barry Warsaw7cb505c1996-10-23 20:44:59 +00002180 (if (and honor-block-close-p (py-statement-closes-block-p))
Barry Warsawf831d811996-07-31 20:42:59 +00002181 (- py-indent-offset)
2182 0)))
2183 )))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002184
2185(defun py-guess-indent-offset (&optional global)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002186 "Guess a good value for, and change, `py-indent-offset'.
Barry Warsaw41a05c71998-08-10 16:33:12 +00002187
2188By default, make a buffer-local copy of `py-indent-offset' with the
2189new value, so that other Python buffers are not affected. With
2190\\[universal-argument] (programmatically, optional argument GLOBAL),
2191change the global value of `py-indent-offset'. This affects all
2192Python buffers (that don't have their own buffer-local copy), both
2193those currently existing and those created later in the Emacs session.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002194
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002195Some people use a different value for `py-indent-offset' than you use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002196There's no excuse for such foolishness, but sometimes you have to deal
2197with their ugly code anyway. This function examines the file and sets
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002198`py-indent-offset' to what it thinks it was when they created the
2199mess.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002200
2201Specifically, it searches forward from the statement containing point,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002202looking for a line that opens a block of code. `py-indent-offset' is
2203set to the difference in indentation between that line and the Python
Barry Warsaw7ae77681994-12-12 20:38:05 +00002204statement following it. If the search doesn't succeed going forward,
2205it's tried again going backward."
2206 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002207 (let (new-value
2208 (start (point))
Barry Warsawe908b6b1998-03-19 22:48:02 +00002209 (restart (point))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002210 (found nil)
2211 colon-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002212 (py-goto-initial-line)
2213 (while (not (or found (eobp)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00002214 (when (and (re-search-forward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2215 (not (py-in-literal restart)))
2216 (setq restart (point))
2217 (py-goto-initial-line)
2218 (if (py-statement-opens-block-p)
2219 (setq found t)
2220 (goto-char restart))))
2221 (unless found
Barry Warsaw7ae77681994-12-12 20:38:05 +00002222 (goto-char start)
2223 (py-goto-initial-line)
2224 (while (not (or found (bobp)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00002225 (setq found (and
2226 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2227 (or (py-goto-initial-line) t) ; always true -- side effect
2228 (py-statement-opens-block-p)))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002229 (setq colon-indent (current-indentation)
2230 found (and found (zerop (py-next-statement 1)))
2231 new-value (- (current-indentation) colon-indent))
2232 (goto-char start)
Barry Warsawe908b6b1998-03-19 22:48:02 +00002233 (if (not found)
2234 (error "Sorry, couldn't guess a value for py-indent-offset")
2235 (funcall (if global 'kill-local-variable 'make-local-variable)
2236 'py-indent-offset)
2237 (setq py-indent-offset new-value)
Barry Warsawd35c2551998-09-25 00:08:38 +00002238 (or noninteractive
2239 (message "%s value of py-indent-offset set to %d"
2240 (if global "Global" "Local")
2241 py-indent-offset)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00002242 ))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002243
Barry Warsaw003932a1998-07-07 15:11:24 +00002244(defun py-comment-indent-function ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002245 "Python version of `comment-indent-function'."
2246 ;; This is required when filladapt is turned off. Without it, when
2247 ;; filladapt is not used, comments which start in column zero
2248 ;; cascade one character to the right
Barry Warsaw003932a1998-07-07 15:11:24 +00002249 (save-excursion
2250 (beginning-of-line)
2251 (let ((eol (py-point 'eol)))
2252 (and comment-start-skip
2253 (re-search-forward comment-start-skip eol t)
2254 (setq eol (match-beginning 0)))
2255 (goto-char eol)
2256 (skip-chars-backward " \t")
2257 (max comment-column (+ (current-column) (if (bolp) 0 1)))
2258 )))
2259
Barry Warsawf8ddb6a1999-01-18 21:49:39 +00002260(defun py-narrow-to-defun (&optional class)
2261 "Make text outside current defun invisible.
2262The defun visible is the one that contains point or follows point.
2263Optional CLASS is passed directly to `py-beginning-of-def-or-class'."
2264 (interactive "P")
2265 (save-excursion
2266 (widen)
2267 (py-end-of-def-or-class class)
2268 (let ((end (point)))
2269 (py-beginning-of-def-or-class class)
2270 (narrow-to-region (point) end))))
2271
Barry Warsaw003932a1998-07-07 15:11:24 +00002272
Barry Warsaw7ae77681994-12-12 20:38:05 +00002273(defun py-shift-region (start end count)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002274 "Indent lines from START to END by COUNT spaces."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002275 (save-excursion
Barry Warsaw41a05c71998-08-10 16:33:12 +00002276 (goto-char end)
2277 (beginning-of-line)
2278 (setq end (point))
2279 (goto-char start)
2280 (beginning-of-line)
2281 (setq start (point))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002282 (indent-rigidly start end count)))
2283
2284(defun py-shift-region-left (start end &optional count)
2285 "Shift region of Python code to the left.
2286The lines from the line containing the start of the current region up
2287to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002288shifted to the left, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002289
2290If a prefix argument is given, the region is instead shifted by that
Barry Warsaw41a05c71998-08-10 16:33:12 +00002291many columns. With no active region, dedent only the current line.
2292You cannot dedent the region if any line is already at column zero."
Barry Warsawdea4a291996-07-03 22:59:12 +00002293 (interactive
2294 (let ((p (point))
2295 (m (mark))
2296 (arg current-prefix-arg))
2297 (if m
2298 (list (min p m) (max p m) arg)
2299 (list p (save-excursion (forward-line 1) (point)) arg))))
2300 ;; if any line is at column zero, don't shift the region
2301 (save-excursion
2302 (goto-char start)
2303 (while (< (point) end)
2304 (back-to-indentation)
Barry Warsaw71e315b1996-07-23 15:03:16 +00002305 (if (and (zerop (current-column))
2306 (not (looking-at "\\s *$")))
Barry Warsaw41a05c71998-08-10 16:33:12 +00002307 (error "Region is at left edge"))
Barry Warsawdea4a291996-07-03 22:59:12 +00002308 (forward-line 1)))
2309 (py-shift-region start end (- (prefix-numeric-value
2310 (or count py-indent-offset))))
2311 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002312
2313(defun py-shift-region-right (start end &optional count)
2314 "Shift region of Python code to the right.
2315The lines from the line containing the start of the current region up
2316to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002317shifted to the right, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002318
2319If a prefix argument is given, the region is instead shifted by that
Barry Warsawdea4a291996-07-03 22:59:12 +00002320many columns. With no active region, indent only the current line."
2321 (interactive
2322 (let ((p (point))
2323 (m (mark))
2324 (arg current-prefix-arg))
2325 (if m
2326 (list (min p m) (max p m) arg)
2327 (list p (save-excursion (forward-line 1) (point)) arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002328 (py-shift-region start end (prefix-numeric-value
Barry Warsawdea4a291996-07-03 22:59:12 +00002329 (or count py-indent-offset)))
2330 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002331
2332(defun py-indent-region (start end &optional indent-offset)
2333 "Reindent a region of Python code.
Barry Warsaw867a32a1996-03-07 18:30:26 +00002334
Barry Warsaw7ae77681994-12-12 20:38:05 +00002335The lines from the line containing the start of the current region up
2336to (but not including) the line containing the end of the region are
2337reindented. If the first line of the region has a non-whitespace
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002338character in the first column, the first line is left alone and the
2339rest of the region is reindented with respect to it. Else the entire
Barry Warsaw867a32a1996-03-07 18:30:26 +00002340region is reindented with respect to the (closest code or indenting
2341comment) statement immediately preceding the region.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002342
2343This is useful when code blocks are moved or yanked, when enclosing
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002344control structures are introduced or removed, or to reformat code
2345using a new value for the indentation offset.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002346
2347If a numeric prefix argument is given, it will be used as the value of
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002348the indentation offset. Else the value of `py-indent-offset' will be
Barry Warsaw7ae77681994-12-12 20:38:05 +00002349used.
2350
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002351Warning: The region must be consistently indented before this function
Barry Warsaw7ae77681994-12-12 20:38:05 +00002352is called! This function does not compute proper indentation from
2353scratch (that's impossible in Python), it merely adjusts the existing
2354indentation to be correct in context.
2355
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002356Warning: This function really has no idea what to do with
2357non-indenting comment lines, and shifts them as if they were indenting
2358comment lines. Fixing this appears to require telepathy.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002359
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002360Special cases: whitespace is deleted from blank lines; continuation
2361lines are shifted by the same amount their initial line was shifted,
2362in order to preserve their relative indentation with respect to their
Barry Warsaw7ae77681994-12-12 20:38:05 +00002363initial line; and comment lines beginning in column 1 are ignored."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002364 (interactive "*r\nP") ; region; raw prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002365 (save-excursion
2366 (goto-char end) (beginning-of-line) (setq end (point-marker))
2367 (goto-char start) (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002368 (let ((py-indent-offset (prefix-numeric-value
2369 (or indent-offset py-indent-offset)))
2370 (indents '(-1)) ; stack of active indent levels
2371 (target-column 0) ; column to which to indent
2372 (base-shifted-by 0) ; amount last base line was shifted
2373 (indent-base (if (looking-at "[ \t\n]")
Barry Warsaw7cb505c1996-10-23 20:44:59 +00002374 (py-compute-indentation t)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002375 0))
2376 ci)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002377 (while (< (point) end)
2378 (setq ci (current-indentation))
2379 ;; figure out appropriate target column
2380 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002381 ((or (eq (following-char) ?#) ; comment in column 1
2382 (looking-at "[ \t]*$")) ; entirely blank
2383 (setq target-column 0))
2384 ((py-continuation-line-p) ; shift relative to base line
2385 (setq target-column (+ ci base-shifted-by)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002386 (t ; new base line
2387 (if (> ci (car indents)) ; going deeper; push it
2388 (setq indents (cons ci indents))
2389 ;; else we should have seen this indent before
2390 (setq indents (memq ci indents)) ; pop deeper indents
2391 (if (null indents)
2392 (error "Bad indentation in region, at line %d"
2393 (save-restriction
2394 (widen)
2395 (1+ (count-lines 1 (point)))))))
2396 (setq target-column (+ indent-base
2397 (* py-indent-offset
2398 (- (length indents) 2))))
2399 (setq base-shifted-by (- target-column ci))))
2400 ;; shift as needed
2401 (if (/= ci target-column)
2402 (progn
2403 (delete-horizontal-space)
2404 (indent-to target-column)))
2405 (forward-line 1))))
2406 (set-marker end nil))
2407
Barry Warsawa7891711996-08-01 15:53:09 +00002408(defun py-comment-region (beg end &optional arg)
2409 "Like `comment-region' but uses double hash (`#') comment starter."
2410 (interactive "r\nP")
Barry Warsaw3fcaf611996-08-01 20:11:51 +00002411 (let ((comment-start py-block-comment-prefix))
Barry Warsawa7891711996-08-01 15:53:09 +00002412 (comment-region beg end arg)))
2413
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002414
2415;; Functions for moving point
Barry Warsaw7ae77681994-12-12 20:38:05 +00002416(defun py-previous-statement (count)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002417 "Go to the start of the COUNTth preceding Python statement.
2418By default, goes to the previous statement. If there is no such
2419statement, goes to the first statement. Return count of statements
2420left to move. `Statements' do not include blank, comment, or
2421continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002422 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002423 (if (< count 0) (py-next-statement (- count))
2424 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002425 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002426 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002427 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002428 (> count 0)
2429 (zerop (forward-line -1))
2430 (py-goto-statement-at-or-above))
2431 (setq count (1- count)))
2432 (if (> count 0) (goto-char start)))
2433 count))
2434
2435(defun py-next-statement (count)
2436 "Go to the start of next Python statement.
2437If the statement at point is the i'th Python statement, goes to the
2438start of statement i+COUNT. If there is no such statement, goes to the
2439last statement. Returns count of statements left to move. `Statements'
2440do not include blank, comment, or continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002441 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002442 (if (< count 0) (py-previous-statement (- count))
2443 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002444 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002445 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002446 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002447 (> count 0)
2448 (py-goto-statement-below))
2449 (setq count (1- count)))
2450 (if (> count 0) (goto-char start)))
2451 count))
2452
2453(defun py-goto-block-up (&optional nomark)
2454 "Move up to start of current block.
2455Go to the statement that starts the smallest enclosing block; roughly
2456speaking, this will be the closest preceding statement that ends with a
2457colon and is indented less than the statement you started on. If
2458successful, also sets the mark to the starting point.
2459
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002460`\\[py-mark-block]' can be used afterward to mark the whole code
2461block, if desired.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002462
2463If called from a program, the mark will not be set if optional argument
2464NOMARK is not nil."
2465 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002466 (let ((start (point))
2467 (found nil)
2468 initial-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002469 (py-goto-initial-line)
2470 ;; if on blank or non-indenting comment line, use the preceding stmt
2471 (if (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
2472 (progn
2473 (py-goto-statement-at-or-above)
2474 (setq found (py-statement-opens-block-p))))
2475 ;; search back for colon line indented less
2476 (setq initial-indent (current-indentation))
2477 (if (zerop initial-indent)
2478 ;; force fast exit
2479 (goto-char (point-min)))
2480 (while (not (or found (bobp)))
2481 (setq found
2482 (and
2483 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2484 (or (py-goto-initial-line) t) ; always true -- side effect
2485 (< (current-indentation) initial-indent)
2486 (py-statement-opens-block-p))))
2487 (if found
2488 (progn
2489 (or nomark (push-mark start))
2490 (back-to-indentation))
2491 (goto-char start)
2492 (error "Enclosing block not found"))))
2493
Barry Warsawab0e86c1998-05-19 15:31:46 +00002494(defun py-beginning-of-def-or-class (&optional class count)
2495 "Move point to start of `def' or `class'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002496
2497Searches back for the closest preceding `def'. If you supply a prefix
Barry Warsawab0e86c1998-05-19 15:31:46 +00002498arg, looks for a `class' instead. The docs below assume the `def'
2499case; just substitute `class' for `def' for the other case.
Barry Warsaw7c29b231998-07-07 17:45:38 +00002500Programmatically, if CLASS is `either', then moves to either `class'
2501or `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002502
Barry Warsawab0e86c1998-05-19 15:31:46 +00002503When second optional argument is given programmatically, move to the
2504COUNTth start of `def'.
2505
2506If point is in a `def' statement already, and after the `d', simply
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002507moves point to the start of the statement.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002508
Barry Warsawab0e86c1998-05-19 15:31:46 +00002509Otherwise (i.e. when point is not in a `def' statement, or at or
2510before the `d' of a `def' statement), searches for the closest
2511preceding `def' statement, and leaves point at its start. If no such
2512statement can be found, leaves point at the start of the buffer.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002513
Barry Warsawab0e86c1998-05-19 15:31:46 +00002514Returns t iff a `def' statement is found by these rules.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002515
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002516Note that doing this command repeatedly will take you closer to the
2517start of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002518
Barry Warsaw7c29b231998-07-07 17:45:38 +00002519To mark the current `def', see `\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002520 (interactive "P") ; raw prefix arg
Barry Warsaw6839d3a1998-10-28 00:10:45 +00002521 (setq count (or count 1))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002522 (let ((at-or-before-p (<= (current-column) (current-indentation)))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002523 (start-of-line (goto-char (py-point 'bol)))
2524 (start-of-stmt (goto-char (py-point 'bos)))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002525 (start-re (cond ((eq class 'either) "^[ \t]*\\(class\\|def\\)\\>")
2526 (class "^[ \t]*class\\>")
2527 (t "^[ \t]*def\\>")))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002528 )
2529 ;; searching backward
2530 (if (and (< 0 count)
2531 (or (/= start-of-stmt start-of-line)
2532 (not at-or-before-p)))
2533 (end-of-line))
2534 ;; search forward
2535 (if (and (> 0 count)
2536 (zerop (current-column))
2537 (looking-at start-re))
2538 (end-of-line))
Barry Warsawddc46961999-07-27 21:40:02 +00002539 (if (re-search-backward start-re nil 'move count)
2540 (goto-char (match-beginning 0)))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002541
Barry Warsawab0e86c1998-05-19 15:31:46 +00002542;; Backwards compatibility
2543(defalias 'beginning-of-python-def-or-class 'py-beginning-of-def-or-class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002544
Barry Warsawab0e86c1998-05-19 15:31:46 +00002545(defun py-end-of-def-or-class (&optional class count)
2546 "Move point beyond end of `def' or `class' body.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002547
Barry Warsawab0e86c1998-05-19 15:31:46 +00002548By default, looks for an appropriate `def'. If you supply a prefix
2549arg, looks for a `class' instead. The docs below assume the `def'
2550case; just substitute `class' for `def' for the other case.
Barry Warsaw7c29b231998-07-07 17:45:38 +00002551Programmatically, if CLASS is `either', then moves to either `class'
2552or `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002553
Barry Warsawab0e86c1998-05-19 15:31:46 +00002554When second optional argument is given programmatically, move to the
2555COUNTth end of `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002556
Barry Warsawab0e86c1998-05-19 15:31:46 +00002557If point is in a `def' statement already, this is the `def' we use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002558
Barry Warsawab0e86c1998-05-19 15:31:46 +00002559Else, if the `def' found by `\\[py-beginning-of-def-or-class]'
2560contains the statement you started on, that's the `def' we use.
2561
2562Otherwise, we search forward for the closest following `def', and use that.
2563
2564If a `def' can be found by these rules, point is moved to the start of
2565the line immediately following the `def' block, and the position of the
2566start of the `def' is returned.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002567
2568Else point is moved to the end of the buffer, and nil is returned.
2569
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002570Note that doing this command repeatedly will take you closer to the
2571end of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002572
Barry Warsaw7c29b231998-07-07 17:45:38 +00002573To mark the current `def', see `\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002574 (interactive "P") ; raw prefix arg
Barry Warsawab0e86c1998-05-19 15:31:46 +00002575 (if (and count (/= count 1))
2576 (py-beginning-of-def-or-class (- 1 count)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002577 (let ((start (progn (py-goto-initial-line) (point)))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002578 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2579 (class "class")
2580 (t "def")))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002581 (state 'not-found))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002582 ;; move point to start of appropriate def/class
2583 (if (looking-at (concat "[ \t]*" which "\\>")) ; already on one
2584 (setq state 'at-beginning)
Barry Warsawab0e86c1998-05-19 15:31:46 +00002585 ;; else see if py-beginning-of-def-or-class hits container
2586 (if (and (py-beginning-of-def-or-class class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002587 (progn (py-goto-beyond-block)
2588 (> (point) start)))
2589 (setq state 'at-end)
2590 ;; else search forward
2591 (goto-char start)
2592 (if (re-search-forward (concat "^[ \t]*" which "\\>") nil 'move)
2593 (progn (setq state 'at-beginning)
2594 (beginning-of-line)))))
2595 (cond
2596 ((eq state 'at-beginning) (py-goto-beyond-block) t)
2597 ((eq state 'at-end) t)
2598 ((eq state 'not-found) nil)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002599 (t (error "Internal error in `py-end-of-def-or-class'")))))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002600
2601;; Backwards compabitility
Barry Warsaw820273d1998-05-19 15:54:45 +00002602(defalias 'end-of-python-def-or-class 'py-end-of-def-or-class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002603
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002604
2605;; Functions for marking regions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002606(defun py-mark-block (&optional extend just-move)
2607 "Mark following block of lines. With prefix arg, mark structure.
2608Easier to use than explain. It sets the region to an `interesting'
2609block of succeeding lines. If point is on a blank line, it goes down to
2610the next non-blank line. That will be the start of the region. The end
2611of the region depends on the kind of line at the start:
2612
2613 - If a comment, the region will include all succeeding comment lines up
2614 to (but not including) the next non-comment line (if any).
2615
2616 - Else if a prefix arg is given, and the line begins one of these
2617 structures:
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002618
2619 if elif else try except finally for while def class
2620
Barry Warsaw7ae77681994-12-12 20:38:05 +00002621 the region will be set to the body of the structure, including
2622 following blocks that `belong' to it, but excluding trailing blank
2623 and comment lines. E.g., if on a `try' statement, the `try' block
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002624 and all (if any) of the following `except' and `finally' blocks
2625 that belong to the `try' structure will be in the region. Ditto
2626 for if/elif/else, for/else and while/else structures, and (a bit
2627 degenerate, since they're always one-block structures) def and
2628 class blocks.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002629
2630 - Else if no prefix argument is given, and the line begins a Python
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002631 block (see list above), and the block is not a `one-liner' (i.e.,
2632 the statement ends with a colon, not with code), the region will
2633 include all succeeding lines up to (but not including) the next
2634 code statement (if any) that's indented no more than the starting
2635 line, except that trailing blank and comment lines are excluded.
2636 E.g., if the starting line begins a multi-statement `def'
2637 structure, the region will be set to the full function definition,
2638 but without any trailing `noise' lines.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002639
2640 - Else the region will include all succeeding lines up to (but not
2641 including) the next blank line, or code or indenting-comment line
2642 indented strictly less than the starting line. Trailing indenting
2643 comment lines are included in this case, but not trailing blank
2644 lines.
2645
2646A msg identifying the location of the mark is displayed in the echo
2647area; or do `\\[exchange-point-and-mark]' to flip down to the end.
2648
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002649If called from a program, optional argument EXTEND plays the role of
2650the prefix arg, and if optional argument JUST-MOVE is not nil, just
2651moves to the end of the block (& does not set mark or display a msg)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002652 (interactive "P") ; raw prefix arg
2653 (py-goto-initial-line)
2654 ;; skip over blank lines
2655 (while (and
2656 (looking-at "[ \t]*$") ; while blank line
2657 (not (eobp))) ; & somewhere to go
2658 (forward-line 1))
2659 (if (eobp)
2660 (error "Hit end of buffer without finding a non-blank stmt"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002661 (let ((initial-pos (point))
2662 (initial-indent (current-indentation))
2663 last-pos ; position of last stmt in region
2664 (followers
2665 '((if elif else) (elif elif else) (else)
2666 (try except finally) (except except) (finally)
2667 (for else) (while else)
2668 (def) (class) ) )
2669 first-symbol next-symbol)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002670
2671 (cond
2672 ;; if comment line, suck up the following comment lines
2673 ((looking-at "[ \t]*#")
2674 (re-search-forward "^[ \t]*[^ \t#]" nil 'move) ; look for non-comment
2675 (re-search-backward "^[ \t]*#") ; and back to last comment in block
2676 (setq last-pos (point)))
2677
2678 ;; else if line is a block line and EXTEND given, suck up
2679 ;; the whole structure
2680 ((and extend
2681 (setq first-symbol (py-suck-up-first-keyword) )
2682 (assq first-symbol followers))
2683 (while (and
2684 (or (py-goto-beyond-block) t) ; side effect
2685 (forward-line -1) ; side effect
2686 (setq last-pos (point)) ; side effect
2687 (py-goto-statement-below)
2688 (= (current-indentation) initial-indent)
2689 (setq next-symbol (py-suck-up-first-keyword))
2690 (memq next-symbol (cdr (assq first-symbol followers))))
2691 (setq first-symbol next-symbol)))
2692
2693 ;; else if line *opens* a block, search for next stmt indented <=
2694 ((py-statement-opens-block-p)
2695 (while (and
2696 (setq last-pos (point)) ; always true -- side effect
2697 (py-goto-statement-below)
Barry Warsawf070cce2002-05-23 19:42:16 +00002698 (> (current-indentation) initial-indent)
2699 )))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002700
2701 ;; else plain code line; stop at next blank line, or stmt or
2702 ;; indenting comment line indented <
2703 (t
2704 (while (and
2705 (setq last-pos (point)) ; always true -- side effect
2706 (or (py-goto-beyond-final-line) t)
2707 (not (looking-at "[ \t]*$")) ; stop at blank line
2708 (or
2709 (>= (current-indentation) initial-indent)
2710 (looking-at "[ \t]*#[^ \t\n]"))) ; ignore non-indenting #
2711 nil)))
2712
2713 ;; skip to end of last stmt
2714 (goto-char last-pos)
2715 (py-goto-beyond-final-line)
2716
2717 ;; set mark & display
2718 (if just-move
2719 () ; just return
2720 (push-mark (point) 'no-msg)
2721 (forward-line -1)
2722 (message "Mark set after: %s" (py-suck-up-leading-text))
2723 (goto-char initial-pos))))
2724
Barry Warsaw2518c671997-11-05 00:51:08 +00002725(defun py-mark-def-or-class (&optional class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002726 "Set region to body of def (or class, with prefix arg) enclosing point.
2727Pushes the current mark, then point, on the mark ring (all language
2728modes do this, but although it's handy it's never documented ...).
2729
2730In most Emacs language modes, this function bears at least a
Barry Warsawab0e86c1998-05-19 15:31:46 +00002731hallucinogenic resemblance to `\\[py-end-of-def-or-class]' and
2732`\\[py-beginning-of-def-or-class]'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002733
2734And in earlier versions of Python mode, all 3 were tightly connected.
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002735Turned out that was more confusing than useful: the `goto start' and
2736`goto end' commands are usually used to search through a file, and
2737people expect them to act a lot like `search backward' and `search
2738forward' string-search commands. But because Python `def' and `class'
2739can nest to arbitrary levels, finding the smallest def containing
2740point cannot be done via a simple backward search: the def containing
2741point may not be the closest preceding def, or even the closest
2742preceding def that's indented less. The fancy algorithm required is
2743appropriate for the usual uses of this `mark' command, but not for the
2744`goto' variations.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002745
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002746So the def marked by this command may not be the one either of the
2747`goto' commands find: If point is on a blank or non-indenting comment
2748line, moves back to start of the closest preceding code statement or
2749indenting comment line. If this is a `def' statement, that's the def
2750we use. Else searches for the smallest enclosing `def' block and uses
2751that. Else signals an error.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002752
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002753When an enclosing def is found: The mark is left immediately beyond
2754the last line of the def block. Point is left at the start of the
2755def, except that: if the def is preceded by a number of comment lines
2756followed by (at most) one optional blank line, point is left at the
2757start of the comments; else if the def is preceded by a blank line,
2758point is left at its start.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002759
2760The intent is to mark the containing def/class and its associated
2761documentation, to make moving and duplicating functions and classes
2762pleasant."
2763 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002764 (let ((start (point))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002765 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2766 (class "class")
2767 (t "def"))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002768 (push-mark start)
2769 (if (not (py-go-up-tree-to-keyword which))
2770 (progn (goto-char start)
Barry Warsaw7c29b231998-07-07 17:45:38 +00002771 (error "Enclosing %s not found"
2772 (if (eq class 'either)
2773 "def or class"
2774 which)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002775 ;; else enclosing def/class found
2776 (setq start (point))
2777 (py-goto-beyond-block)
2778 (push-mark (point))
2779 (goto-char start)
2780 (if (zerop (forward-line -1)) ; if there is a preceding line
2781 (progn
2782 (if (looking-at "[ \t]*$") ; it's blank
2783 (setq start (point)) ; so reset start point
2784 (goto-char start)) ; else try again
2785 (if (zerop (forward-line -1))
2786 (if (looking-at "[ \t]*#") ; a comment
2787 ;; look back for non-comment line
2788 ;; tricky: note that the regexp matches a blank
2789 ;; line, cuz \n is in the 2nd character class
2790 (and
2791 (re-search-backward "^[ \t]*[^ \t#]" nil 'move)
2792 (forward-line 1))
2793 ;; no comment, so go back
Barry Warsaw4da6bd51997-11-26 06:00:26 +00002794 (goto-char start)))))))
2795 (exchange-point-and-mark)
2796 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002797
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002798;; ripped from cc-mode
2799(defun py-forward-into-nomenclature (&optional arg)
2800 "Move forward to end of a nomenclature section or word.
Barry Warsaw41a05c71998-08-10 16:33:12 +00002801With \\[universal-argument] (programmatically, optional argument ARG),
2802do it that many times.
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002803
2804A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2805 (interactive "p")
2806 (let ((case-fold-search nil))
2807 (if (> arg 0)
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002808 (re-search-forward
2809 "\\(\\W\\|[_]\\)*\\([A-Z]*[a-z0-9]*\\)"
2810 (point-max) t arg)
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002811 (while (and (< arg 0)
2812 (re-search-backward
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002813 "\\(\\W\\|[a-z0-9]\\)[A-Z]+\\|\\(\\W\\|[_]\\)\\w+"
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002814 (point-min) 0))
2815 (forward-char 1)
2816 (setq arg (1+ arg)))))
2817 (py-keep-region-active))
2818
2819(defun py-backward-into-nomenclature (&optional arg)
2820 "Move backward to beginning of a nomenclature section or word.
2821With optional ARG, move that many times. If ARG is negative, move
2822forward.
2823
2824A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2825 (interactive "p")
2826 (py-forward-into-nomenclature (- arg))
2827 (py-keep-region-active))
2828
2829
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002830
Barry Warsaw4f577d22001-04-11 20:23:17 +00002831;; pdbtrack functions
2832(defun py-pdbtrack-toggle-stack-tracking (arg)
2833 (interactive "P")
2834 (if (not (get-buffer-process (current-buffer)))
2835 (error "No process associated with buffer '%s'" (current-buffer)))
2836 ;; missing or 0 is toggle, >0 turn on, <0 turn off
2837 (if (or (not arg)
2838 (zerop (setq arg (prefix-numeric-value arg))))
2839 (setq py-pdbtrack-do-tracking-p (not py-pdbtrack-do-tracking-p))
2840 (setq py-pdbtrack-do-tracking-p (> arg 0)))
2841 (message "%sabled Python's pdbtrack"
2842 (if py-pdbtrack-do-tracking-p "En" "Dis")))
2843
2844(defun turn-on-pdbtrack ()
2845 (interactive)
2846 (py-pdbtrack-toggle-stack-tracking 1))
2847
2848(defun turn-off-pdbtrack ()
2849 (interactive)
2850 (py-pdbtrack-toggle-stack-tracking 0))
2851
2852
2853
Barry Warsaw29a90f02002-04-22 21:48:20 +00002854;; Pychecker
2855(defun py-pychecker-run (command)
2856 "*Run pychecker (default on the file currently visited)."
2857 (interactive
2858 (let ((default
2859 (format "%s %s %s" py-pychecker-command
2860 (mapconcat 'identity py-pychecker-command-args " ")
Barry Warsaw7f232122002-09-28 18:17:56 +00002861 (buffer-file-name)))
2862 (last (when py-pychecker-history
2863 (let* ((lastcmd (car py-pychecker-history))
2864 (cmd (cdr (reverse (split-string lastcmd))))
2865 (newcmd (reverse (cons (buffer-file-name) cmd))))
2866 (mapconcat 'identity newcmd " ")))))
Barry Warsaw29a90f02002-04-22 21:48:20 +00002867
2868 (list
2869 (read-shell-command "Run pychecker like this: "
Barry Warsaw7f232122002-09-28 18:17:56 +00002870 (if last
2871 last
Barry Warsawf31ff272002-07-17 21:25:43 +00002872 default)
Barry Warsawdaa19212002-07-16 15:56:28 +00002873 'py-pychecker-history))))
Barry Warsaw29a90f02002-04-22 21:48:20 +00002874 (save-some-buffers (not py-ask-about-save) nil)
Barry Warsawdaa19212002-07-16 15:56:28 +00002875 (compile-internal command "No more errors"))
Barry Warsaw29a90f02002-04-22 21:48:20 +00002876
2877
2878
2879;; pydoc commands. The guts of this function is stolen from XEmacs's
2880;; symbol-near-point, but without the useless regexp-quote call on the
2881;; results, nor the interactive bit. Also, we've added the temporary
2882;; syntax table setting, which Skip originally had broken out into a
2883;; separate function. Note that Emacs doesn't have the original
2884;; function.
Barry Warsawa7cc43b2002-04-22 17:15:19 +00002885(defun py-symbol-near-point ()
2886 "Return the first textual item to the nearest point."
2887 ;; alg stolen from etag.el
2888 (save-excursion
2889 (with-syntax-table py-dotted-expression-syntax-table
2890 (if (or (bobp) (not (memq (char-syntax (char-before)) '(?w ?_))))
2891 (while (not (looking-at "\\sw\\|\\s_\\|\\'"))
2892 (forward-char 1)))
2893 (while (looking-at "\\sw\\|\\s_")
2894 (forward-char 1))
2895 (if (re-search-backward "\\sw\\|\\s_" nil t)
2896 (progn (forward-char 1)
2897 (buffer-substring (point)
2898 (progn (forward-sexp -1)
2899 (while (looking-at "\\s'")
2900 (forward-char 1))
2901 (point))))
2902 nil))))
2903
2904(defun py-help-at-point ()
2905 "Get help from Python based on the symbol nearest point."
2906 (interactive)
2907 (let* ((sym (py-symbol-near-point))
2908 (base (substring sym 0 (or (search "." sym :from-end t) 0)))
2909 cmd)
2910 (if (not (equal base ""))
2911 (setq cmd (concat "import " base "\n")))
2912 (setq cmd (concat "import pydoc\n"
2913 cmd
Barry Warsaw04949552002-04-22 22:05:49 +00002914 "try: pydoc.help('" sym "')\n"
Barry Warsawa7cc43b2002-04-22 17:15:19 +00002915 "except: print 'No help available on:', \"" sym "\""))
2916 (message cmd)
Barry Warsaw04949552002-04-22 22:05:49 +00002917 (py-execute-string cmd)
2918 (set-buffer "*Python Output*")
2919 ;; BAW: Should we really be leaving the output buffer in help-mode?
2920 (help-mode)))
Barry Warsawa7cc43b2002-04-22 17:15:19 +00002921
2922
2923
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002924;; Documentation functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002925
2926;; dump the long form of the mode blurb; does the usual doc escapes,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002927;; plus lines of the form ^[vc]:name$ to suck variable & command docs
2928;; out of the right places, along with the keys they're on & current
2929;; values
Barry Warsaw7ae77681994-12-12 20:38:05 +00002930(defun py-dump-help-string (str)
2931 (with-output-to-temp-buffer "*Help*"
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002932 (let ((locals (buffer-local-variables))
2933 funckind funcname func funcdoc
2934 (start 0) mstart end
2935 keys )
Barry Warsaw7ae77681994-12-12 20:38:05 +00002936 (while (string-match "^%\\([vc]\\):\\(.+\\)\n" str start)
2937 (setq mstart (match-beginning 0) end (match-end 0)
2938 funckind (substring str (match-beginning 1) (match-end 1))
2939 funcname (substring str (match-beginning 2) (match-end 2))
2940 func (intern funcname))
2941 (princ (substitute-command-keys (substring str start mstart)))
2942 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002943 ((equal funckind "c") ; command
2944 (setq funcdoc (documentation func)
2945 keys (concat
2946 "Key(s): "
2947 (mapconcat 'key-description
2948 (where-is-internal func py-mode-map)
2949 ", "))))
2950 ((equal funckind "v") ; variable
Barry Warsaw604cefa1996-09-03 18:17:04 +00002951 (setq funcdoc (documentation-property func 'variable-documentation)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002952 keys (if (assq func locals)
2953 (concat
2954 "Local/Global values: "
2955 (prin1-to-string (symbol-value func))
2956 " / "
2957 (prin1-to-string (default-value func)))
2958 (concat
2959 "Value: "
2960 (prin1-to-string (symbol-value func))))))
2961 (t ; unexpected
2962 (error "Error in py-dump-help-string, tag `%s'" funckind)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002963 (princ (format "\n-> %s:\t%s\t%s\n\n"
2964 (if (equal funckind "c") "Command" "Variable")
2965 funcname keys))
2966 (princ funcdoc)
2967 (terpri)
2968 (setq start end))
2969 (princ (substitute-command-keys (substring str start))))
2970 (print-help-return-message)))
2971
2972(defun py-describe-mode ()
2973 "Dump long form of Python-mode docs."
2974 (interactive)
2975 (py-dump-help-string "Major mode for editing Python files.
2976Knows about Python indentation, tokens, comments and continuation lines.
2977Paragraphs are separated by blank lines only.
2978
2979Major sections below begin with the string `@'; specific function and
2980variable docs begin with `->'.
2981
2982@EXECUTING PYTHON CODE
2983
Barry Warsaw820273d1998-05-19 15:54:45 +00002984\\[py-execute-import-or-reload]\timports or reloads the file in the Python interpreter
Barry Warsaw7ae77681994-12-12 20:38:05 +00002985\\[py-execute-buffer]\tsends the entire buffer to the Python interpreter
2986\\[py-execute-region]\tsends the current region
Barry Warsaw820273d1998-05-19 15:54:45 +00002987\\[py-execute-def-or-class]\tsends the current function or class definition
2988\\[py-execute-string]\tsends an arbitrary string
Barry Warsaw7ae77681994-12-12 20:38:05 +00002989\\[py-shell]\tstarts a Python interpreter window; this will be used by
Barry Warsaw820273d1998-05-19 15:54:45 +00002990\tsubsequent Python execution commands
2991%c:py-execute-import-or-reload
Barry Warsaw7ae77681994-12-12 20:38:05 +00002992%c:py-execute-buffer
2993%c:py-execute-region
Barry Warsaw820273d1998-05-19 15:54:45 +00002994%c:py-execute-def-or-class
2995%c:py-execute-string
Barry Warsaw7ae77681994-12-12 20:38:05 +00002996%c:py-shell
2997
2998@VARIABLES
2999
3000py-indent-offset\tindentation increment
Barry Warsaw42f707f1996-07-29 21:05:05 +00003001py-block-comment-prefix\tcomment string used by comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00003002
3003py-python-command\tshell command to invoke Python interpreter
Barry Warsaw7ae77681994-12-12 20:38:05 +00003004py-temp-directory\tdirectory used for temp files (if needed)
3005
3006py-beep-if-tab-change\tring the bell if tab-width is changed
3007%v:py-indent-offset
3008%v:py-block-comment-prefix
3009%v:py-python-command
Barry Warsaw7ae77681994-12-12 20:38:05 +00003010%v:py-temp-directory
3011%v:py-beep-if-tab-change
3012
3013@KINDS OF LINES
3014
3015Each physical line in the file is either a `continuation line' (the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003016preceding line ends with a backslash that's not part of a comment, or
3017the paren/bracket/brace nesting level at the start of the line is
3018non-zero, or both) or an `initial line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00003019
3020An initial line is in turn a `blank line' (contains nothing except
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003021possibly blanks or tabs), a `comment line' (leftmost non-blank
3022character is `#'), or a `code line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00003023
3024Comment Lines
3025
3026Although all comment lines are treated alike by Python, Python mode
3027recognizes two kinds that act differently with respect to indentation.
3028
3029An `indenting comment line' is a comment line with a blank, tab or
3030nothing after the initial `#'. The indentation commands (see below)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003031treat these exactly as if they were code lines: a line following an
Barry Warsaw7ae77681994-12-12 20:38:05 +00003032indenting comment line will be indented like the comment line. All
3033other comment lines (those with a non-whitespace character immediately
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003034following the initial `#') are `non-indenting comment lines', and
3035their indentation is ignored by the indentation commands.
Barry Warsaw7ae77681994-12-12 20:38:05 +00003036
3037Indenting comment lines are by far the usual case, and should be used
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003038whenever possible. Non-indenting comment lines are useful in cases
3039like these:
Barry Warsaw7ae77681994-12-12 20:38:05 +00003040
3041\ta = b # a very wordy single-line comment that ends up being
3042\t #... continued onto another line
3043
3044\tif a == b:
3045##\t\tprint 'panic!' # old code we've `commented out'
3046\t\treturn a
3047
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003048Since the `#...' and `##' comment lines have a non-whitespace
3049character following the initial `#', Python mode ignores them when
3050computing the proper indentation for the next line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00003051
3052Continuation Lines and Statements
3053
3054The Python-mode commands generally work on statements instead of on
3055individual lines, where a `statement' is a comment or blank line, or a
3056code line and all of its following continuation lines (if any)
3057considered as a single logical unit. The commands in this mode
3058generally (when it makes sense) automatically move to the start of the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003059statement containing point, even if point happens to be in the middle
3060of some continuation line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00003061
3062
3063@INDENTATION
3064
3065Primarily for entering new code:
3066\t\\[indent-for-tab-command]\t indent line appropriately
3067\t\\[py-newline-and-indent]\t insert newline, then indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00003068\t\\[py-electric-backspace]\t reduce indentation, or delete single character
Barry Warsaw7ae77681994-12-12 20:38:05 +00003069
3070Primarily for reindenting existing code:
3071\t\\[py-guess-indent-offset]\t guess py-indent-offset from file content; change locally
3072\t\\[universal-argument] \\[py-guess-indent-offset]\t ditto, but change globally
3073
3074\t\\[py-indent-region]\t reindent region to match its context
3075\t\\[py-shift-region-left]\t shift region left by py-indent-offset
3076\t\\[py-shift-region-right]\t shift region right by py-indent-offset
3077
3078Unlike most programming languages, Python uses indentation, and only
3079indentation, to specify block structure. Hence the indentation supplied
3080automatically by Python-mode is just an educated guess: only you know
3081the block structure you intend, so only you can supply correct
3082indentation.
3083
3084The \\[indent-for-tab-command] and \\[py-newline-and-indent] keys try to suggest plausible indentation, based on
3085the indentation of preceding statements. E.g., assuming
3086py-indent-offset is 4, after you enter
3087\tif a > 0: \\[py-newline-and-indent]
3088the cursor will be moved to the position of the `_' (_ is not a
3089character in the file, it's just used here to indicate the location of
3090the cursor):
3091\tif a > 0:
3092\t _
3093If you then enter `c = d' \\[py-newline-and-indent], the cursor will move
3094to
3095\tif a > 0:
3096\t c = d
3097\t _
3098Python-mode cannot know whether that's what you intended, or whether
3099\tif a > 0:
3100\t c = d
3101\t_
3102was your intent. In general, Python-mode either reproduces the
3103indentation of the (closest code or indenting-comment) preceding
3104statement, or adds an extra py-indent-offset blanks if the preceding
3105statement has `:' as its last significant (non-whitespace and non-
3106comment) character. If the suggested indentation is too much, use
Barry Warsaw27ee1151997-12-03 05:03:44 +00003107\\[py-electric-backspace] to reduce it.
Barry Warsaw7ae77681994-12-12 20:38:05 +00003108
3109Continuation lines are given extra indentation. If you don't like the
3110suggested indentation, change it to something you do like, and Python-
3111mode will strive to indent later lines of the statement in the same way.
3112
3113If a line is a continuation line by virtue of being in an unclosed
3114paren/bracket/brace structure (`list', for short), the suggested
3115indentation depends on whether the current line contains the first item
3116in the list. If it does, it's indented py-indent-offset columns beyond
3117the indentation of the line containing the open bracket. If you don't
3118like that, change it by hand. The remaining items in the list will mimic
3119whatever indentation you give to the first item.
3120
3121If a line is a continuation line because the line preceding it ends with
3122a backslash, the third and following lines of the statement inherit their
3123indentation from the line preceding them. The indentation of the second
3124line in the statement depends on the form of the first (base) line: if
3125the base line is an assignment statement with anything more interesting
3126than the backslash following the leftmost assigning `=', the second line
3127is indented two columns beyond that `='. Else it's indented to two
3128columns beyond the leftmost solid chunk of non-whitespace characters on
3129the base line.
3130
3131Warning: indent-region should not normally be used! It calls \\[indent-for-tab-command]
3132repeatedly, and as explained above, \\[indent-for-tab-command] can't guess the block
3133structure you intend.
3134%c:indent-for-tab-command
3135%c:py-newline-and-indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00003136%c:py-electric-backspace
Barry Warsaw7ae77681994-12-12 20:38:05 +00003137
3138
3139The next function may be handy when editing code you didn't write:
3140%c:py-guess-indent-offset
3141
3142
3143The remaining `indent' functions apply to a region of Python code. They
3144assume the block structure (equals indentation, in Python) of the region
3145is correct, and alter the indentation in various ways while preserving
3146the block structure:
3147%c:py-indent-region
3148%c:py-shift-region-left
3149%c:py-shift-region-right
3150
3151@MARKING & MANIPULATING REGIONS OF CODE
3152
3153\\[py-mark-block]\t mark block of lines
Barry Warsaw2518c671997-11-05 00:51:08 +00003154\\[py-mark-def-or-class]\t mark smallest enclosing def
3155\\[universal-argument] \\[py-mark-def-or-class]\t mark smallest enclosing class
Barry Warsaw42f707f1996-07-29 21:05:05 +00003156\\[comment-region]\t comment out region of code
3157\\[universal-argument] \\[comment-region]\t uncomment region of code
Barry Warsaw7ae77681994-12-12 20:38:05 +00003158%c:py-mark-block
Barry Warsaw2518c671997-11-05 00:51:08 +00003159%c:py-mark-def-or-class
Barry Warsaw42f707f1996-07-29 21:05:05 +00003160%c:comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00003161
3162@MOVING POINT
3163
3164\\[py-previous-statement]\t move to statement preceding point
3165\\[py-next-statement]\t move to statement following point
3166\\[py-goto-block-up]\t move up to start of current block
Barry Warsawab0e86c1998-05-19 15:31:46 +00003167\\[py-beginning-of-def-or-class]\t move to start of def
3168\\[universal-argument] \\[py-beginning-of-def-or-class]\t move to start of class
3169\\[py-end-of-def-or-class]\t move to end of def
3170\\[universal-argument] \\[py-end-of-def-or-class]\t move to end of class
Barry Warsaw7ae77681994-12-12 20:38:05 +00003171
3172The first two move to one statement beyond the statement that contains
3173point. A numeric prefix argument tells them to move that many
3174statements instead. Blank lines, comment lines, and continuation lines
3175do not count as `statements' for these commands. So, e.g., you can go
3176to the first code statement in a file by entering
3177\t\\[beginning-of-buffer]\t to move to the top of the file
3178\t\\[py-next-statement]\t to skip over initial comments and blank lines
3179Or do `\\[py-previous-statement]' with a huge prefix argument.
3180%c:py-previous-statement
3181%c:py-next-statement
3182%c:py-goto-block-up
Barry Warsawab0e86c1998-05-19 15:31:46 +00003183%c:py-beginning-of-def-or-class
3184%c:py-end-of-def-or-class
Barry Warsaw7ae77681994-12-12 20:38:05 +00003185
3186@LITTLE-KNOWN EMACS COMMANDS PARTICULARLY USEFUL IN PYTHON MODE
3187
3188`\\[indent-new-comment-line]' is handy for entering a multi-line comment.
3189
3190`\\[set-selective-display]' with a `small' prefix arg is ideally suited for viewing the
3191overall class and def structure of a module.
3192
3193`\\[back-to-indentation]' moves point to a line's first non-blank character.
3194
3195`\\[indent-relative]' is handy for creating odd indentation.
3196
3197@OTHER EMACS HINTS
3198
3199If you don't like the default value of a variable, change its value to
3200whatever you do like by putting a `setq' line in your .emacs file.
3201E.g., to set the indentation increment to 4, put this line in your
3202.emacs:
3203\t(setq py-indent-offset 4)
3204To see the value of a variable, do `\\[describe-variable]' and enter the variable
3205name at the prompt.
3206
3207When entering a key sequence like `C-c C-n', it is not necessary to
3208release the CONTROL key after doing the `C-c' part -- it suffices to
3209press the CONTROL key, press and release `c' (while still holding down
3210CONTROL), press and release `n' (while still holding down CONTROL), &
3211then release CONTROL.
3212
3213Entering Python mode calls with no arguments the value of the variable
3214`python-mode-hook', if that value exists and is not nil; for backward
3215compatibility it also tries `py-mode-hook'; see the `Hooks' section of
3216the Elisp manual for details.
3217
3218Obscure: When python-mode is first loaded, it looks for all bindings
3219to newline-and-indent in the global keymap, and shadows them with
3220local bindings to py-newline-and-indent."))
3221
Barry Warsaw56bd2ed2002-04-25 15:44:17 +00003222(require 'info-look)
Barry Warsaw5dfc7af2002-04-30 18:58:52 +00003223;; The info-look package does not always provide this function (it
3224;; appears this is the case with XEmacs 21.1)
3225(when (fboundp 'info-lookup-maybe-add-help)
3226 (info-lookup-maybe-add-help
3227 :mode 'python-mode
3228 :regexp "[a-zA-Z0-9_]+"
3229 :doc-spec '(("(python-lib)Module Index")
3230 ("(python-lib)Class-Exception-Object Index")
3231 ("(python-lib)Function-Method-Variable Index")
3232 ("(python-lib)Miscellaneous Index")))
3233 )
Barry Warsaw56bd2ed2002-04-25 15:44:17 +00003234
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003235
3236;; Helper functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00003237(defvar py-parse-state-re
3238 (concat
Barry Warsaw644991f2002-10-21 15:58:29 +00003239 "^[ \t]*\\(elif\\|else\\|while\\|def\\|class\\)\\>"
Barry Warsaw7ae77681994-12-12 20:38:05 +00003240 "\\|"
3241 "^[^ #\t\n]"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003242
Barry Warsaw7ae77681994-12-12 20:38:05 +00003243(defun py-parse-state ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003244 "Return the parse state at point (see `parse-partial-sexp' docs)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003245 (save-excursion
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00003246 (let ((here (point))
Barry Warsawb2d5e622002-04-22 15:29:27 +00003247 pps done)
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00003248 (while (not done)
3249 ;; back up to the first preceding line (if any; else start of
3250 ;; buffer) that begins with a popular Python keyword, or a
3251 ;; non- whitespace and non-comment character. These are good
3252 ;; places to start parsing to see whether where we started is
3253 ;; at a non-zero nesting level. It may be slow for people who
3254 ;; write huge code blocks or huge lists ... tough beans.
3255 (re-search-backward py-parse-state-re nil 'move)
3256 (beginning-of-line)
Barry Warsawf64b4051998-02-12 16:52:14 +00003257 ;; In XEmacs, we have a much better way to test for whether
3258 ;; we're in a triple-quoted string or not. Emacs does not
Barry Warsaw145ab1c1998-05-19 14:49:49 +00003259 ;; have this built-in function, which is its loss because
Barry Warsawf64b4051998-02-12 16:52:14 +00003260 ;; without scanning from the beginning of the buffer, there's
3261 ;; no accurate way to determine this otherwise.
Barry Warsawb2d5e622002-04-22 15:29:27 +00003262 (save-excursion (setq pps (parse-partial-sexp (point) here)))
3263 ;; make sure we don't land inside a triple-quoted string
3264 (setq done (or (not (nth 3 pps))
3265 (bobp)))
3266 ;; Just go ahead and short circuit the test back to the
3267 ;; beginning of the buffer. This will be slow, but not
3268 ;; nearly as slow as looping through many
3269 ;; re-search-backwards.
3270 (if (not done)
3271 (goto-char (point-min))))
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00003272 pps)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003273
Barry Warsaw7ae77681994-12-12 20:38:05 +00003274(defun py-nesting-level ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003275 "Return the buffer position of the last unclosed enclosing list.
3276If nesting level is zero, return nil."
Barry Warsawf64b4051998-02-12 16:52:14 +00003277 (let ((status (py-parse-state)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003278 (if (zerop (car status))
3279 nil ; not in a nest
3280 (car (cdr status))))) ; char# of open bracket
3281
Barry Warsaw7ae77681994-12-12 20:38:05 +00003282(defun py-backslash-continuation-line-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003283 "Return t iff preceding line ends with backslash that is not in a comment."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003284 (save-excursion
3285 (beginning-of-line)
3286 (and
3287 ;; use a cheap test first to avoid the regexp if possible
3288 ;; use 'eq' because char-after may return nil
3289 (eq (char-after (- (point) 2)) ?\\ )
3290 ;; make sure; since eq test passed, there is a preceding line
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003291 (forward-line -1) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00003292 (looking-at py-continued-re))))
3293
Barry Warsaw7ae77681994-12-12 20:38:05 +00003294(defun py-continuation-line-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003295 "Return t iff current line is a continuation line."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003296 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003297 (beginning-of-line)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003298 (or (py-backslash-continuation-line-p)
3299 (py-nesting-level))))
3300
Barry Warsaw9c1696c1998-12-15 04:36:22 +00003301(defun py-goto-beginning-of-tqs (delim)
3302 "Go to the beginning of the triple quoted string we find ourselves in.
3303DELIM is the TQS string delimiter character we're searching backwards
3304for."
Barry Warsaw3c34bb32000-10-27 05:00:25 +00003305 (let ((skip (and delim (make-string 1 delim)))
3306 (continue t))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00003307 (when skip
3308 (save-excursion
Barry Warsaw3c34bb32000-10-27 05:00:25 +00003309 (while continue
3310 (py-safe (search-backward skip))
3311 (setq continue (and (not (bobp))
3312 (= (char-before) ?\\))))
3313 (if (and (= (char-before) delim)
3314 (= (char-before (1- (point))) delim))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00003315 (setq skip (make-string 3 delim))))
3316 ;; we're looking at a triple-quoted string
3317 (py-safe (search-backward skip)))))
3318
Barry Warsaw7ae77681994-12-12 20:38:05 +00003319(defun py-goto-initial-line ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003320 "Go to the initial line of the current statement.
3321Usually this is the line we're on, but if we're on the 2nd or
3322following lines of a continuation block, we need to go up to the first
3323line of the block."
3324 ;; Tricky: We want to avoid quadratic-time behavior for long
3325 ;; continued blocks, whether of the backslash or open-bracket
3326 ;; varieties, or a mix of the two. The following manages to do that
3327 ;; in the usual cases.
3328 ;;
3329 ;; Also, if we're sitting inside a triple quoted string, this will
3330 ;; drop us at the line that begins the string.
Barry Warsaw9ec9fbc1998-01-21 05:15:57 +00003331 (let (open-bracket-pos)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003332 (while (py-continuation-line-p)
3333 (beginning-of-line)
3334 (if (py-backslash-continuation-line-p)
3335 (while (py-backslash-continuation-line-p)
3336 (forward-line -1))
3337 ;; else zip out of nested brackets/braces/parens
3338 (while (setq open-bracket-pos (py-nesting-level))
3339 (goto-char open-bracket-pos)))))
3340 (beginning-of-line))
3341
Barry Warsaw7ae77681994-12-12 20:38:05 +00003342(defun py-goto-beyond-final-line ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003343 "Go to the point just beyond the fine line of the current statement.
3344Usually this is the start of the next line, but if this is a
3345multi-line statement we need to skip over the continuation lines."
3346 ;; Tricky: Again we need to be clever to avoid quadratic time
3347 ;; behavior.
3348 ;;
3349 ;; XXX: Not quite the right solution, but deals with multi-line doc
3350 ;; strings
Barry Warsaw751f4931998-05-19 16:06:21 +00003351 (if (looking-at (concat "[ \t]*\\(" py-stringlit-re "\\)"))
3352 (goto-char (match-end 0)))
3353 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +00003354 (forward-line 1)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003355 (let (state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003356 (while (and (py-continuation-line-p)
3357 (not (eobp)))
3358 ;; skip over the backslash flavor
3359 (while (and (py-backslash-continuation-line-p)
3360 (not (eobp)))
3361 (forward-line 1))
3362 ;; if in nest, zip to the end of the nest
3363 (setq state (py-parse-state))
3364 (if (and (not (zerop (car state)))
3365 (not (eobp)))
3366 (progn
Barry Warsawaffc0ca1997-11-03 16:59:38 +00003367 (parse-partial-sexp (point) (point-max) 0 nil state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003368 (forward-line 1))))))
3369
Barry Warsaw7ae77681994-12-12 20:38:05 +00003370(defun py-statement-opens-block-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003371 "Return t iff the current statement opens a block.
3372I.e., iff it ends with a colon that is not in a comment. Point should
3373be at the start of a statement."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003374 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003375 (let ((start (point))
3376 (finish (progn (py-goto-beyond-final-line) (1- (point))))
3377 (searching t)
3378 (answer nil)
3379 state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003380 (goto-char start)
3381 (while searching
3382 ;; look for a colon with nothing after it except whitespace, and
3383 ;; maybe a comment
3384 (if (re-search-forward ":\\([ \t]\\|\\\\\n\\)*\\(#.*\\)?$"
3385 finish t)
3386 (if (eq (point) finish) ; note: no `else' clause; just
3387 ; keep searching if we're not at
3388 ; the end yet
3389 ;; sure looks like it opens a block -- but it might
3390 ;; be in a comment
3391 (progn
3392 (setq searching nil) ; search is done either way
3393 (setq state (parse-partial-sexp start
3394 (match-beginning 0)))
3395 (setq answer (not (nth 4 state)))))
3396 ;; search failed: couldn't find another interesting colon
3397 (setq searching nil)))
3398 answer)))
3399
Barry Warsawf831d811996-07-31 20:42:59 +00003400(defun py-statement-closes-block-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003401 "Return t iff the current statement closes a block.
3402I.e., if the line starts with `return', `raise', `break', `continue',
3403and `pass'. This doesn't catch embedded statements."
Barry Warsawf831d811996-07-31 20:42:59 +00003404 (let ((here (point)))
Barry Warsawa8f99ba1999-05-24 18:37:57 +00003405 (py-goto-initial-line)
Barry Warsawc0d2d511999-06-03 22:18:59 +00003406 (back-to-indentation)
Barry Warsawf831d811996-07-31 20:42:59 +00003407 (prog1
Barry Warsawaffc0ca1997-11-03 16:59:38 +00003408 (looking-at (concat py-block-closing-keywords-re "\\>"))
Barry Warsawf831d811996-07-31 20:42:59 +00003409 (goto-char here))))
3410
Barry Warsaw7ae77681994-12-12 20:38:05 +00003411(defun py-goto-beyond-block ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003412 "Go to point just beyond the final line of block begun by the current line.
3413This is the same as where `py-goto-beyond-final-line' goes unless
3414we're on colon line, in which case we go to the end of the block.
3415Assumes point is at the beginning of the line."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003416 (if (py-statement-opens-block-p)
3417 (py-mark-block nil 'just-move)
3418 (py-goto-beyond-final-line)))
3419
Barry Warsaw7ae77681994-12-12 20:38:05 +00003420(defun py-goto-statement-at-or-above ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003421 "Go to the start of the first statement at or preceding point.
3422Return t if there is such a statement, otherwise nil. `Statement'
3423does not include blank lines, comments, or continuation lines."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003424 (py-goto-initial-line)
3425 (if (looking-at py-blank-or-comment-re)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003426 ;; skip back over blank & comment lines
3427 ;; note: will skip a blank or comment line that happens to be
3428 ;; a continuation line too
3429 (if (re-search-backward "^[ \t]*[^ \t#\n]" nil t)
3430 (progn (py-goto-initial-line) t)
3431 nil)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003432 t))
3433
Barry Warsaw7ae77681994-12-12 20:38:05 +00003434(defun py-goto-statement-below ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003435 "Go to start of the first statement following the statement containing point.
3436Return t if there is such a statement, otherwise nil. `Statement'
3437does not include blank lines, comments, or continuation lines."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003438 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003439 (let ((start (point)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003440 (py-goto-beyond-final-line)
3441 (while (and
Barry Warsawf070cce2002-05-23 19:42:16 +00003442 (or (looking-at py-blank-or-comment-re)
3443 (py-in-literal))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003444 (not (eobp)))
3445 (forward-line 1))
3446 (if (eobp)
3447 (progn (goto-char start) nil)
3448 t)))
3449
Barry Warsaw7ae77681994-12-12 20:38:05 +00003450(defun py-go-up-tree-to-keyword (key)
Barry Warsaw41a05c71998-08-10 16:33:12 +00003451 "Go to begining of statement starting with KEY, at or preceding point.
3452
3453KEY is a regular expression describing a Python keyword. Skip blank
3454lines and non-indenting comments. If the statement found starts with
3455KEY, then stop, otherwise go back to first enclosing block starting
3456with KEY. If successful, leave point at the start of the KEY line and
3457return t. Otherwise, leav point at an undefined place and return nil."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003458 ;; skip blanks and non-indenting #
3459 (py-goto-initial-line)
3460 (while (and
3461 (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
3462 (zerop (forward-line -1))) ; go back
3463 nil)
3464 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003465 (let* ((re (concat "[ \t]*" key "\\b"))
3466 (case-fold-search nil) ; let* so looking-at sees this
3467 (found (looking-at re))
3468 (dead nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003469 (while (not (or found dead))
3470 (condition-case nil ; in case no enclosing block
3471 (py-goto-block-up 'no-mark)
3472 (error (setq dead t)))
3473 (or dead (setq found (looking-at re))))
3474 (beginning-of-line)
3475 found))
3476
Barry Warsaw7ae77681994-12-12 20:38:05 +00003477(defun py-suck-up-leading-text ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003478 "Return string in buffer from start of indentation to end of line.
3479Prefix with \"...\" if leading whitespace was skipped."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003480 (save-excursion
3481 (back-to-indentation)
3482 (concat
3483 (if (bolp) "" "...")
3484 (buffer-substring (point) (progn (end-of-line) (point))))))
3485
Barry Warsaw7ae77681994-12-12 20:38:05 +00003486(defun py-suck-up-first-keyword ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003487 "Return first keyword on the line as a Lisp symbol.
3488`Keyword' is defined (essentially) as the regular expression
3489([a-z]+). Returns nil if none was found."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003490 (let ((case-fold-search nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003491 (if (looking-at "[ \t]*\\([a-z]+\\)\\b")
3492 (intern (buffer-substring (match-beginning 1) (match-end 1)))
3493 nil)))
3494
Barry Warsawb3e81d51996-09-04 15:12:42 +00003495(defun py-current-defun ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003496 "Python value for `add-log-current-defun-function'.
3497This tells add-log.el how to find the current function/method/variable."
Barry Warsawb3e81d51996-09-04 15:12:42 +00003498 (save-excursion
3499 (if (re-search-backward py-defun-start-re nil t)
3500 (or (match-string 3)
3501 (let ((method (match-string 2)))
3502 (if (and (not (zerop (length (match-string 1))))
3503 (re-search-backward py-class-start-re nil t))
3504 (concat (match-string 1) "." method)
3505 method)))
3506 nil)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003507
3508
Barry Warsawfec75d61995-07-05 23:26:15 +00003509(defconst py-help-address "python-mode@python.org"
Barry Warsaw850437a1995-03-08 21:50:28 +00003510 "Address accepting submission of bug reports.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003511
Barry Warsaw850437a1995-03-08 21:50:28 +00003512(defun py-version ()
3513 "Echo the current version of `python-mode' in the minibuffer."
3514 (interactive)
3515 (message "Using `python-mode' version %s" py-version)
3516 (py-keep-region-active))
3517
3518;; only works under Emacs 19
3519;(eval-when-compile
3520; (require 'reporter))
3521
3522(defun py-submit-bug-report (enhancement-p)
3523 "Submit via mail a bug report on `python-mode'.
Barry Warsaw41a05c71998-08-10 16:33:12 +00003524With \\[universal-argument] (programmatically, argument ENHANCEMENT-P
3525non-nil) just submit an enhancement request."
Barry Warsaw850437a1995-03-08 21:50:28 +00003526 (interactive
3527 (list (not (y-or-n-p
Barry Warsaw41a05c71998-08-10 16:33:12 +00003528 "Is this a bug report (hit `n' to send other comments)? "))))
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00003529 (let ((reporter-prompt-for-summary-p (if enhancement-p
3530 "(Very) brief summary: "
3531 t)))
Barry Warsaw850437a1995-03-08 21:50:28 +00003532 (require 'reporter)
3533 (reporter-submit-bug-report
3534 py-help-address ;address
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00003535 (concat "python-mode " py-version) ;pkgname
Barry Warsaw850437a1995-03-08 21:50:28 +00003536 ;; varlist
3537 (if enhancement-p nil
3538 '(py-python-command
3539 py-indent-offset
3540 py-block-comment-prefix
Barry Warsaw850437a1995-03-08 21:50:28 +00003541 py-temp-directory
3542 py-beep-if-tab-change))
3543 nil ;pre-hooks
3544 nil ;post-hooks
3545 "Dear Barry,") ;salutation
3546 (if enhancement-p nil
3547 (set-mark (point))
3548 (insert
3549"Please replace this text with a sufficiently large code sample\n\
3550and an exact recipe so that I can reproduce your problem. Failure\n\
3551to do so may mean a greater delay in fixing your bug.\n\n")
3552 (exchange-point-and-mark)
3553 (py-keep-region-active))))
3554
3555
Barry Warsaw47384781997-11-26 05:27:45 +00003556(defun py-kill-emacs-hook ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003557 "Delete files in `py-file-queue'.
3558These are Python temporary files awaiting execution."
Barry Warsaw47384781997-11-26 05:27:45 +00003559 (mapcar #'(lambda (filename)
3560 (py-safe (delete-file filename)))
3561 py-file-queue))
3562
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003563;; arrange to kill temp files when Emacs exists
Barry Warsawc72c11c1997-08-09 06:42:08 +00003564(add-hook 'kill-emacs-hook 'py-kill-emacs-hook)
Barry Warsaw4f577d22001-04-11 20:23:17 +00003565(add-hook 'comint-output-filter-functions 'py-pdbtrack-track-stack-file)
3566
3567;; Add a designator to the minor mode strings
3568(or (assq 'py-pdbtrack-minor-mode-string minor-mode-alist)
3569 (push '(py-pdbtrack-is-tracking-p py-pdbtrack-minor-mode-string)
3570 minor-mode-alist))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003571
3572
3573
Skip Montanaro6c5bc342002-12-31 16:56:20 +00003574;;; paragraph and string filling code from Bernhard Herzog
3575;;; see http://mail.python.org/pipermail/python-list/2002-May/103189.html
3576
3577(defun py-fill-comment (&optional justify)
3578 "Fill the comment paragraph around point"
3579 (let (;; Non-nil if the current line contains a comment.
3580 has-comment
3581
3582 ;; If has-comment, the appropriate fill-prefix for the comment.
3583 comment-fill-prefix)
3584
3585 ;; Figure out what kind of comment we are looking at.
3586 (save-excursion
3587 (beginning-of-line)
3588 (cond
3589 ;; A line with nothing but a comment on it?
3590 ((looking-at "[ \t]*#[# \t]*")
3591 (setq has-comment t
3592 comment-fill-prefix (buffer-substring (match-beginning 0)
3593 (match-end 0))))
3594
3595 ;; A line with some code, followed by a comment? Remember that the hash
3596 ;; which starts the comment shouldn't be part of a string or character.
3597 ((progn
3598 (while (not (looking-at "#\\|$"))
3599 (skip-chars-forward "^#\n\"'\\")
3600 (cond
3601 ((eq (char-after (point)) ?\\) (forward-char 2))
3602 ((memq (char-after (point)) '(?\" ?')) (forward-sexp 1))))
3603 (looking-at "#+[\t ]*"))
3604 (setq has-comment t)
3605 (setq comment-fill-prefix
3606 (concat (make-string (current-column) ? )
3607 (buffer-substring (match-beginning 0) (match-end 0)))))))
3608
3609 (if (not has-comment)
3610 (fill-paragraph justify)
3611
3612 ;; Narrow to include only the comment, and then fill the region.
3613 (save-restriction
3614 (narrow-to-region
3615
3616 ;; Find the first line we should include in the region to fill.
3617 (save-excursion
3618 (while (and (zerop (forward-line -1))
3619 (looking-at "^[ \t]*#")))
3620
3621 ;; We may have gone to far. Go forward again.
3622 (or (looking-at "^[ \t]*#")
3623 (forward-line 1))
3624 (point))
3625
3626 ;; Find the beginning of the first line past the region to fill.
3627 (save-excursion
3628 (while (progn (forward-line 1)
3629 (looking-at "^[ \t]*#")))
3630 (point)))
3631
3632 ;; Lines with only hashes on them can be paragraph boundaries.
3633 (let ((paragraph-start (concat paragraph-start "\\|[ \t#]*$"))
3634 (paragraph-separate (concat paragraph-separate "\\|[ \t#]*$"))
3635 (fill-prefix comment-fill-prefix))
3636 ;;(message "paragraph-start %S paragraph-separate %S"
3637 ;;paragraph-start paragraph-separate)
3638 (fill-paragraph justify))))
3639 t))
3640
3641
3642(defun py-fill-string (start &optional justify)
3643 "Fill the paragraph around (point) in the string starting at start"
3644 ;; basic strategy: narrow to the string and call the default
3645 ;; implementation
3646 (let (;; the start of the string's contents
3647 string-start
3648 ;; the end of the string's contents
3649 string-end
3650 ;; length of the string's delimiter
3651 delim-length
3652 ;; The string delimiter
3653 delim
3654 )
3655
3656 (save-excursion
3657 (goto-char start)
3658 (if (looking-at "\\('''\\|\"\"\"\\|'\\|\"\\)\\\\?\n?")
3659 (setq string-start (match-end 0)
3660 delim-length (- (match-end 1) (match-beginning 1))
3661 delim (buffer-substring-no-properties (match-beginning 1)
3662 (match-end 1)))
3663 (error "The parameter start is not the beginning of a python string"))
3664
3665 ;; if the string is the first token on a line and doesn't start with
3666 ;; a newline, fill as if the string starts at the beginning of the
3667 ;; line. this helps with one line docstrings
3668 (save-excursion
3669 (beginning-of-line)
3670 (and (/= (char-before string-start) ?\n)
3671 (looking-at (concat "[ \t]*" delim))
3672 (setq string-start (point))))
3673
3674 (forward-sexp (if (= delim-length 3) 2 1))
3675
3676 ;; with both triple quoted strings and single/double quoted strings
3677 ;; we're now directly behind the first char of the end delimiter
3678 ;; (this doesn't work correctly when the triple quoted string
3679 ;; contains the quote mark itself). The end of the string's contents
3680 ;; is one less than point
3681 (setq string-end (1- (point))))
3682
3683 ;; Narrow to the string's contents and fill the current paragraph
3684 (save-restriction
3685 (narrow-to-region string-start string-end)
3686 (let ((ends-with-newline (= (char-before (point-max)) ?\n)))
3687 (fill-paragraph justify)
3688 (if (and (not ends-with-newline)
3689 (= (char-before (point-max)) ?\n))
3690 ;; the default fill-paragraph implementation has inserted a
3691 ;; newline at the end. Remove it again.
3692 (save-excursion
3693 (goto-char (point-max))
3694 (delete-char -1)))))
3695
3696 ;; return t to indicate that we've done our work
3697 t))
3698
3699(defun py-fill-paragraph (&optional justify)
3700 "Like \\[fill-paragraph], but handle Python comments and strings.
3701If any of the current line is a comment, fill the comment or the
3702paragraph of it that point is in, preserving the comment's indentation
3703and initial `#'s.
3704If point is inside a string, narrow to that string and fill.
3705"
3706 (interactive "P")
3707 (let* ((bod (py-point 'bod))
3708 (pps (parse-partial-sexp bod (point))))
3709 (cond
3710 ;; are we inside a comment or on a line with only whitespace before
3711 ;; the comment start?
3712 ((or (nth 4 pps)
3713 (save-excursion (beginning-of-line) (looking-at "[ \t]*#")))
3714 (py-fill-comment justify))
3715 ;; are we inside a string?
3716 ((nth 3 pps)
3717 (py-fill-string (nth 2 pps)))
3718 ;; otherwise use the default
3719 (t
3720 (fill-paragraph justify)))))
3721
3722
3723
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003724(provide 'python-mode)
3725;;; python-mode.el ends here