Embed pywin32, new version of package control broke the plugin

This commit is contained in:
Krzosa Karol
2024-01-25 12:06:44 +01:00
parent 3acca1409a
commit 82e21c355f
551 changed files with 111968 additions and 15 deletions

View File

@@ -0,0 +1,12 @@
"""A utility module for ASP (Active Server Pages on MS Internet Info Server.
Contains:
iif -- A utility function to avoid using "if" statements in ASP <% tags
"""
def iif(cond, t, f):
if cond:
return t
else:
return f