Lines Matching full:path

484       Fields for :ref:`path configuration <init-path-config>` are no longer
503 listed under :ref:`Python Path Configuration <init-path-config>` may
550 If equals to zero, ``Py_RunMain()`` prepends a potentially unsafe path to
551 :data:`sys.path` at startup:
573 Part of the :ref:`Python Path Configuration <init-path-config>` output.
585 Part of the :ref:`Python Path Configuration <init-path-config>` output.
593 Part of the :ref:`Python Path Configuration <init-path-config>` output.
701 Part of the :ref:`Python Path Configuration <init-path-config>` output.
705 The absolute path of the executable binary for the Python interpreter:
710 Part of the :ref:`Python Path Configuration <init-path-config>` output.
792 Part of the :ref:`Python Path Configuration <init-path-config>` input.
836 don't prepend a potentially unsafe path to :data:`sys.path` at Python
840 site directory to :data:`sys.path`.
888 Part of the :ref:`Python Path Configuration <init-path-config>` input.
901 Module search paths (:data:`sys.path`) as a string separated by ``DELIM``
902 (:data:`os.path.pathsep`).
908 Part of the :ref:`Python Path Configuration <init-path-config>` input.
913 Module search paths: :data:`sys.path`.
923 Part of the :ref:`Python Path Configuration <init-path-config>` output.
989 If non-zero, calculation of path configuration is allowed to log
994 Part of the :ref:`Python Path Configuration <init-path-config>` input.
1006 Part of the :ref:`Python Path Configuration <init-path-config>` output.
1024 Part of the :ref:`Python Path Configuration <init-path-config>` input.
1031 Set by the :option:`-X pycache_prefix=PATH <-X>` command line option and
1092 site-dependent manipulations of :data:`sys.path` that it entails.
1165 If non-zero, add the user site directory to :data:`sys.path`.
1273 L"/path/to/my_program");
1320 /* Specify sys.path explicitly */
1322 initialization first and then use PySys_GetObject("path") */
1325 L"/path/to/stdlib");
1330 L"/path/to/more/modules");
1337 L"/path/to/my_executable");
1367 to avoid computing the default path configuration.
1388 .. _init-path-config:
1390 Python Path Configuration
1393 :c:type:`PyConfig` contains multiple fields for the path configuration:
1395 * Path configuration inputs:
1403 * ``PATH`` environment variable to get the program full path
1410 * Path configuration output fields:
1421 If at least one "output field" is not set, Python calculates the path
1428 path configuration by setting explicitly all path configuration output
1435 calculating the path configuration (Unix only, Windows does not log any warning).
1441 :c:func:`Py_RunMain` and :c:func:`Py_Main` modify :data:`sys.path`:
1445 :data:`sys.path`.
1449 to :data:`sys.path`. Do nothing if the current directory cannot be read.
1451 filename to :data:`sys.path`.
1452 * Otherwise, prepend an empty string to :data:`sys.path`.
1454 If :c:member:`~PyConfig.site_import` is non-zero, :data:`sys.path` can be
1458 site-package directory to :data:`sys.path`.
1460 The following configuration files are used by the path configuration:
1519 (ex: :data:`sys.path` doesn't exist yet).
1524 * Apply the :ref:`Path Configuration <init-path-config>`;
1527 and :data:`sys.path`);
1544 not configured: the :ref:`Path Configuration <init-path-config>` is only
1546 override or tune the :ref:`Path Configuration <init-path-config>`, maybe
1549 It may become possible to calculatin the :ref:`Path Configuration
1550 <init-path-config>` in Python, after the Core phase and before the Main phase,