summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-08-21 10:53:37 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-08-21 10:53:37 (GMT)
commit52b201f0dfe6ca2961a43f2863ac66d01572cb22 (patch)
tree927d5b1030de0ff94e1c25fc1333f648619c076f /Lib
parent83f7d347d53ea395cd354bd790d49533d06ca717 (diff)
downloadcpython-52b201f0dfe6ca2961a43f2863ac66d01572cb22.zip
cpython-52b201f0dfe6ca2961a43f2863ac66d01572cb22.tar.gz
cpython-52b201f0dfe6ca2961a43f2863ac66d01572cb22.tar.bz2
Add missing closing paren in docstring (thanks Ezio)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/distutils/tests/support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/tests/support.py b/Lib/distutils/tests/support.py
index 81289db..4927711 100644
--- a/Lib/distutils/tests/support.py
+++ b/Lib/distutils/tests/support.py
@@ -138,7 +138,7 @@ def copy_xxmodule_c(directory):
def test_compile(self):
copy_xxmodule_c(self.tmpdir)
- self.assertIn('xxmodule.c', os.listdir(self.tmpdir)
+ self.assertIn('xxmodule.c', os.listdir(self.tmpdir))
If the source file can be found, it will be copied to *directory*. If not,
the test will be skipped. Errors during copy are not caught.