Searched refs:stdout (Results 1 – 6 of 6) sorted by relevance
/zcbor-3.6.0/scripts/ |
D | add_helptext.py | 34 stdout, _ = Popen(cmd, stdout=PIPE).communicate() variable 35 assert b"options:" in stdout, f"Seems like something went wrong: {stdout.decode('utf-8')}"
|
/zcbor-3.6.0/tests/scripts/ |
D | test_versions.py | 24 stdout=PIPE).communicate()[0].decode("utf-8").strip() 43 tags_stdout, _ = Popen(['git', 'tag'], stdout=PIPE).communicate()
|
D | test_repo_files.py | 65 call0 = Popen(args, stdin=PIPE, stdout=PIPE, stderr=PIPE, **kwargs) 132 remote_tracking = run(remote_tr_args, capture_output=True).stdout.decode('utf-8').strip()
|
D | test_zcbor.py | 550 call0 = Popen(args, stdin=PIPE, stdout=PIPE, stderr=PIPE)
|
/zcbor-3.6.0/zcbor/ |
D | zcbor.py | 3054 git_args, cwd=PACKAGE_PATH, stdout=PIPE).communicate()[0].decode('utf-8').strip() 3152 f = sys.stdout if args.output == "-" else open(args.output, "w") 3155 f = sys.stdout if args.output == "-" else open(args.output, "w") 3158 f = sys.stdout if args.output == "-" else open(args.output, "w") 3163 f = sys.stdout if args.output == "-" else open(args.output, "w") 3166 f = sys.stdout.buffer if args.output == "-" else open(args.output, "wb")
|
/zcbor-3.6.0/ |
D | README.md | 624 to interpret the contents. Use "-" to indicate stdout.
|