summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-30 21:45:01 (GMT)
committerGeorg Brandl <georg@python.org>2014-10-30 21:45:01 (GMT)
commit9ac894aeffebc628f6db6e8886466bd1e7997d29 (patch)
treeefef4b063c8184076bc43c589353c48e46a397e4
parent759a02cacdfd54bc454a788e98446ec2fd539932 (diff)
parent2273b096ce204e3115d8394c8acb070877881ec6 (diff)
downloadcpython-9ac894aeffebc628f6db6e8886466bd1e7997d29.zip
cpython-9ac894aeffebc628f6db6e8886466bd1e7997d29.tar.gz
cpython-9ac894aeffebc628f6db6e8886466bd1e7997d29.tar.bz2
merge with 3.4
-rwxr-xr-xDoc/tools/rstlint.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Doc/tools/rstlint.py b/Doc/tools/rstlint.py
index d742629..66dd46a 100755
--- a/Doc/tools/rstlint.py
+++ b/Doc/tools/rstlint.py
@@ -173,10 +173,6 @@ Options: -v verbose (print all checked file names)
count = defaultdict(int)
for root, dirs, files in os.walk(path):
- # ignore subdirs controlled by svn
- if '.svn' in dirs:
- dirs.remove('.svn')
-
# ignore subdirs in ignore list
if abspath(root) in ignore:
del dirs[:]