modules_sys_stdassign.py 215 B

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