]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fixed 6365: wrong inplace location for build_ext if the extension had dots
authorTarek Ziadé <ziade.tarek@gmail.com>
Mon, 29 Jun 2009 16:13:39 +0000 (16:13 +0000)
committerTarek Ziadé <ziade.tarek@gmail.com>
Mon, 29 Jun 2009 16:13:39 +0000 (16:13 +0000)
Lib/distutils/command/build_ext.py
Lib/distutils/tests/test_build_ext.py
Misc/NEWS

index 293c214de73542bea65edd5a247e6a9f63285ee9..c2c1bf13a3ca7dfab06b8beb4ec2bffa9924b6a3 100644 (file)
@@ -643,16 +643,16 @@ class build_ext (Command):
         (inplace option).
         """
         fullname = self.get_ext_fullname(ext_name)
-        filename = self.get_ext_filename(fullname)
+        modpath = fullname.split('.')
+        package = '.'.join(modpath[0:-1])
+        base = modpath[-1]
+        filename = self.get_ext_filename(base)
         if not self.inplace:
             # no further work needed
             return os.path.join(self.build_lib, filename)
 
         # the inplace option requires to find the package directory
         # using the build_py command
-        modpath = fullname.split('.')
-        package = '.'.join(modpath[0:-1])
-        base = modpath[-1]
         build_py = self.get_finalized_command('build_py')
         package_dir = os.path.abspath(build_py.get_package_dir(package))
         return os.path.join(package_dir, filename)
index 12b8581c9786b135f71cd5fbc8d39ccd9ba93e52..5f28b799a0fbabbbdc4209a54c151a38029cce46 100644 (file)
@@ -339,10 +339,9 @@ class BuildExtTestCase(support.TempdirManager,
         # inplace = 0, cmd.package = 'bar'
         cmd.package = 'bar'
         path = cmd.get_ext_fullpath('foo')
-        # checking that the last directory is bar
+        # checking that the last directory is the build_dir
         path = os.path.split(path)[0]
-        lastdir = os.path.split(path)[-1]
-        self.assertEquals(lastdir, cmd.package)
+        self.assertEquals(path, cmd.build_lib)
 
         # inplace = 1, cmd.package = 'bar'
         cmd.inplace = 1
@@ -358,6 +357,19 @@ class BuildExtTestCase(support.TempdirManager,
         lastdir = os.path.split(path)[-1]
         self.assertEquals(lastdir, cmd.package)
 
+    def test_build_ext_inplace(self):
+        etree_c = os.path.join(self.tmp_dir, 'lxml.etree.c')
+        etree_ext = Extension('lxml.etree', [etree_c])
+        dist = Distribution({'name': 'lxml', 'ext_modules': [etree_ext]})
+        cmd = build_ext(dist)
+        cmd.inplace = 1
+        cmd.distribution.package_dir = {'': 'src'}
+        cmd.distribution.packages = ['lxml', 'lxml.html']
+        curdir = os.getcwd()
+        wanted = os.path.join(curdir, 'src', 'lxml', 'etree.so')
+        path = cmd.get_ext_fullpath('lxml.etree')
+        self.assertEquals(wanted, path)
+
 def test_suite():
     src = _get_source_filename()
     if not os.path.exists(src):
index 752cd329342aec4682189ed348bbc0e22a80d6a1..30e2217b68ac9516415558fbb2237bf26257d40b 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -337,6 +337,9 @@ Core and Builtins
 Library
 -------
 
+- Issue #6365: Distutils build_ext inplace mode was copying the compiled 
+  extension in a subdirectory if the extension name had dots.
+
 - Issue #6344: Fixed a crash of mmap.read() when passed a negative argument.
 
 - Issue #5230: pydoc would report no documentation found if a module generated