File Manager V1.5

[SYSTEM@ROOT]: /usr/lib/python3/dist-packages/twisted/test/
INJECT_FILE:
NEW_ENTRY:

FILE_CONTENT: process_getenv.py

# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.

"""
Used by L{twisted.test.test_process}.
"""

from os import environ
from sys import stdout

items = environ.items()
stdout.write(chr(0).join([k + chr(0) + v for k, v in items]))
stdout.flush()
[ KEMBALI ]