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
71460738
Kaydet (Commit)
71460738
authored
Haz 04, 2002
tarafından
Jeremy Hylton
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use module-level import of DEBUG instead of many function-level imports.
üst
fc861bab
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
dist.py
Lib/distutils/dist.py
+1
-4
No files found.
Lib/distutils/dist.py
Dosyayı görüntüle @
71460738
...
...
@@ -16,6 +16,7 @@ from distutils.errors import *
from
distutils.fancy_getopt
import
FancyGetopt
,
translate_longopt
from
distutils.util
import
check_environ
,
strtobool
,
rfc822_escape
from
distutils
import
log
from
distutils.core
import
DEBUG
# Regex to define acceptable Distutils command names. This is not *quite*
# the same as a Python NAME -- I don't allow leading underscores. The fact
...
...
@@ -305,7 +306,6 @@ class Distribution:
def
parse_config_files
(
self
,
filenames
=
None
):
from
ConfigParser
import
ConfigParser
from
distutils.core
import
DEBUG
if
filenames
is
None
:
filenames
=
self
.
find_config_files
()
...
...
@@ -771,7 +771,6 @@ class Distribution:
object for 'command' is in the cache, then we either create and
return it (if 'create' is true) or return None.
"""
from
distutils.core
import
DEBUG
cmd_obj
=
self
.
command_obj
.
get
(
command
)
if
not
cmd_obj
and
create
:
if
DEBUG
:
...
...
@@ -802,8 +801,6 @@ class Distribution:
supplied, uses the standard option dictionary for this command
(from 'self.command_options').
"""
from
distutils.core
import
DEBUG
command_name
=
command_obj
.
get_command_name
()
if
option_dict
is
None
:
option_dict
=
self
.
get_option_dict
(
command_name
)
...
...
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