Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 

10 рядки
493 B

  1. import sys
  2. # Explicitly use the ``"locale"`` encoding in versions that support it,
  3. # otherwise just rely on the implicit handling of ``encoding=None``.
  4. # Since all platforms that support ``EncodingWarning`` also support
  5. # ``encoding="locale"``, this can be used to suppress the warning.
  6. # However, please try to use UTF-8 when possible
  7. # (.pth files are the notorious exception: python/cpython#77102, pypa/setuptools#3937).
  8. LOCALE_ENCODING = "locale" if sys.version_info >= (3, 10) else None