login page
This commit is contained in:
14
Lib/site-packages/virtualenv/activation/cshell/__init__.py
Normal file
14
Lib/site-packages/virtualenv/activation/cshell/__init__.py
Normal file
@@ -0,0 +1,14 @@
|
||||
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")
|
||||
Reference in New Issue
Block a user