##// END OF EJS Templates
Predict the Python version based on $VIRTUAL_ENV...
Predict the Python version based on $VIRTUAL_ENV Try to make prediction of the Python's site-package version used by virtualenv. If predicted path doesn't exist, continue with previous behaviour. This can be useful while working with different Python versions in virtual environments other than system-used (previously provided via `sys.version_info`). Note that this *only* updates $PYTHONPATH, so 3rd-libraries installed in virtualenv will be avialable. However the Python interpreter contiunues to be other than the bundled in the virtualenv (see `init_virtualenv()` docstring).

File last commit:

r24007:3de88102
r26257:2704824e
Show More
.editorconfig
19 lines | 329 B | text/x-ini | IniLexer
# Top-most EditorConfig file
root = true
[*]
# Unix-style newlines with a newline ending every file
end_of_line = lf
insert_final_newline = true
charset = utf-8
# Four-space indentation
indent_size = 4
indent_style = space
trim_trailing_whitespace = false
[*.yml]
# Two-space indentation
indent_size = 2
indent_style = space