Skip to content

Instantly share code, notes, and snippets.

@dcolish
Created August 9, 2012 18:02
Show Gist options
  • Select an option

  • Save dcolish/3306580 to your computer and use it in GitHub Desktop.

Select an option

Save dcolish/3306580 to your computer and use it in GitHub Desktop.
>>> from sys import stdout, stderr
>>> import sys
>>> id(sys.stdout)
4297499104
>>> id(stdout)
4297499104
>>> stdout = stderr
>>> id(stdout)
4297499248
>>> id(stderr)
4297499248
>>> id(sys.stdout)
4297499104
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment