Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Twisted / test / process_getargv.py
Size: Mime:
# 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()