开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
1 Star 0 Fork 0

source-code-analysis/python3.8.1

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (1)
master
master
分支 (1)
master
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (1)
master
python3.8.1
/
Doc
/
library
/
site.rst
python3.8.1
/
Doc
/
library
/
site.rst
site.rst 10.23 KB
一键复制 编辑 原始数据 按行查看 历史
zhangweibo 提交于 2021年11月16日 09:46 +08:00 . git init

:mod:`site` --- Site-specific configuration hook

.. module:: site
 :synopsis: Module responsible for site-specific configuration.

Source code: :source:`Lib/site.py`


This module is automatically imported during initialization. The automatic import can be suppressed using the interpreter's :option:`-S` option.

.. index:: triple: module; search; path

Importing this module will append site-specific paths to the module search path and add a few builtins, unless :option:`-S` was used. In that case, this module can be safely imported with no automatic modifications to the module search path or additions to the builtins. To explicitly trigger the usual site-specific additions, call the :func:`site.main` function.

.. versionchanged:: 3.3
 Importing the module used to trigger paths manipulation even when using
 :option:`-S`.

.. index::
 pair: site-packages; directory

It starts by constructing up to four directories from a head and a tail part. For the head part, it uses sys.prefix and sys.exec_prefix; empty heads are skipped. For the tail part, it uses the empty string and then :file:`lib/site-packages` (on Windows) or :file:`lib/python{X.Y}/site-packages` (on Unix and Macintosh). For each of the distinct head-tail combinations, it sees if it refers to an existing directory, and if so, adds it to sys.path and also inspects the newly added path for configuration files.

.. versionchanged:: 3.5
 Support for the "site-python" directory has been removed.

If a file named "pyvenv.cfg" exists one directory above sys.executable, sys.prefix and sys.exec_prefix are set to that directory and it is also checked for site-packages (sys.base_prefix and sys.base_exec_prefix will always be the "real" prefixes of the Python installation). If "pyvenv.cfg" (a bootstrap configuration file) contains the key "include-system-site-packages" set to anything other than "true" (case-insensitive), the system-level prefixes will not be searched for site-packages; otherwise they will.

.. index::
 single: # (hash); comment
 statement: import

A path configuration file is a file whose name has the form :file:`{name}.pth` and exists in one of the four directories mentioned above; its contents are additional items (one per line) to be added to sys.path. Non-existing items are never added to sys.path, and no check is made that the item refers to a directory rather than a file. No item is added to sys.path more than once. Blank lines and lines beginning with # are skipped. Lines starting with import (followed by space or tab) are executed.

Note

An executable line in a :file:`.pth` file is run at every Python startup, regardless of whether a particular module is actually going to be used. Its impact should thus be kept to a minimum. The primary intended purpose of executable lines is to make the corresponding module(s) importable (load 3rd-party import hooks, adjust :envvar:`PATH` etc). Any other initialization is supposed to be done upon a module's actual import, if and when it happens. Limiting a code chunk to a single line is a deliberate measure to discourage putting anything more complex here.

.. index::
 single: package
 triple: path; configuration; file

For example, suppose sys.prefix and sys.exec_prefix are set to :file:`/usr/local`. The Python X.Y library is then installed in :file:`/usr/local/lib/python{X.Y}`. Suppose this has a subdirectory :file:`/usr/local/lib/python{X.Y}/site-packages` with three subsubdirectories, :file:`foo`, :file:`bar` and :file:`spam`, and two path configuration files, :file:`foo.pth` and :file:`bar.pth`. Assume :file:`foo.pth` contains the following:

# foo package configuration

foo
bar
bletch

and :file:`bar.pth` contains:

# bar package configuration

bar

Then the following version-specific directories are added to sys.path, in this order:

/usr/local/lib/pythonX.Y/site-packages/bar
/usr/local/lib/pythonX.Y/site-packages/foo

Note that :file:`bletch` is omitted because it doesn't exist; the :file:`bar` directory precedes the :file:`foo` directory because :file:`bar.pth` comes alphabetically before :file:`foo.pth`; and :file:`spam` is omitted because it is not mentioned in either path configuration file.

.. index:: module: sitecustomize

After these path manipulations, an attempt is made to import a module named :mod:`sitecustomize`, which can perform arbitrary site-specific customizations. It is typically created by a system administrator in the site-packages directory. If this import fails with an :exc:`ImportError` or its subclass exception, and the exception's :attr:`name` attribute equals to 'sitecustomize', it is silently ignored. If Python is started without output streams available, as with :file:`pythonw.exe` on Windows (which is used by default to start IDLE), attempted output from :mod:`sitecustomize` is ignored. Any other exception causes a silent and perhaps mysterious failure of the process.

.. index:: module: usercustomize

