Skip to content

Instantly share code, notes, and snippets.

@danmichaelo
Created October 14, 2011 14:39
Show Gist options
  • Select an option

  • Save danmichaelo/1287303 to your computer and use it in GitHub Desktop.

Select an option

Save danmichaelo/1287303 to your computer and use it in GitHub Desktop.
python: check if connected to a real terminal, else default to locale
if sys.stdout.isatty():
default_encoding = sys.stdout.encoding
else:
default_encoding = locale.getpreferredencoding()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment