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

@@ -1290,8 +1290,8 @@ if __name__ == "__main__":
nargs='?', nargs='?',
type=lambda x: int(x, 0), type=lambda x: int(x, 0),
const=0, const=0,
help="Depth of function calls to show. 0 shows all calls but may not " help="Depth of function calls to show. 0 shows all calls unless we "
"terminate!") "find a cycle. Defaults to 0.")
parser.add_argument( parser.add_argument(
'-t', '--hot', '-t', '--hot',
action='store_true', action='store_true',

View File

@@ -1251,8 +1251,8 @@ if __name__ == "__main__":
nargs='?', nargs='?',
type=lambda x: int(x, 0), type=lambda x: int(x, 0),
const=0, const=0,
help="Depth of function calls to show. 0 shows all calls but may not " help="Depth of function calls to show. 0 shows all calls unless we "
"terminate!") "find a cycle. Defaults to 0.")
parser.add_argument( parser.add_argument(
'-t', '--hot', '-t', '--hot',
action='store_true', action='store_true',

View File

@@ -794,8 +794,8 @@ if __name__ == "__main__":
nargs='?', nargs='?',
type=lambda x: int(x, 0), type=lambda x: int(x, 0),
const=0, const=0,
help="Depth of function calls to show. 0 shows all calls but may not " help="Depth of function calls to show. 0 shows all calls unless we "
"terminate!") "find a cycle. Defaults to 0.")
parser.add_argument( parser.add_argument(
'-t', '--hot', '-t', '--hot',
action='store_true', action='store_true',