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
7f0fb0b0
Kaydet (Commit)
7f0fb0b0
authored
Şub 03, 2000
tarafından
Greg Ward
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Improved an error message.
Announce when we start building each extension (better feedback).
üst
ef6f515d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
build_ext.py
Lib/distutils/command/build_ext.py
+5
-2
No files found.
Lib/distutils/command/build_ext.py
Dosyayı görüntüle @
7f0fb0b0
...
@@ -197,10 +197,13 @@ class BuildExt (Command):
...
@@ -197,10 +197,13 @@ class BuildExt (Command):
sources
=
build_info
.
get
(
'sources'
)
sources
=
build_info
.
get
(
'sources'
)
if
sources
is
None
or
type
(
sources
)
not
in
(
ListType
,
TupleType
):
if
sources
is
None
or
type
(
sources
)
not
in
(
ListType
,
TupleType
):
raise
DistutilsValueError
,
\
raise
DistutilsValueError
,
\
"in ext_modules option, 'sources' must be present "
+
\
(
"in ext_modules option (extension '
%
s'), "
+
"and must be a list of source filenames"
"'sources' must be present and must be "
+
"a list of source filenames"
)
%
extension_name
sources
=
list
(
sources
)
sources
=
list
(
sources
)
self
.
announce
(
"building '
%
s' extension"
%
extension_name
)
# First step: compile the source code to object files. This
# First step: compile the source code to object files. This
# drops the object files in the current directory, regardless
# drops the object files in the current directory, regardless
# of where the source is (may be a bad thing, but that's how a
# of where the source is (may be a bad thing, but that's how a
...
...
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