On Mon, 2006-04-24 at 11:18 -0700, Guido van Rossum wrote:

> The former. I thought it was already decided? Of course, only for
> *new* code so far, to ease merges.

Here's a tiny bit of Emacs Lisp that should support the py3k style.
Only moderately tested in XEmacs 21.5.

-Barry

(defconst py3k-style
  '("python"
    (indent-tabs-mode . nil)
    (c-basic-offset . 4)
    ))

(if (not (assoc "py3k" c-style-alist))
    (c-add-style "py3k" py3k-style))

Attachment: signature.asc
Description: This is a digitally signed message part

_______________________________________________
Python-3000 mailing list
Python-3000@python.org
http://mail.python.org/mailman/listinfo/python-3000
Unsubscribe: 
http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com

Reply via email to