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

16 行
218B

  1. # -*- coding: utf-8 -*-
  2. """
  3. certifi.py
  4. ~~~~~~~~~~
  5. This module returns the installation location of cacert.pem.
  6. """
  7. import os
  8. def where():
  9. f = os.path.dirname(__file__)
  10. return os.path.join(f, 'cacert.pem')