scripts: Removed outdated non-terminating warning from scripts

All of these scripts have cycle detectors now, so this warning should
not longer be valid.
This commit is contained in:
Christopher Haster
2024-11-04 17:42:39 -06:00
parent c0a9af1e9a
commit ade563cc24
3 changed files with 6 additions and 6 deletions

View File

@@ -1251,8 +1251,8 @@ if __name__ == "__main__":
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',