diff options
author | Éric Araujo <merwok@netwok.org> | 2011-10-07 21:13:45 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-10-07 21:13:45 (GMT) |
commit | db95c7a60c5ec404523bb7bbc13dd96bf87d15b8 (patch) | |
tree | 3e8ab731a35b889af288f87511ec3674bb995001 /Lib/distutils | |
parent | 35a502b32417241eba53336780afb10b54fcf4be (diff) | |
download | cpython-db95c7a60c5ec404523bb7bbc13dd96bf87d15b8.zip cpython-db95c7a60c5ec404523bb7bbc13dd96bf87d15b8.tar.gz cpython-db95c7a60c5ec404523bb7bbc13dd96bf87d15b8.tar.bz2 |
Make C code in one distutils test comply with ISO C (#10359).
Patch by Hallvard B Furuseth.
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/tests/test_config_cmd.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/tests/test_config_cmd.py b/Lib/distutils/tests/test_config_cmd.py index 4f7ebdd..e2e6e4e 100644 --- a/Lib/distutils/tests/test_config_cmd.py +++ b/Lib/distutils/tests/test_config_cmd.py @@ -44,10 +44,10 @@ class ConfigTestCase(support.LoggingSilencer, cmd = config(dist) # simple pattern searches - match = cmd.search_cpp(pattern='xxx', body='// xxx') + match = cmd.search_cpp(pattern='xxx', body='/* xxx */') self.assertEqual(match, 0) - match = cmd.search_cpp(pattern='_configtest', body='// xxx') + match = cmd.search_cpp(pattern='_configtest', body='/* xxx */') self.assertEqual(match, 1) def test_finalize_options(self): |