Hi All, Not being able to figure out how are partial classes coded in Python.
Example: Suppose I have a code generator which generates part of a business class, where as the custome part is to be written by me. In ruby (or C#), I divide the code into two source files. Like this: GeneratedPerson.rb Class Person . . . End Class HandcraftedPerson.rb Class Person . . . End Class The intrepretor adds the code in both to compose the class Person. What is the equivalent in Python? Inheriting is a way, but is not working in all scenerios. Thanks Sanjay -- http://mail.python.org/mailman/listinfo/python-list