Standardize on Py::Long type for Python bindings.

This commit is contained in:
tritao
2025-05-15 19:59:08 -03:00
committed by Adrián Insaurralde Avalos
parent 5391e21d4e
commit 010d37deda
44 changed files with 163 additions and 163 deletions
+1 -1
View File
@@ -238,7 +238,7 @@ PyObject* LinkBaseExtensionPy::setLink(PyObject *_args)
PyObject *key, *value;
Py_ssize_t pos = 0;
while(PyDict_Next(pcObj, &pos, &key, &value))
parseLink(ext,Py::Int(key),value);
parseLink(ext,Py::Long(key),value);
}else if(PySequence_Check(pcObj)) {
ext->setLink(-1,nullptr);
Py::Sequence seq(pcObj);