Funktionierender Prototyp des Serious Games zur Vermittlung von Wissen zu Software-Engineering-Arbeitsmodellen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

process_getenv.py 268B

12345678910111213
  1. # Copyright (c) Twisted Matrix Laboratories.
  2. # See LICENSE for details.
  3. """
  4. Used by L{twisted.test.test_process}.
  5. """
  6. from os import environ
  7. from sys import stdout
  8. items = environ.items()
  9. stdout.write(chr(0).join([k + chr(0) + v for k, v in items]))
  10. stdout.flush()