From c38d160eeaf394c7e98394a72bc2087c86a9a913 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric?= Date: Fri, 12 Aug 2022 12:07:05 -0400 Subject: [PATCH] gh-90300: [docs] Add whatsnew entry for new --help output (GH-95856) --- Doc/whatsnew/3.11.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index d5d7da292b21ab..41aa6944395f42 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -435,6 +435,12 @@ Other CPython Implementation Changes :data:`sys.path`. Otherwise, initialization will recalculate the path and replace any values added to ``module_search_paths``. +* The output of the :option:`--help` option is changed to fit inside 50 lines and 80 + columns. Information about :ref:`Python environment variables ` + and :option:`-X options <-X>` is available with the new :option:`--help-env` or + :option:`--help-xoptions` flags, and with :option:`--help-all`. + (Contributed by Éric Araujo in :issue:`46142`.) + New Modules ===========