A variable whose data type is PyUnicodeObject checked whether it is a 
UnicodeObject type.
Got output as false

example :

PyUnicodeObject *p; 

if (PyUnicode_Check(path)) {
        printf("\nTrue.\n");
        
}
else {
        printf("\nfalse.\n");
}

output: false


Confused what went wrong.

regards
mathan
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to