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_cmdline.py
Size: Mime:
"""
Write to stdout the command line args it received, one per line.
"""

from __future__ import print_function

import sys


for x in sys.argv[1:]:
    print(x)