David Rasmussen a écrit :
> Antoon Pardon wrote:
> 
>>>
>>> Write shorter functions ;)
>>
>>
>> This has little to do with long functions. A class can contain
>> a large number of methods, whitch are all rather short, and your
>> class will still be spread over several pages.
>>
> 
> Write classes with a smaller interface ;-)
> 
> /David

What about an editor that will reserve the first lines in the edit 
window to show the current class ? Could be a cool feature here :) 
You'll see something like that when you scroll too far :

File    Edit   Options    About
-------------------------------
class do_something(object):
...
     return 1

def do_it(self):
     print self.what_now
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to