Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
65ec61ed
Kaydet (Commit)
65ec61ed
authored
Tem 03, 2009
tarafından
Tarek Ziadé
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #6403 : package path usage for build_ext
üst
50a22528
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
43 additions
and
10 deletions
+43
-10
build_ext.py
Lib/distutils/command/build_ext.py
+10
-4
test_build_ext.py
Lib/distutils/tests/test_build_ext.py
+31
-6
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/distutils/command/build_ext.py
Dosyayı görüntüle @
65ec61ed
...
...
@@ -644,17 +644,23 @@ class build_ext (Command):
"""
fullname
=
self
.
get_ext_fullname
(
ext_name
)
modpath
=
fullname
.
split
(
'.'
)
package
=
'.'
.
join
(
modpath
[
0
:
-
1
])
base
=
modpath
[
-
1
]
filename
=
self
.
get_ext_filename
(
base
)
filename
=
self
.
get_ext_filename
(
modpath
[
-
1
])
if
not
self
.
inplace
:
# no further work needed
# returning :
# build_dir/package/path/filename
filename
=
os
.
path
.
join
(
*
modpath
[:
-
1
]
+
[
filename
])
return
os
.
path
.
join
(
self
.
build_lib
,
filename
)
# the inplace option requires to find the package directory
# using the build_py command
# using the build_py command for that
package
=
'.'
.
join
(
modpath
[
0
:
-
1
])
build_py
=
self
.
get_finalized_command
(
'build_py'
)
package_dir
=
os
.
path
.
abspath
(
build_py
.
get_package_dir
(
package
))
# returning
# package_dir/filename
return
os
.
path
.
join
(
package_dir
,
filename
)
def
get_ext_fullname
(
self
,
ext_name
):
...
...
Lib/distutils/tests/test_build_ext.py
Dosyayı görüntüle @
65ec61ed
...
...
@@ -337,7 +337,8 @@ class BuildExtTestCase(support.TempdirManager,
self
.
assertEquals
(
so_dir
,
cmd
.
build_lib
)
# inplace = 0, cmd.package = 'bar'
cmd
.
package
=
'bar'
build_py
=
cmd
.
get_finalized_command
(
'build_py'
)
build_py
.
package_dir
=
{
''
:
'bar'
}
path
=
cmd
.
get_ext_fullpath
(
'foo'
)
# checking that the last directory is the build_dir
path
=
os
.
path
.
split
(
path
)[
0
]
...
...
@@ -355,12 +356,14 @@ class BuildExtTestCase(support.TempdirManager,
# checking that the last directory is bar
path
=
os
.
path
.
split
(
path
)[
0
]
lastdir
=
os
.
path
.
split
(
path
)[
-
1
]
self
.
assertEquals
(
lastdir
,
cmd
.
package
)
self
.
assertEquals
(
lastdir
,
'bar'
)
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
]})
def
test_ext_fullpath
(
self
):
# building lxml.etree inplace
#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]})
dist
=
Distribution
()
cmd
=
build_ext
(
dist
)
cmd
.
inplace
=
1
cmd
.
distribution
.
package_dir
=
{
''
:
'src'
}
...
...
@@ -370,6 +373,28 @@ class BuildExtTestCase(support.TempdirManager,
path
=
cmd
.
get_ext_fullpath
(
'lxml.etree'
)
self
.
assertEquals
(
wanted
,
path
)
# building lxml.etree not inplace
cmd
.
inplace
=
0
cmd
.
build_lib
=
os
.
path
.
join
(
curdir
,
'tmpdir'
)
wanted
=
os
.
path
.
join
(
curdir
,
'tmpdir'
,
'lxml'
,
'etree.so'
)
path
=
cmd
.
get_ext_fullpath
(
'lxml.etree'
)
self
.
assertEquals
(
wanted
,
path
)
# building twisted.runner.portmap not inplace
build_py
=
cmd
.
get_finalized_command
(
'build_py'
)
build_py
.
package_dir
=
{}
cmd
.
distribution
.
packages
=
[
'twisted'
,
'twisted.runner.portmap'
]
path
=
cmd
.
get_ext_fullpath
(
'twisted.runner.portmap'
)
wanted
=
os
.
path
.
join
(
curdir
,
'tmpdir'
,
'twisted'
,
'runner'
,
'portmap.so'
)
self
.
assertEquals
(
wanted
,
path
)
# building twisted.runner.portmap inplace
cmd
.
inplace
=
1
path
=
cmd
.
get_ext_fullpath
(
'twisted.runner.portmap'
)
wanted
=
os
.
path
.
join
(
curdir
,
'twisted'
,
'runner'
,
'portmap.so'
)
self
.
assertEquals
(
wanted
,
path
)
def
test_suite
():
src
=
_get_source_filename
()
if
not
os
.
path
.
exists
(
src
):
...
...
Misc/NEWS
Dosyayı görüntüle @
65ec61ed
...
...
@@ -347,6 +347,8 @@ Core and Builtins
Library
-------
- Issue #6403: Fixed package path usage in build_ext.
- Issues #5155, 5313, 5331: multiprocessing.Process._bootstrap was
unconditionally calling "os.close(sys.stdin.fileno())" resulting in file
descriptor errors
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment