From 832ccfa47c960f16b44519b0638416052262b6d6 Mon Sep 17 00:00:00 2001 From: "Erlend E. Aasland" <erlend@python.org> Date: Tue, 8 Aug 2023 22:50:54 +0200 Subject: [PATCH] gh-104683: Add --exclude option to Argument Clinic CLI (python/cpython#107770) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> --- Doc/howto/clinic.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Doc/howto/clinic.rst b/Doc/howto/clinic.rst index 743c7c9cb3..2d89ccc203 100644 --- a/Doc/howto/clinic.rst +++ b/Doc/howto/clinic.rst @@ -188,6 +188,11 @@ The CLI supports the following options: The directory tree to walk in :option:`--make` mode. +.. option:: --exclude EXCLUDE + + A file to exclude in :option:`--make` mode. + This option can be given multiple times. + .. option:: FILE ... The list of files to process.