summaryrefslogtreecommitdiff
path: root/Tools/compiler/regrtest.py
diff options
context:
space:
mode:
authorAnthony Baxter <anthonybaxter@gmail.com>2004-08-02 06:10:11 +0000
committerAnthony Baxter <anthonybaxter@gmail.com>2004-08-02 06:10:11 +0000
commitc2a5a636545a88f349dbe3e452ffb4494b68e534 (patch)
treeaaa24074dcdcce5afa51523969971bdd05381b01 /Tools/compiler/regrtest.py
parentfd7dc5169c3ca7d64109512f38762c4ce9e96c5f (diff)
downloadcpython-git-c2a5a636545a88f349dbe3e452ffb4494b68e534.tar.gz
PEP-0318, @decorator-style. In Guido's words:
"@ seems the syntax that everybody can hate equally" Implementation by Mark Russell, from SF #979728.
Diffstat (limited to 'Tools/compiler/regrtest.py')
-rw-r--r--Tools/compiler/regrtest.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Tools/compiler/regrtest.py b/Tools/compiler/regrtest.py
index def07c2faa..50d06e71f3 100644
--- a/Tools/compiler/regrtest.py
+++ b/Tools/compiler/regrtest.py
@@ -47,6 +47,8 @@ def compile_files(dir):
continue
# make sure the .pyc file is not over-written
os.chmod(source + "c", 444)
+ elif file == 'CVS':
+ pass
else:
path = os.path.join(dir, file)
if os.path.isdir(path):