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
commitba4b74c51610dc356c5436e2faa5bde26ecc4e4f (patch)
tree6c6c3dac2c16c5f456578a5a0d6c6d5b5ae5d684 /bin
parent682f99ad017f2adceac903c2bb08c80066aee77c (diff)
downloadpylint-git-ba4b74c51610dc356c5436e2faa5bde26ecc4e4f.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 000000000..1ef9b847b
--- /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 """