On Tuesday 27 June 2006 15:27, Georg Baum wrote: > One general comment: Right now, we have all sorts of indentation in .py > files (mainly two spaces, four spaces, and tabs). > > IMO we should use the same indentation rule as in C++ files: tabs for > logical indentation, and spaces for alignment, e.g.
The style that I follow (or that I try to follow) is: http://www.python.org/dev/peps/pep-0008/ a lot more pythonic, after all python is not C++. Please let us not mix tabs and spaces in python, all spaces. In python the indentation matters, you can have something that looks like in a editor and that the interpreter does not like. What you are proposing is dangerous. :-) > Georg -- José Abílio