Searched refs:stdout (Results 1 – 6 of 6) sorted by relevance
/zcbor-3.5.0-3.4.0/ |
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')}"
|
D | README.md | 625 to interpret the contents. Use "-" to indicate stdout.
|
/zcbor-3.5.0-3.4.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) 139 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.5.0-3.4.0/zcbor/ |
D | zcbor.py | 3039 git_args, cwd=P_REPO_ROOT, stdout=PIPE).communicate()[0].decode('utf-8').strip() 3137 f = sys.stdout if args.output == "-" else open(args.output, "w") 3140 f = sys.stdout if args.output == "-" else open(args.output, "w") 3143 f = sys.stdout if args.output == "-" else open(args.output, "w") 3148 f = sys.stdout if args.output == "-" else open(args.output, "w") 3151 f = sys.stdout.buffer if args.output == "-" else open(args.output, "wb")
|