After this, an attempt is made to import a module named :mod:`usercustomize`, which can perform arbitrary user-specific customizations, if :data:`ENABLE_USER_SITE` is true. This file is intended to be created in the user site-packages directory (see below), which is part of sys.path unless disabled by :option:`-s`. If this import fails with an :exc:`ImportError` or its subclass exception, and the exception's :attr:`name` attribute equals to 'usercustomize', it is silently ignored.

Note that for some non-Unix systems, sys.prefix and sys.exec_prefix are empty, and the path manipulations are skipped; however the import of :mod:`sitecustomize` and :mod:`usercustomize` is still attempted.

Readline configuration

On systems that support :mod:`readline`, this module will also import and configure the :mod:`rlcompleter` module, if Python is started in :ref:`interactive mode <tut-interactive>` and without the :option:`-S` option. The default behavior is enable tab-completion and to use :file:`~/.python_history` as the history save file. To disable it, delete (or override) the :data:`sys.__interactivehook__` attribute in your :mod:`sitecustomize` or :mod:`usercustomize` module or your :envvar:`PYTHONSTARTUP` file.

.. versionchanged:: 3.4
 Activation of rlcompleter and history was made automatic.


Module contents

.. data:: PREFIXES

 A list of prefixes for site-packages directories.


.. data:: ENABLE_USER_SITE

 Flag showing the status of the user site-packages directory. ``True`` means
 that it is enabled and was added to ``sys.path``. ``False`` means that it
 was disabled by user request (with :option:`-s` or
 :envvar:`PYTHONNOUSERSITE`). ``None`` means it was disabled for security
 reasons (mismatch between user or group id and effective id) or by an
 administrator.


.. data:: USER_SITE

 Path to the user site-packages for the running Python. Can be ``None`` if
 :func:`getusersitepackages` hasn't been called yet. Default value is
 :file:`~/.local/lib/python{X.Y}/site-packages` for UNIX and non-framework Mac
 OS X builds, :file:`~/Library/Python/{X.Y}/lib/python/site-packages` for Mac
 framework builds, and :file:`{%APPDATA%}\\Python\\Python{XY}\\site-packages`
 on Windows. This directory is a site directory, which means that
 :file:`.pth` files in it will be processed.


.. data:: USER_BASE

 Path to the base directory for the user site-packages. Can be ``None`` if
 :func:`getuserbase` hasn't been called yet. Default value is
 :file:`~/.local` for UNIX and Mac OS X non-framework builds,
 :file:`~/Library/Python/{X.Y}` for Mac framework builds, and
 :file:`{%APPDATA%}\\Python` for Windows. This value is used by Distutils to
 compute the installation directories for scripts, data files, Python modules,
 etc. for the :ref:`user installation scheme <inst-alt-install-user>`.
 See also :envvar:`PYTHONUSERBASE`.


.. function:: main()

 Adds all the standard site-specific directories to the module search
 path. This function is called automatically when this module is imported,
 unless the Python interpreter was started with the :option:`-S` flag.

 .. versionchanged:: 3.3
 This function used to be called unconditionally.


.. function:: addsitedir(sitedir, known_paths=None)

 Add a directory to sys.path and process its :file:`.pth` files. Typically
 used in :mod:`sitecustomize` or :mod:`usercustomize` (see above).


.. function:: getsitepackages()

 Return a list containing all global site-packages directories.

 .. versionadded:: 3.2


.. function:: getuserbase()

 Return the path of the user base directory, :data:`USER_BASE`. If it is not
 initialized yet, this function will also set it, respecting
 :envvar:`PYTHONUSERBASE`.

 .. versionadded:: 3.2


.. function:: getusersitepackages()

 Return the path of the user-specific site-packages directory,
 :data:`USER_SITE`. If it is not initialized yet, this function will also set
 it, respecting :envvar:`PYTHONNOUSERSITE` and :data:`USER_BASE`.

 .. versionadded:: 3.2


The :mod:`site` module also provides a way to get the user directories from the command line:

$ python3 -m site --user-site
/home/user/.local/lib/python3.3/site-packages
.. program:: site

If it is called without arguments, it will print the contents of :data:`sys.path` on the standard output, followed by the value of :data:`USER_BASE` and whether the directory exists, then the same thing for :data:`USER_SITE`, and finally the value of :data:`ENABLE_USER_SITE`.

.. cmdoption:: --user-base

 Print the path to the user base directory.

.. cmdoption:: --user-site

 Print the path to the user site-packages directory.

If both options are given, user base and user site will be printed (always in this order), separated by :data:`os.pathsep`.

If any option is given, the script will exit with one of these values: 0 if the user site-packages directory is enabled, 1 if it was disabled by the user, 2 if it is disabled for security reasons or by an administrator, and a value greater than 2 if there is an error.

.. seealso::

 :pep:`370` -- Per user site-packages directory
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

暂无描述
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/python_sourcecode/python3.8.1.git
git@gitee.com:python_sourcecode/python3.8.1.git
python_sourcecode
python3.8.1
python3.8.1
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /