From b2f1914506250494a5e953a65c313a91954771ad Mon Sep 17 00:00:00 2001 From: AN Long Date: Mon, 14 Oct 2024 01:06:59 +0800 Subject: [PATCH] Add description about what the implementaion functions will receive --- development-tools/clinic.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/development-tools/clinic.rst b/development-tools/clinic.rst index a5fa2e9df5..c4fdd11da5 100644 --- a/development-tools/clinic.rst +++ b/development-tools/clinic.rst @@ -1509,6 +1509,10 @@ and the parameter should use the ``object`` converter:: *args: object [clinic start generated code]*/ +The implementation function will receive var-positional arguments +as a tuple, you can either use the tuple directly +or parsing them into C types using :c:func:`!PyArg_Parse*` functions. + .. versionadded:: 3.11