summaryrefslogtreecommitdiffstatshomepage
path: root/tests/cpydiff/modules_sys_stdassign.py
blob: 096af430e4f571587577ec543a3dfb426aa26dbd (plain) (blame)
1
2
3
4
5
6
7
8
9
"""
categories: Modules,sys
description: Override sys.stdin, sys.stdout and sys.stderr. Impossible as they are stored in read-only memory.
cause: Unknown
workaround: Unknown
"""
import sys
sys.stdin = None
print(sys.stdin)