mirror of
https://github.com/python/cpython.git
synced 2025-08-09 11:29:45 +00:00
Merged revisions 73970 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r73970 | hirokazu.yamamoto | 2009-07-12 11:04:47 +0900 | 1 line Fixed distutils test. ........
This commit is contained in:
parent
bc3f3c9eed
commit
f4a96e07d8
1 changed files with 1 additions and 1 deletions
|
@ -233,7 +233,7 @@ class BuildExtTestCase(support.TempdirManager,
|
||||||
def test_get_outputs(self):
|
def test_get_outputs(self):
|
||||||
tmp_dir = self.mkdtemp()
|
tmp_dir = self.mkdtemp()
|
||||||
c_file = os.path.join(tmp_dir, 'foo.c')
|
c_file = os.path.join(tmp_dir, 'foo.c')
|
||||||
self.write_file(c_file, 'void init_foo(void) {};\n')
|
self.write_file(c_file, 'void initfoo(void) {};\n')
|
||||||
ext = Extension('foo', [c_file])
|
ext = Extension('foo', [c_file])
|
||||||
dist = Distribution({'name': 'xx',
|
dist = Distribution({'name': 'xx',
|
||||||
'ext_modules': [ext]})
|
'ext_modules': [ext]})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue