TLDR; PyString_FromString doesn\'t work in Python3.5 so I need an alternative.
PyString_FromString
I am following an example for including python 3 within a C++ project fro
PyUnicode_FromString()
if (!(pValue = PyUnicode_FromString("A string instead of a number"))) return NULL;