summaryrefslogtreecommitdiffstats
path: root/doc/html/_sources
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2021-05-12 09:32:38 +0900
committerMichele Calgaro <[email protected]>2021-05-12 09:32:38 +0900
commit65411c74aa20ff9a95283533954ea77ee25792a2 (patch)
tree15aace2d3d7a163e0f349dbfb5165071528e25c2 /doc/html/_sources
parent7ba42131b73648e307ca5b1f21e7d2c2052ff09e (diff)
downloadsip4-tqt-65411c74aa20ff9a95283533954ea77ee25792a2.tar.gz
sip4-tqt-65411c74aa20ff9a95283533954ea77ee25792a2.zip
Replaced PyList_SET_ITEM as done in python-tqt.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/_sources')
-rw-r--r--doc/html/_sources/directives.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/_sources/directives.txt b/doc/html/_sources/directives.txt
index ecaaa5b..858f112 100644
--- a/doc/html/_sources/directives.txt
+++ b/doc/html/_sources/directives.txt
@@ -397,7 +397,7 @@ list of ``QWidget`` instances::
}
// Add the wrapper to the list.
- PyList_SET_ITEM(l, i, wobj);
+ PyList_SetItem(l, i, wobj);
}
// Return the Python list.
@@ -1387,7 +1387,7 @@ For example::
return NULL;
}
- PyList_SET_ITEM(l, i, tobj);
+ PyList_SetItem(l, i, tobj);
}
// Return the Python list.