I am trying to stick to the rule described in the TDD book that, each
test method name consists of the method name to be tested, inputs and
the expected outputs. It takes up a lot of space and my company has a
rule of limiting 79 characters (or 80) per line. I found that
def abcdeef\
dddaaa(self):
    pass

does not work, but
def \
abcsajfoijfiawifoiwejfoi(self):
    pass

works. Is this the only way to do it?
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to