_bootlocale.py 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. """A minimal subset of the locale module used at interpreter startup
  2. (imported by the _io module), in order to reduce startup time.
  3. Don't import directly from third-party code; use the `locale` module instead!
  4. """
  5. import sys
  6. import _locale
  7. if sys.platform.startswith("win"):
  8. def getpreferredencoding(do_setlocale=True):
  9. return _locale._getdefaultlocale()[1]
  10. else:
  11. try:
  12. _locale.CODESET
  13. except AttributeError:
  14. def getpreferredencoding(do_setlocale=True):
  15. # This path for legacy systems needs the more complex
  16. # getdefaultlocale() function, import the full locale module.
  17. import locale
  18. return locale.getpreferredencoding(do_setlocale)
  19. else:
  20. def getpreferredencoding(do_setlocale=True):
  21. assert not do_setlocale
  22. result = _locale.nl_langinfo(_locale.CODESET)
  23. if not result and sys.platform == 'darwin':
  24. # nl_langinfo can return an empty string
  25. # when the setting has an invalid value.
  26. # Default to UTF-8 in that case because
  27. # UTF-8 is the default charset on OSX and
  28. # returning nothing will crash the
  29. # interpreter.
  30. result = 'UTF-8'
  31. return result