From: Éric Araujo Date: Sun, 21 Aug 2011 10:53:37 +0000 (+0200) Subject: Add missing closing paren in docstring (thanks Ezio) X-Git-Tag: v3.3.0a1~1654^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=52b201f0dfe6ca2961a43f2863ac66d01572cb22;p=python Add missing closing paren in docstring (thanks Ezio) --- diff --git a/Lib/distutils/tests/support.py b/Lib/distutils/tests/support.py index 81289db4a1..49277111bf 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.