On May 09, 2010, at 09:01 PM, A.M. Kuchling wrote: >On Sun, May 09, 2010 at 06:56:27PM +0200, Antoine Pitrou wrote: >> There was one file that I didn't touch: Modules/_cursesmodule.c >> Indentation is so uncommon there that interested people should reformat >> it themselves, if desired. > >I'm happy to see the curses module re-indented. Does anyone have a >set of settings for Emacs or for GNU indent for Python's C indentation >style?
In Emacs, visit a C file and type:
C-c . python RET
'python' is a standard c-mode indentation style, however it's set up to use
tabs. It should be updated, maybe to a 'python3' style? Here's a quick and
dirty hack:
(c-add-style "python3" '("python"
(indent-tabs-mode . nil)
(c-basic-offset . 4)
))
-Barry
signature.asc
Description: PGP signature
_______________________________________________ python-committers mailing list [email protected] http://mail.python.org/mailman/listinfo/python-committers
