While working to enable python-xmlsec on Ubuntu, the function below fails because H is defined as an "unsigned short int", where the format is defined as a "short int":
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "OH|z:from_file", kwlist, &file, &format, &password)) {
changing it to OI resolves the test failures on big-endian systems.
While working to enable python-xmlsec on Ubuntu, the function below fails because
His defined as an "unsigned short int", where the format is defined as a "short int":if (!PyArg_ParseTupleAndKeywords(args, kwargs, "OH|z:from_file", kwlist, &file, &format, &password)) {changing it to
OIresolves the test failures on big-endian systems.