Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

10 righe
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