summaryrefslogtreecommitdiffstats
path: root/sphinx
diff options
context:
space:
mode:
Diffstat (limited to 'sphinx')
-rw-r--r--sphinx/directives.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/directives.rst b/sphinx/directives.rst
index ecaaa5b..858f112 100644
--- a/sphinx/directives.rst
+++ b/sphinx/directives.rst
@@ -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.