#Python makes such great use of that horizontal real estate. /s
@lattera Those are exceptionally long lines and high levels of indentation, compared to most #Python code I see. (Or honestly, compared to most mainstream languages... Java is the only one that comes to mind where the code tends to look a bit more like that.)
@diazona @lattera yeah part of the aesthetic design of the Python programming language, with mandatory significant whitespace, is for you to look at code like that and immediately think "oh no what have I done". ideally before it gets to this point

@glyph @lattera Indeed. And in fact, now that I take a closer look at that code, there are some *really* inadvisable formatting choices in there. Including cases where the author was actively fighting against the way #Python normally encourages one to write code.

Not that I think this is what actually happened, but if someone specifically decided to create an example of how you can write code that's "properly indented" but still badly formatted and organized, I could see them coming up with something that looks like this.

@diazona @lattera

Agreed. That level of indentation is an almost sure indicator of code that needs to be refactored, due to bad design.

And as you say, it's true regardless of the language. People were writing badly structured code with excessive levels of indentation before we were born, and will be long after we're gone.