Files
server/usr/lib/python3/dist-packages/twisted/test/process_getargv.py
2026-01-07 20:52:11 +01:00

14 lines
233 B
Python

# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.
"""
Used by L{twisted.test.test_process}.
"""
from sys import argv, stdout
if __name__ == "__main__":
stdout.write(chr(0).join(argv))
stdout.flush()