mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-16 13:20:41 +01:00
miscellaneous bug fixes in improg: - properly truncate string after an input event is submitted - set msgoffset to 0. - tests added to check above fixes
8 lines
113 B
Python
Executable File
8 lines
113 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys
|
|
|
|
for _ in range(10):
|
|
mystr = 'multi-line-string\n'
|
|
sys.stdout.write(mystr)
|