summaryrefslogtreecommitdiffstats
path: root/sip/qt/qarray.sip
diff options
context:
space:
mode:
authoraneejit1 <aneejit1@gmail.com>2022-04-19 13:21:52 +0000
committerSlávek Banko <slavek.banko@axis.cz>2022-07-28 00:56:02 +0200
commit52f8f8436dc2af136156ef95dbb8463481a78df8 (patch)
tree50e5f757a67774f98bfa931ef191dcc07683996d /sip/qt/qarray.sip
parent228b87ea89625d0783fdfe60114eba89e0f37942 (diff)
downloadpytqt-52f8f8436dc2af136156ef95dbb8463481a78df8.tar.gz
pytqt-52f8f8436dc2af136156ef95dbb8463481a78df8.zip
Updates to support Python version 3
Amendments to the sip source and configuration/build scripts to allow for support under Python version 3. The examples have been updated using "2to3" along with some manual changes to sort out intentation and casting to integer from float. Signed-off-by: aneejit1 <aneejit1@gmail.com> Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 6be046642290c28c17949022fb66ae02ac21d544)
Diffstat (limited to 'sip/qt/qarray.sip')
-rw-r--r--sip/qt/qarray.sip4
1 files changed, 2 insertions, 2 deletions
diff --git a/sip/qt/qarray.sip b/sip/qt/qarray.sip
index a7c34b8..6ce411e 100644
--- a/sip/qt/qarray.sip
+++ b/sip/qt/qarray.sip
@@ -52,7 +52,7 @@ converted to and from Python lists of the type.
// Get it.
for (uint i = 0; i < sipCpp -> count(); ++i)
- if (PyList_SetItem(l,i,PyInt_FromLong((long)(sipCpp -> at(i)))) < 0)
+ if (PyList_SetItem(l,i,PyLong_FromLong((long)(sipCpp -> at(i)))) < 0)
{
Py_DECREF(l);
@@ -74,7 +74,7 @@ converted to and from Python lists of the type.
for (int i = 0; i < PyList_GET_SIZE(sipPy); ++i)
{
- qa[i] = (int)PyInt_AsLong(PyList_GET_ITEM(sipPy,i));
+ qa[i] = PyLong_AsLong(PyList_GET_ITEM(sipPy,i));
if (PyErr_Occurred() != NULL)
{