mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-12 19:30:42 +01:00
Thanks to Michael Biebl for his help on this issue. This patch also contains some slight test modernization and a "name fix" for a non-valgrind test. closes https://github.com/rsyslog/rsyslog/issues/3853
7 lines
130 B
Python
Executable File
7 lines
130 B
Python
Executable File
# call this via "python[3] script name"
|
|
import sys
|
|
|
|
for _ in range(10):
|
|
mystr = 'multi-line-string\n'
|
|
sys.stdout.write(mystr)
|