Hi All,

A variable whose data type is PyUnicodeObject needs to passed to a function as 
an argument whose data type should be PyBytesObject type 

example :

PyUnicodeObject *p = ...whatever...; 
function (PyByteObject* a); 

function((PyBytesObject *)p);

compiled and got a Bus Error.

Thanks for spending ur valuable time.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to