summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorEmile Anclin <emile.anclin@logilab.fr>2008-09-09 12:46:07 +0200
committerEmile Anclin <emile.anclin@logilab.fr>2008-09-09 12:46:07 +0200
commit3b55cc04c09f43755f7155c94195e351a3a7592a (patch)
tree1d0c3ab1e55c0f44657f4b1f780d8ab597fe5bfe /bin
parent1570325a303c7b3595332c1c33a89868a9015de0 (diff)
downloadpylint-3b55cc04c09f43755f7155c94195e351a3a7592a.tar.gz
add bin/pyreverse.bat
Diffstat (limited to 'bin')
-rw-r--r--bin/pyreverse.bat18
1 files changed, 18 insertions, 0 deletions
diff --git a/bin/pyreverse.bat b/bin/pyreverse.bat
new file mode 100644
index 0000000..1ef9b84
--- /dev/null
+++ b/bin/pyreverse.bat
@@ -0,0 +1,18 @@
+@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.pyreverse import main
+main.Run(sys.argv[1:])
+
+
+DosExitLabel = """
+:exit
+rem """