Merged revisions 72610 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r72610 | tarek.ziade | 2009-05-13 23:30:06 +0200 (Wed, 13 May 2009) | 1 line

  added an inifoo in the C file, to avoid a warning by the MSVC9 linker
........
This commit is contained in:
Tarek Ziadé 2009-05-13 22:08:54 +00:00
parent 53907d45c3
commit c10f17306b
1 changed files with 1 additions and 1 deletions

View File

@ -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, '')
self.write_file(c_file, 'void initfoo() {};\n')
ext = Extension('foo', [c_file])
dist = Distribution({'name': 'xx',
'ext_modules': [ext]})