diff options
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) |
commit | 52b201f0dfe6ca2961a43f2863ac66d01572cb22 (patch) | |
tree | 927d5b1030de0ff94e1c25fc1333f648619c076f /Lib | |
parent | 83f7d347d53ea395cd354bd790d49533d06ca717 (diff) | |
download | cpython-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.py | 2 |
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. |