Get PYTHONPATH Prefix --------------------- The "PYTHONPATH Prefix" is defined as the full qualified directory entry from the variable *sys.path*, or similar *PYTHONPATH*. The program may alter the *sys.path* variable, the resulting content at the time of call is used. Thus this may eventually deviate from the expected *PYTHONPATH* entries. The algorithm matches the first pathname entry which could be validated as prefix for the loaded module name. Again, this could have been altered by the program, thus the current state of the *sys.path* is relied on as the final anchor, even though it may eventually not accurate :ref:`[Object-Namebinding] `: .. code-block:: python :linenos: The call signature is `[Filesystem Binding Functions] `_: .. code-block:: python :linenos: get_python_pathname() Where ** is resolved to one of: * Caller * Frame * Module E.g. in case of an *Caller* by the relative stack position :ref:`[API] `: .. parsed-literal:: `fileinfo.getcaller_python_pathname `_ or in case of a *Module* by reference to the object :ref:`[API] `: .. parsed-literal:: `fileinfo.getmodule_python_pathname `_