The Python documentation says that sys.path is "Initialized from the environment variable PYTHONPATH, plus an installation-dependent default."
But what is the "installation-dependent default" exactly for Windows?
(I know this is probably dependent on how python was compiled, but if all I have is the binary, is there any way to figure out how the default sys.path is constructed?)
Clarification:
I am not asking "What is my sys.path?". I want to know "how does Python construct sys.path?" Documentation says that sys.path is constructed with sys.path[0] being the script's current directory, plus whatever Python finds in the PYTHONPATH environment variable, plus some installation-dependent voodoo. So what is this mysterious voodoo part?