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
e897a747
Kaydet (Commit)
e897a747
authored
Şub 15, 2012
tarafından
Éric Araujo
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix parsing of build_ext --libraries option (#1326113)
üst
65d36dab
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
8 deletions
+10
-8
build_ext.py
Lib/distutils/command/build_ext.py
+1
-2
test_build_ext.py
Lib/distutils/tests/test_build_ext.py
+6
-6
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/distutils/command/build_ext.py
Dosyayı görüntüle @
e897a747
...
...
@@ -160,8 +160,7 @@ class build_ext (Command):
if
plat_py_include
!=
py_include
:
self
.
include_dirs
.
append
(
plat_py_include
)
if
isinstance
(
self
.
libraries
,
str
):
self
.
libraries
=
[
self
.
libraries
]
self
.
ensure_string_list
(
'libraries'
)
# Life is easier if we're not forever checking for None, so
# simplify these options to empty lists if unset
...
...
Lib/distutils/tests/test_build_ext.py
Dosyayı görüntüle @
e897a747
...
...
@@ -150,21 +150,21 @@ class BuildExtTestCase(support.TempdirManager,
# make sure cmd.libraries is turned into a list
# if it's a string
cmd
=
build_ext
(
dist
)
cmd
.
libraries
=
'my_lib'
cmd
.
libraries
=
'my_lib
, other_lib lastlib
'
cmd
.
finalize_options
()
self
.
assertEqual
(
cmd
.
libraries
,
[
'my_lib'
])
self
.
assertEqual
(
cmd
.
libraries
,
[
'my_lib'
,
'other_lib'
,
'lastlib'
])
# make sure cmd.library_dirs is turned into a list
# if it's a string
cmd
=
build_ext
(
dist
)
cmd
.
library_dirs
=
'my_lib_dir
'
cmd
.
library_dirs
=
'my_lib_dir
%
sother_lib_dir'
%
os
.
pathsep
cmd
.
finalize_options
()
self
.
assert
True
(
'my_lib_dir'
in
cmd
.
library_dirs
)
self
.
assert
Equal
(
cmd
.
library_dirs
,
[
'my_lib_dir'
,
'other_lib_dir'
]
)
# make sure rpath is turned into a list
# if it's a
list of os.pathsep's paths
# if it's a
string
cmd
=
build_ext
(
dist
)
cmd
.
rpath
=
os
.
pathsep
.
join
([
'one'
,
'two'
])
cmd
.
rpath
=
'one
%
stwo'
%
os
.
pathsep
cmd
.
finalize_options
()
self
.
assertEqual
(
cmd
.
rpath
,
[
'one'
,
'two'
])
...
...
Misc/NEWS
Dosyayı görüntüle @
e897a747
...
...
@@ -102,6 +102,9 @@ Library
- Issue #13979: A bug in ctypes.util.find_library that caused
the wrong library name to be returned has been fixed.
- Issue #1326113: distutils'
build_ext
command
--
libraries
option
now
correctly
parses
multiple
values
separated
by
whitespace
or
commas
.
-
Issue
#
13993
:
HTMLParser
is
now
able
to
handle
broken
end
tags
.
-
Issue
#
13960
:
HTMLParser
is
now
able
to
handle
broken
comments
.
...
...
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