您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

14 行
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