mirror of
https://github.com/python/cpython.git
synced 2025-08-18 15:51:23 +00:00
Fixed #7064: making sure get_ext_filename is called as Setuptools is assuming so it doesn't break it
This commit is contained in:
parent
f125078132
commit
3c8de0ff27
5 changed files with 363 additions and 1 deletions
|
@ -630,7 +630,8 @@ class build_ext (Command):
|
|||
"""
|
||||
fullname = self.get_ext_fullname(ext_name)
|
||||
modpath = fullname.split('.')
|
||||
filename = self.get_ext_filename(modpath[-1])
|
||||
filename = self.get_ext_filename(ext_name)
|
||||
filename = os.path.split(filename)[-1]
|
||||
|
||||
if not self.inplace:
|
||||
# no further work needed
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue