@@ -50,7 +50,7 @@ Dictionary Objects
5050
5151.. c :function :: int PyDict_Contains (PyObject *p, PyObject *key)
5252
53- Determine if dictionary *p * contains *key *. If an item in *p * is matches
53+ Determine if dictionary *p * contains *key *. If an item in *p * matches
5454 *key *, return ``1 ``, otherwise return ``0 ``. On error, return ``-1 ``.
5555 This is equivalent to the Python expression ``key in p ``.
5656
@@ -198,7 +198,7 @@ Dictionary Objects
198198.. c:function:: int PyDict_Pop(PyObject *p, PyObject *key, PyObject **result)
199199
200200 Remove *key * from dictionary *p * and optionally return the removed value.
201- Do not raise :exc: `KeyError ` if the key missing.
201+ Do not raise :exc: `KeyError ` if the key is missing.
202202
203203 - If the key is present, set *\* result * to a new reference to the removed
204204 value if *result * is not ``NULL ``, and return ``1 ``.
@@ -207,7 +207,7 @@ Dictionary Objects
207207 - On error, raise an exception and return ``-1 ``.
208208
209209 Similar to :meth: `dict.pop `, but without the default value and
210- not raising :exc: `KeyError ` if the key missing.
210+ not raising :exc: `KeyError ` if the key is missing.
211211
212212 .. versionadded :: 3.13
213213
0 commit comments