mirror of
https://github.com/arun11299/cpp-subprocess.git
synced 2025-08-05 12:56:23 -04:00

* Fix redirection from StdError on Windows * test: Add cross-platform test for error redirection
8 lines
135 B
Python
Executable File
8 lines
135 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
print("Hello message.")
|
|
print("Error report.", file=sys.stderr)
|