472,120 Members | 1,462 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,120 software developers and data experts.

PyObject_GetAttrString failing when getting a function pointerfr om PyObject* returned by Py_CompileString

Hi,

My following code is failing with an error of "isSizeSmall not function or callable"

//---------------------------------------------------
char szExpr[2048];
memset(szExpr,'\0',sizeof(szExpr));
sprintf(szExpr,"def isSizeSmall(size,vol,ADV,prod):\n if ( (size < 1000) & (vol < (0.001 * ADV)) & (prod==\"Stock\")): return 100\n else: return 11\n\n\n");

PyObject* pyco = Py_CompileString(szExpr,"<stdin>", Py_file_input);

// Get a pointer to this function
char funcname[56];
memset(funcname,'\0',sizeof(funcname));
sprintf(funcname,"isSizeSmall");

PyObject* func = PyObject_GetAttrString(pyco,funcname);
if(!func || !PyCallable_Check(func))
printf("%s not function or callable\n");
//---------------------------------------------------

In above case, Py_CompileString parses & compiles the code successfully.

Can we not use the "PyObject*" returned by Py_CompileString as input to PyObject_GetAttrString?
What could be wrong?

I want to use this function pointer returned by PyObject_GetAttrString as input to PyObject_CallObject.
Can I use the "PyObject*" returned by Py_CompileString directly as is in call to PyObject_CallObject?

Please help.

Thanks and Regards,
Ganesh

================================================== ============================
Please access the attached hyperlink for an important electronic communications disclaimer:

http://www.credit-suisse.com/legal/e..._email_ib.html
================================================== ============================

Nov 20 '07 #1
0 1445

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

1 post views Thread by Elie B. | last post: by
3 posts views Thread by Travis Berg | last post: by
3 posts views Thread by Hugh Macdonald | last post: by
10 posts views Thread by Java and Swing | last post: by
14 posts views Thread by squishywaffle | last post: by
reply views Thread by leo001 | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.