Johannes Bauer <[email protected]> writes: > This makes the source files largish however (they're currently split up > in different files). Can I use the nested class advantage and somehow > include the inner class from another file?
You could possibly duck-punch class A:
import B
class A:
...
A.B = B.B
Disclaimer: I haven't tested the above and I'd consider it pretty ugly.
--
http://mail.python.org/mailman/listinfo/python-list
