From d640630d580aef603fed3e1dd6dfd15703a243f8 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 17 Jan 2010 19:21:04 +0100 Subject: Fix some XXXes. --- utils/pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils') diff --git a/utils/pylintrc b/utils/pylintrc index 2552a12c..cf71db59 100644 --- a/utils/pylintrc +++ b/utils/pylintrc @@ -273,7 +273,7 @@ ignore-docstrings=yes # checks for: -# * warning notes in the code like FIXME, XXX +# * warning notes in the code # * PEP 263: source code with non ascii character but no encoding declaration # [MISCELLANEOUS] -- cgit v1.2.1 From 4e3d20fd5a25a8a0b07fe79df63bf847884b94b5 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 18 Jan 2010 00:38:10 +0100 Subject: Remove obsolete todo entry. --- utils/check_sources.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'utils') diff --git a/utils/check_sources.py b/utils/check_sources.py index 6f78c26e..0571ab1e 100755 --- a/utils/check_sources.py +++ b/utils/check_sources.py @@ -189,9 +189,6 @@ def main(argv): num = 0 out = cStringIO.StringIO() - # TODO: replace os.walk run with iteration over output of - # `svn list -R`. - for root, dirs, files in os.walk(path): if '.svn' in dirs: dirs.remove('.svn') -- cgit v1.2.1