Skip to content

Commit ade563c

Browse files
committed
scripts: Removed outdated non-terminating warning from scripts
All of these scripts have cycle detectors now, so this warning should not longer be valid.
1 parent c0a9af1 commit ade563c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

scripts/perf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1290,8 +1290,8 @@ def __call__(self, parser, namespace, value, option):
12901290
nargs='?',
12911291
type=lambda x: int(x, 0),
12921292
const=0,
1293-
help="Depth of function calls to show. 0 shows all calls but may not "
1294-
"terminate!")
1293+
help="Depth of function calls to show. 0 shows all calls unless we "
1294+
"find a cycle. Defaults to 0.")
12951295
parser.add_argument(
12961296
'-t', '--hot',
12971297
action='store_true',

scripts/perfbd.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1251,8 +1251,8 @@ def __call__(self, parser, namespace, value, option):
12511251
nargs='?',
12521252
type=lambda x: int(x, 0),
12531253
const=0,
1254-
help="Depth of function calls to show. 0 shows all calls but may not "
1255-
"terminate!")
1254+
help="Depth of function calls to show. 0 shows all calls unless we "
1255+
"find a cycle. Defaults to 0.")
12561256
parser.add_argument(
12571257
'-t', '--hot',
12581258
action='store_true',

scripts/stack.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -794,8 +794,8 @@ def __call__(self, parser, namespace, value, option):
794794
nargs='?',
795795
type=lambda x: int(x, 0),
796796
const=0,
797-
help="Depth of function calls to show. 0 shows all calls but may not "
798-
"terminate!")
797+
help="Depth of function calls to show. 0 shows all calls unless we "
798+
"find a cycle. Defaults to 0.")
799799
parser.add_argument(
800800
'-t', '--hot',
801801
action='store_true',

0 commit comments

Comments
 (0)