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
bb8c71d5
Kaydet (Commit)
bb8c71d5
authored
May 12, 2000
tarafından
Gregory P. Smith
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Call 'parse_config_files()' at the appropriate point.
Tweaked error-generating code.
üst
1426354c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
core.py
Lib/distutils/core.py
+7
-7
No files found.
Lib/distutils/core.py
Dosyayı görüntüle @
bb8c71d5
...
...
@@ -71,11 +71,11 @@ def setup (**attrs):
# (ie. everything except distclass) to initialize it
dist
=
klass
(
attrs
)
#
If we had a config file, this is where we would parse it: override
# the
client-supplied command options, but be overridden by the
# command line.
# Parse the command line; any command-line errors are the end
-user
s
#
Find and parse the config file(s): they will override options from
# the
setup script, but be overridden by the command line.
dist
.
parse_config_files
()
# Parse the command line; any command-line errors are the end
user'
s
# fault, so turn them into SystemExit to suppress tracebacks.
try
:
ok
=
dist
.
parse_command_line
(
sys
.
argv
[
1
:])
...
...
@@ -101,10 +101,10 @@ def setup (**attrs):
raise
SystemExit
,
\
"error:
%
s"
%
exc
.
strerror
else
:
raise
SystemExit
,
"error: "
+
exc
[
-
1
]
raise
SystemExit
,
"error: "
+
str
(
exc
[
-
1
])
except
(
DistutilsExecError
,
DistutilsFileError
,
DistutilsOptionError
),
msg
:
raise
SystemExit
,
"error: "
+
str
(
msg
)
raise
SystemExit
,
"error: "
+
str
(
msg
)
# setup ()
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