Commit 68e27eb8 authored by Tarek Ziadé's avatar Tarek Ziadé

distutils.test_build_clib added a new line at the end of the file, to avoid a...

distutils.test_build_clib added a new line at the end of the file, to avoid a warning with some compilers
parent 3dabc101
......@@ -109,7 +109,7 @@ class BuildCLibTestCase(support.TempdirManager,
cmd = build_clib(dist)
foo_c = os.path.join(pkg_dir, 'foo.c')
self.write_file(foo_c, 'int main(void) { return 1;}')
self.write_file(foo_c, 'int main(void) { return 1;}\n')
cmd.libraries = [('foo', {'sources': [foo_c]})]
build_temp = os.path.join(pkg_dir, 'build')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment