// SYSTEM PANEL //
[ROOT]
/
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
virtualenv
/
activation
/
cshell
[ PARENT ]
EDIT :: __init__.py
from __future__ import absolute_import, unicode_literals from virtualenv.util.path import Path from ..via_template import ViaTemplateActivator class CShellActivator(ViaTemplateActivator): @classmethod def supports(cls, interpreter): return interpreter.os != "nt" def templates(self): yield Path("activate.csh")
SAVE
CANCEL