From: Tarek Ziadé Date: Wed, 13 May 2009 22:18:01 +0000 (+0000) Subject: Merged revisions 72612 via svnmerge from X-Git-Tag: v2.6.3rc1~288 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=279641b5ba0f18e129779a73a484f6b7d31d4069;p=python Merged revisions 72612 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r72612 | tarek.ziade | 2009-05-14 00:16:03 +0200 (Thu, 14 May 2009) | 1 line adding void to the c function ........ --- diff --git a/Lib/distutils/tests/test_build_ext.py b/Lib/distutils/tests/test_build_ext.py index 20f0553985..cf254ac1c4 100644 --- a/Lib/distutils/tests/test_build_ext.py +++ b/Lib/distutils/tests/test_build_ext.py @@ -233,7 +233,7 @@ class BuildExtTestCase(support.TempdirManager, def test_get_outputs(self): tmp_dir = self.mkdtemp() c_file = os.path.join(tmp_dir, 'foo.c') - self.write_file(c_file, 'void initfoo() {};\n') + self.write_file(c_file, 'void initfoo(void) {};\n') ext = Extension('foo', [c_file]) dist = Distribution({'name': 'xx', 'ext_modules': [ext]})