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
77888384
Kaydet (Commit)
77888384
authored
Nis 15, 2012
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge
üst
881535b7
f8f3190d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
_bootstrap.py
Lib/importlib/_bootstrap.py
+2
-2
No files found.
Lib/importlib/_bootstrap.py
Dosyayı görüntüle @
77888384
...
...
@@ -23,7 +23,7 @@ CASE_INSENSITIVE_PLATFORMS = 'win', 'cygwin', 'darwin'
def
_make_relax_case
():
if
any
(
map
(
sys
.
platform
.
startswith
,
CASE_INSENSITIVE_PLATFORMS
)
):
if
sys
.
platform
.
startswith
(
CASE_INSENSITIVE_PLATFORMS
):
def
_relax_case
():
"""True if filenames must be checked case-insensitively."""
return
b
'PYTHONCASEOK'
in
_os
.
environ
...
...
@@ -163,7 +163,7 @@ code_type = type(_wrap.__code__)
def
verbose_message
(
message
,
*
args
):
"""Print the message to stderr if -v/PYTHONVERBOSE is turned on."""
if
sys
.
flags
.
verbose
:
if
not
message
.
startswith
(
'#'
)
and
not
message
.
startswith
(
'import '
):
if
not
message
.
startswith
(
(
'#'
,
'import '
)
):
message
=
'# '
+
message
print
(
message
.
format
(
*
args
),
file
=
sys
.
stderr
)
...
...
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