File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -852,15 +852,15 @@ PyAPI_FUNC(int) PyMapping_HasKeyWithError(PyObject *o, PyObject *key);
852852
853853PyAPI_FUNC (int ) PyMapping_HasKeyStringWithError (PyObject * o , const char * key );
854854
855- /* On success, return a list or tuple of the keys in mapping object 'o'.
855+ /* On success, return a list of the keys in mapping object 'o'.
856856 On failure, return NULL. */
857857PyAPI_FUNC (PyObject * ) PyMapping_Keys (PyObject * o );
858858
859- /* On success, return a list or tuple of the values in mapping object 'o'.
859+ /* On success, return a list of the values in mapping object 'o'.
860860 On failure, return NULL. */
861861PyAPI_FUNC (PyObject * ) PyMapping_Values (PyObject * o );
862862
863- /* On success, return a list or tuple of the items in mapping object 'o',
863+ /* On success, return a list of the items in mapping object 'o',
864864 where each item is a tuple containing a key-value pair. On failure, return
865865 NULL. */
866866PyAPI_FUNC (PyObject * ) PyMapping_Items (PyObject * o );
You can’t perform that action at this time.
0 commit comments