On Thu, Feb 10, 2022 at 10:37 AM Jen Kris <[email protected]> wrote: > > I'm using Python 3.8 so I tried your second choice: > > pSents = PyObject_CallFunctionObjArgs(pSentMod, pListItem); > > but pSents is 0x0. pSentMod and pListItem are valid pointers. >
It means exception happened. If you are writing Python/C function, return NULL (e.g. `if (pSents == NULL) return NULL`) Then Python show the exception and traceback for you. -- Inada Naoki <[email protected]> -- https://mail.python.org/mailman/listinfo/python-list
