Reid Thompson wrote: > James Britt wrote: >> I've wondered if this sort thing is a problem in Python; perhaps it is >> less likely there that any accidental indent or out-dent will still >> give you well-formed code. >> > I've only minimally looked at python, but I'm pretty sure that it will > throw an error when indentation is fouled. Sure, if in fact the indentation is fouled. My concern is that you can mistakenly add 4 spaces instead of two, or vice versa, and get valid code (i.e. the parser does not see anything technically wrong) yet not have the code you really wanted. James