8 lines
94 B
Python
8 lines
94 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
import sys
|
||
|
|
||
|
|
||
|
sys.stderr.write("a line on stderr\n")
|
||
|
sys.stderr.flush()
|