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
896e87a9
Kaydet (Commit)
896e87a9
authored
Tem 15, 2016
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge for #26844
üst
044283a4
f76457e1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
imp.py
Lib/imp.py
+2
-2
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/imp.py
Dosyayı görüntüle @
896e87a9
...
@@ -266,8 +266,8 @@ def find_module(name, path=None):
...
@@ -266,8 +266,8 @@ def find_module(name, path=None):
raise
TypeError
(
"'name' must be a str, not {}"
.
format
(
type
(
name
)))
raise
TypeError
(
"'name' must be a str, not {}"
.
format
(
type
(
name
)))
elif
not
isinstance
(
path
,
(
type
(
None
),
list
)):
elif
not
isinstance
(
path
,
(
type
(
None
),
list
)):
# Backwards-compatibility
# Backwards-compatibility
raise
RuntimeError
(
"'
list
' must be None or a list, "
raise
RuntimeError
(
"'
path
' must be None or a list, "
"not {}"
.
format
(
type
(
name
)))
"not {}"
.
format
(
type
(
path
)))
if
path
is
None
:
if
path
is
None
:
if
is_builtin
(
name
):
if
is_builtin
(
name
):
...
...
Misc/ACKS
Dosyayı görüntüle @
896e87a9
...
@@ -949,6 +949,7 @@ Graham Matthews
...
@@ -949,6 +949,7 @@ Graham Matthews
mattip
mattip
Martin Matusiak
Martin Matusiak
Dieter Maurer
Dieter Maurer
Lev Maximov
Daniel May
Daniel May
Madison May
Madison May
Lucas Maystre
Lucas Maystre
...
...
Misc/NEWS
Dosyayı görüntüle @
896e87a9
...
@@ -51,6 +51,9 @@ Core and Builtins
...
@@ -51,6 +51,9 @@ Core and Builtins
Library
Library
-------
-------
-
Issue
#
26844
:
Fix
error
message
for
imp
.
find_module
()
to
refer
to
'path'
instead
of
'name'
.
Patch
by
Lev
Maximov
.
-
Issue
#
23804
:
Fix
SSL
zero
-
length
recv
()
calls
to
not
block
and
not
raise
-
Issue
#
23804
:
Fix
SSL
zero
-
length
recv
()
calls
to
not
block
and
not
raise
an
error
about
unclean
EOF
.
an
error
about
unclean
EOF
.
...
...
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