Steven D'Aprano <steve+comp.lang.pyt...@pearwood.info> writes:

> The exception is, you have an indented block of code, perhaps three or four
> indents deep (surely you never allow anything to get beyond five or six
> indents?), and you want to raise an exception:
>
>                 raise SomeExceptionType("and here's a rather long error"
>                                         "message blah blah blah")

Give yourself plenty more room, stay within PEP 8, *and* make the
alignment robust in the face of changes::

                raise SomeExceptionType(
                        "and here's a rather long error"
                        "message blah blah blah")

-- 
 \           “I have one rule to live by: Don't make it worse.” —Hazel |
  `\                                                          Woodcock |
_o__)                                                                  |
Ben Finney
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to