summaryrefslogtreecommitdiff
path: root/ACE/bin/PythonACE/fuzz/noncvs.py
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/bin/PythonACE/fuzz/noncvs.py')
-rw-r--r--ACE/bin/PythonACE/fuzz/noncvs.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/ACE/bin/PythonACE/fuzz/noncvs.py b/ACE/bin/PythonACE/fuzz/noncvs.py
deleted file mode 100644
index de52422c80d..00000000000
--- a/ACE/bin/PythonACE/fuzz/noncvs.py
+++ /dev/null
@@ -1,12 +0,0 @@
-""" Catches most files disallowed in CVS """
-
-type_list = ["icc", "ncb", "opt", "zip", "dsw",
- "vcproj", "dsw", "bor", "vcp", "pdb",
- "o", "ilk", "pyc", "so", "dll", "lib" ]
-
-from sys import stderr
-
-def handler (file_name, file_content):
- stderr.write (file_name + ":0: error: This file should not be checked into the repository\n")
- return 1
-