File tree 1 file changed +3
-3
lines changed
Filter options
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);
852
852
853
853
PyAPI_FUNC (int ) PyMapping_HasKeyStringWithError (PyObject * o , const char * key );
854
854
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'.
856
856
On failure, return NULL. */
857
857
PyAPI_FUNC (PyObject * ) PyMapping_Keys (PyObject * o );
858
858
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'.
860
860
On failure, return NULL. */
861
861
PyAPI_FUNC (PyObject * ) PyMapping_Values (PyObject * o );
862
862
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',
864
864
where each item is a tuple containing a key-value pair. On failure, return
865
865
NULL. */
866
866
PyAPI_FUNC (PyObject * ) PyMapping_Items (PyObject * o );
You can’t perform that action at this time.
0 commit comments