Hello!
If I do
import uno
localContext=un o.getComponentC ontext()
then localContext is of type <type 'pyuno'>
I guess it's a new type provided by PyUNO extension.
localContext.__ class__ is None
Is there any way to list all methods of that new type, via Python C
API or through interpreter (other then dir(localContex t) )?
What I want is to call localContext's methods like in the tutorial
example:
x=MyClass()
MyClass.f(x)
Thank you,
Dmitri
If I do
import uno
localContext=un o.getComponentC ontext()
then localContext is of type <type 'pyuno'>
I guess it's a new type provided by PyUNO extension.
localContext.__ class__ is None
Is there any way to list all methods of that new type, via Python C
API or through interpreter (other then dir(localContex t) )?
What I want is to call localContext's methods like in the tutorial
example:
x=MyClass()
MyClass.f(x)
Thank you,
Dmitri
Comment