25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

14 satır
366 B

  1. from __future__ import annotations
  2. import sys
  3. if sys.version_info >= (3, 12, 4):
  4. # Python 3.13 should support `.pth` files encoded in UTF-8
  5. # See discussion in https://github.com/python/cpython/issues/77102
  6. PTH_ENCODING: str | None = "utf-8"
  7. else:
  8. from .py39 import LOCALE_ENCODING
  9. # PTH_ENCODING = "locale"
  10. PTH_ENCODING = LOCALE_ENCODING