blob: 29afe1b1203c93c2e5304818fbff3fbb54eebf19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
"""
categories: Modules,sys
description: Overriding sys.stdin, sys.stdout and sys.stderr not possible
cause: They are stored in read-only memory.
workaround: Unknown
"""
import sys
sys.stdin = None
print(sys.stdin)
|