1
0

thesis: Complete 2.6 and 2.7

This commit is contained in:
2025-07-18 23:47:24 +02:00
parent 5ec248b710
commit 17ffb06306
3 changed files with 160 additions and 6 deletions

View File

@@ -21,7 +21,7 @@ def main() -> None:
if len(extra) > 0 and extra[0] == '--':
extra.pop(0)
if len(extra) == 0:
parser.error('command expected after arguments or \'--\'')
parser.error("command expected after arguments or '--'")
if args.intercept:
intercept = args.intercept
@@ -34,7 +34,8 @@ def main() -> None:
'INTERCEPT': intercept,
'INTERCEPT_VERBOSE': '0' if args.sparse else '1',
'INTERCEPT_FUNCTIONS': args.functions or '*',
'INTERCEPT_LIBRARIES': '*,-/lib*,-/usr/lib*' if args.only_own else args.libraries or '*',
'INTERCEPT_LIBRARIES': '*,-/lib*,-/usr/lib*' if
args.only_own else args.libraries or '*',
})