PATH:
opt
/
hc_python
/
lib
/
python3.12
/
site-packages
/
virtualenv
/
activation
/
cshell
from __future__ import annotations from virtualenv.activation.via_template import ViaTemplateActivator class CShellActivator(ViaTemplateActivator): @classmethod def supports(cls, interpreter): return interpreter.os != "nt" def templates(self): yield "activate.csh" __all__ = [ "CShellActivator", ]
[+]
__pycache__
[-] __init__.py
[edit]
[-] activate.csh
[edit]
[+]
..