if I have something like
import mynewclass
Can I add some method to mynewclass? Something like the following in concept:
def newmethod(self,x):
return x + self.y
mynewclass.newmethod = newmethod
(I am using CPython 2.6)
|
if I have something like
Can I add some method to mynewclass? Something like the following in concept:
(I am using CPython 2.6) |
|||||
|
|
In Python the import statement is used for modules, not classes... so to import a class you need something like
More to the point of your question the answer is yes. In Python classes are just regular objects and a class method is just a function stored in an object attribute. Attributes of object instances in Python moreover are dynamic (you can add new object attributes at runtime) and this fact, combined with the previous one means that you can add a new method to a class at runtime.
How can this work? When you type
Python will do the following:
If the search for the class also doesn't succeed instead parent classes are also all searched in a specific order to find inherited methods and attributes and therefore things are just a little bit more complex. |
||||
|
|
|
Yes, if it's a Python type. Except you'd do it on the class, not the module/package. |
|||
|
|