Kaydet (Commit) de2a1072 authored tarafından Tarek Ziadé's avatar Tarek Ziadé

Fixed #6947 - SO extension varies under windows

üst 3ad2847c
......@@ -338,7 +338,8 @@ class BuildExtTestCase(support.TempdirManager,
cmd.distribution.package_dir = {'': 'src'}
cmd.distribution.packages = ['lxml', 'lxml.html']
curdir = os.getcwd()
wanted = os.path.join(curdir, 'src', 'lxml', 'etree.so')
ext = sysconfig.get_config_var("SO")
wanted = os.path.join(curdir, 'src', 'lxml', 'etree' + ext)
path = cmd.get_ext_fullpath('lxml.etree')
self.assertEquals(wanted, path)
......
......@@ -82,6 +82,8 @@ Core and Builtins
Library
-------
- Issue #6947: Fix distutils test on windows. Patch by Hirokazu Yamamoto.
- Issue #4606: Passing 'None' if ctypes argtype is set to POINTER(...)
does now always result in NULL.
......
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