One class one file?

2009-10-16 Thread Someone Something
I'm trying write a program that's going to be more than 100 lines or so but I need it all in one class. Is there a painless way to have one class in two files? -- http://mail.python.org/mailman/listinfo/python-list

Re: One class one file?

2009-10-16 Thread MRAB
Someone Something wrote: I'm trying write a program that's going to be more than 100 lines or so but I need it all in one class. Is there a painless way to have one class in two files? Python won't complain if you have more than 100 lines in one file, or even in one class in one file. There

Re: One class one file?

2009-10-16 Thread D'Arcy J.M. Cain
On Fri, 16 Oct 2009 19:53:37 -0400 Someone Something fordhai...@gmail.com wrote: I'm trying write a program that's going to be more than 100 lines or so but I need it all in one class. Is there a painless way to have one class in two files? I don't understand what the problem is with a 100