_stream.py 176 B

1234567891011121314
  1. '''
  2. @author: olivier.massot, 2019
  3. '''
  4. class TestStream():
  5. def write(self, s):
  6. print(str(s).strip())
  7. def flush(self):
  8. pass