]> granicus.if.org Git - python/commitdiff
PyString_FromString -> PyUnicode_FromString
authorBenjamin Peterson <benjamin@python.org>
Mon, 23 Mar 2009 21:52:09 +0000 (21:52 +0000)
committerBenjamin Peterson <benjamin@python.org>
Mon, 23 Mar 2009 21:52:09 +0000 (21:52 +0000)
Doc/c-api/dict.rst

index c3ef1f4300dd276ace848f461b67b3cfab32e82d..c748b52dcda6a0a1a96da293821783bd0af94389 100644 (file)
@@ -73,11 +73,12 @@ Dictionary Objects
 
 .. cfunction:: int PyDict_SetItemString(PyObject *p, const char *key, PyObject *val)
 
-   .. index:: single: PyString_FromString()
+   .. index:: single: PyUnicode_FromString()
 
-   Insert *value* into the dictionary *p* using *key* as a key. *key* should be a
-   :ctype:`char\*`.  The key object is created using ``PyString_FromString(key)``.
-   Return ``0`` on success or ``-1`` on failure.
+   Insert *value* into the dictionary *p* using *key* as a key. *key* should be
+   a :ctype:`char\*`.  The key object is created using
+   :cfunc:`PyUnicode_FromString(key)`.  Return ``0`` on success or ``-1`` on
+   failure.
 
 
 .. cfunction:: int PyDict_DelItem(PyObject *p, PyObject *key)