Searched refs:stdout (Results 1 – 6 of 6) sorted by relevance
| /zcbor-latest/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-latest/tests/scripts/ |
| D | test_versions.py | 26 stdout=PIPE).communicate()[0].decode("utf-8").strip() 52 tags_stdout, _ = Popen(['git', 'tag'], stdout=PIPE).communicate()
|
| D | test_repo_files.py | 67 call0 = Popen(args, stdin=PIPE, stdout=PIPE, stderr=PIPE, **kwargs) 134 remote_tracking = run(remote_tr_args, capture_output=True).stdout.decode('utf-8').strip()
|
| D | test_zcbor.py | 556 call0 = Popen(args, stdin=PIPE, stdout=PIPE, stderr=PIPE)
|
| /zcbor-latest/zcbor/ |
| D | zcbor.py | 3228 git_args, cwd=PACKAGE_PATH, stdout=PIPE).communicate()[0].decode('utf-8').strip() 3327 f = sys.stdout if args.output == "-" else open(args.output, "w", encoding="utf-8") 3330 f = sys.stdout if args.output == "-" else open(args.output, "w", encoding="utf-8") 3333 f = sys.stdout if args.output == "-" else open(args.output, "w", encoding="utf-8") 3338 f = sys.stdout if args.output == "-" else open(args.output, "w", encoding="utf-8") 3341 f = sys.stdout.buffer if args.output == "-" else open(args.output, "wb")
|
| /zcbor-latest/ |
| D | README.md | 649 to interpret the contents. Use "-" to indicate stdout.
|