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_reader.py 178B

1 year ago
12345678910
  1. """Script used by test_process.TestTwoProcesses"""
  2. # run until stdin is closed, then quit
  3. import sys
  4. while 1:
  5. d = sys.stdin.read()
  6. if len(d) == 0:
  7. sys.exit(0)