File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ Unreleased
1313 ``semver.Version ``. :issue: `3298 ` :pr: `3299 `
1414- Fix pager test pollution under parallel execution by using pytest's
1515 ``tmp_path `` fixture instead of a shared temporary file path. :pr: `3238 `
16+ - Mark ``make_default_short_help `` as private API. :issue: `3189 ` :pr: `3250 `
1617
1718Version 8.3.2
1819-------------
Original file line number Diff line number Diff line change @@ -57,7 +57,10 @@ def make_str(value: t.Any) -> str:
5757
5858
5959def make_default_short_help (help : str , max_length : int = 45 ) -> str :
60- """Returns a condensed version of help string."""
60+ """Returns a condensed version of help string.
61+
62+ :meta private:
63+ """
6164 # Consider only the first paragraph.
6265 paragraph_end = help .find ("\n \n " )
6366
You can’t perform that action at this time.
0 commit comments