On 2010-01-29 11:00 AM, Mr.M wrote:
I think this sounds like a stupid question, but I searched the C/Api doc
and google but I wasn't able to find any hint:
how can I retrive PyObject pointer if I only know it's name?
What I'd like to do is something like this:
[code]
PyObject* obj = PyFindWhat
I think this sounds like a stupid question, but I searched the C/Api doc
and google but I wasn't able to find any hint:
how can I retrive PyObject pointer if I only know it's name?
What I'd like to do is something like this:
[code]
PyObject* obj = PyFindWhatImLookingFor("w.z.y.x");
[/code]
Of