Bruno Desthuilliers wrote:
OTHO, 'one class per file' is a standard idiom in Java and IIRC in C++ (which both have namespaces one way or another)
In Java you don't get a choice, because the compiler assumes a class can be found in the correspondingly named file. While C++ has namespaces, they don't have any defined relationship to source files, so they don't help you find which file something is defined in. -- Greg -- http://mail.python.org/mailman/listinfo/python-list