In article <4f5d4390$0$29891$c3e8da3$54964...@news.astraweb.com>,
 Steven D'Aprano <steve+comp.lang.pyt...@pearwood.info> wrote:

> You can't split tokens over multiple lines, or put any whitespace 
> between them.

Well, if you truly wanted to be perverse, you could write some kind of 
decorator:

@make_long_named_test_method('some',
                             'very',
                             'long',
                             'list',
                             'of',
                             'token',
                             'fragments')
def x(self):
   blah, blah, blah

which creates a "test_some_very_long_list_of_token_fragments" method.  
But it would be a lot easier to just use sane method names.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to