summaryrefslogtreecommitdiff
path: root/bin/symilar.bat
blob: 24e339e801f2abbbed69f708adc4df77af28c53a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@echo off
rem = """-*-Python-*- script
@echo off
rem -------------------- DOS section --------------------
rem You could set PYTHONPATH or TK environment variables here
python -x "%~f0" %*
goto exit
 
"""
# -------------------- Python section --------------------
import sys
from pylint.checkers import similar
similar.run()
 

DosExitLabel = """
:exit
rem """