diff options
author | Éric Araujo <merwok@netwok.org> | 2011-08-21 10:54:06 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-08-21 10:54:06 (GMT) |
commit | 24d1df79ba58ee6cf1f3800540a8fdf6efe1f3b8 (patch) | |
tree | 31449e6280536361b50348b610f1696168c48a7f | |
parent | 7b911cb62193a82b084926aec3b0bcaaaf1af865 (diff) | |
parent | 52b201f0dfe6ca2961a43f2863ac66d01572cb22 (diff) | |
download | cpython-24d1df79ba58ee6cf1f3800540a8fdf6efe1f3b8.zip cpython-24d1df79ba58ee6cf1f3800540a8fdf6efe1f3b8.tar.gz cpython-24d1df79ba58ee6cf1f3800540a8fdf6efe1f3b8.tar.bz2 |
Merge 3.2
-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. |