summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-07-12 02:09:25 (GMT)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-07-12 02:09:25 (GMT)
commitf4a96e07d8ae7ba868c22c93dec0e2bef13d3383 (patch)
tree50e3d0bb0a61e4712a3e79b53eb90e33832caf5d /Lib/distutils
parentbc3f3c9eed153ca9dde5d436ff9935b670959956 (diff)
downloadcpython-f4a96e07d8ae7ba868c22c93dec0e2bef13d3383.zip
cpython-f4a96e07d8ae7ba868c22c93dec0e2bef13d3383.tar.gz
cpython-f4a96e07d8ae7ba868c22c93dec0e2bef13d3383.tar.bz2
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. ........
Diffstat (limited to 'Lib/distutils')
-rw-r--r--Lib/distutils/tests/test_build_ext.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_build_ext.py b/Lib/distutils/tests/test_build_ext.py
index d071648..153c875 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 init_foo(void) {};\n')
+ self.write_file(c_file, 'void initfoo(void) {};\n')
ext = Extension('foo', [c_file])
dist = Distribution({'name': 'xx',
'ext_modules': [ext]})