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