From 50dccdbc80a53a3b16b96e2babc96a63cf4030f5 Mon Sep 17 00:00:00 2001 From: F18-Maverick Date: Fri, 24 Oct 2025 15:31:41 +0800 Subject: [PATCH] Fix a Grammatical error in file ./Doc/c-api/arg.rst. The caller have to call -> The caller has to call --- Doc/c-api/arg.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/c-api/arg.rst b/Doc/c-api/arg.rst index 28bf04651bd173..fd6be6a9b67a03 100644 --- a/Doc/c-api/arg.rst +++ b/Doc/c-api/arg.rst @@ -160,7 +160,7 @@ There are three ways strings and buffers can be converted to C: ``w*`` (read-write :term:`bytes-like object`) [Py_buffer] This format accepts any object which implements the read-write buffer interface. It fills a :c:type:`Py_buffer` structure provided by the caller. - The buffer may contain embedded null bytes. The caller have to call + The buffer may contain embedded null bytes. The caller has to call :c:func:`PyBuffer_Release` when it is done with the buffer. ``es`` (:class:`str`) [const char \*encoding, char \*\*buffer]