Skip to content

Commit

Permalink
scripts: Removed outdated non-terminating warning from scripts
Browse files Browse the repository at this point in the history
All of these scripts have cycle detectors now, so this warning should
not longer be valid.
  • Loading branch information
geky committed Nov 5, 2024
1 parent c0a9af1 commit ade563c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions scripts/perf.py
Original file line number Diff line number Diff line change
Expand Up @@ -1290,8 +1290,8 @@ def __call__(self, parser, namespace, value, option):
nargs='?',
type=lambda x: int(x, 0),
const=0,
help="Depth of function calls to show. 0 shows all calls but may not "
"terminate!")
help="Depth of function calls to show. 0 shows all calls unless we "
"find a cycle. Defaults to 0.")
parser.add_argument(
'-t', '--hot',
action='store_true',
Expand Down
4 changes: 2 additions & 2 deletions scripts/perfbd.py
Original file line number Diff line number Diff line change
Expand Up @@ -1251,8 +1251,8 @@ def __call__(self, parser, namespace, value, option):
nargs='?',
type=lambda x: int(x, 0),
const=0,
help="Depth of function calls to show. 0 shows all calls but may not "
"terminate!")
help="Depth of function calls to show. 0 shows all calls unless we "
"find a cycle. Defaults to 0.")
parser.add_argument(
'-t', '--hot',
action='store_true',
Expand Down
4 changes: 2 additions & 2 deletions scripts/stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -794,8 +794,8 @@ def __call__(self, parser, namespace, value, option):
nargs='?',
type=lambda x: int(x, 0),
const=0,
help="Depth of function calls to show. 0 shows all calls but may not "
"terminate!")
help="Depth of function calls to show. 0 shows all calls unless we "
"find a cycle. Defaults to 0.")
parser.add_argument(
'-t', '--hot',
action='store_true',
Expand Down

0 comments on commit ade563c

Please sign in to comment.