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
de10bf4f
Kaydet (Commit)
de10bf4f
authored
Nis 17, 2012
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #13959: Fix a logic bug.
üst
f138f8c1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
imp.py
Lib/imp.py
+1
-1
No files found.
Lib/imp.py
Dosyayı görüntüle @
de10bf4f
...
@@ -45,7 +45,7 @@ def load_module(name, file, filename, details):
...
@@ -45,7 +45,7 @@ def load_module(name, file, filename, details):
"""
"""
suffix
,
mode
,
type_
=
details
suffix
,
mode
,
type_
=
details
if
mode
and
(
not
mode
.
startswith
((
'r'
,
'U'
))
)
or
'+'
in
mode
:
if
mode
and
(
not
mode
.
startswith
((
'r'
,
'U'
))
or
'+'
in
mode
)
:
raise
ValueError
(
'invalid file open mode {!r}'
.
format
(
mode
))
raise
ValueError
(
'invalid file open mode {!r}'
.
format
(
mode
))
elif
file
is
None
and
type_
in
{
PY_SOURCE
,
PY_COMPILED
}:
elif
file
is
None
and
type_
in
{
PY_SOURCE
,
PY_COMPILED
}:
msg
=
'file object required for import (type code {})'
.
format
(
type_
)
msg
=
'file object required for import (type code {})'
.
format
(
type_
)
...
...
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