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
8d904c39
Kaydet (Commit)
8d904c39
authored
Nis 22, 2008
tarafından
Amaury Forgeot d'Arc
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #2670: urllib2.build_opener() failed when two handlers
derive the same default base class. Backport of r62463.
üst
f305bd3e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
3 deletions
+12
-3
test_urllib2.py
Lib/test/test_urllib2.py
+6
-0
urllib2.py
Lib/urllib2.py
+3
-3
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_urllib2.py
Dosyayı görüntüle @
8d904c39
...
...
@@ -1038,6 +1038,12 @@ class MiscTests(unittest.TestCase):
o
=
build_opener
(
urllib2
.
HTTPHandler
())
self
.
opener_has_handler
(
o
,
urllib2
.
HTTPHandler
)
# Issue2670: multiple handlers sharing the same base class
class
MyOtherHTTPHandler
(
urllib2
.
HTTPHandler
):
pass
o
=
build_opener
(
MyHTTPHandler
,
MyOtherHTTPHandler
)
self
.
opener_has_handler
(
o
,
MyHTTPHandler
)
self
.
opener_has_handler
(
o
,
MyOtherHTTPHandler
)
def
opener_has_handler
(
self
,
opener
,
handler_class
):
for
h
in
opener
.
handlers
:
if
h
.
__class__
==
handler_class
:
...
...
Lib/urllib2.py
Dosyayı görüntüle @
8d904c39
...
...
@@ -447,14 +447,14 @@ def build_opener(*handlers):
FTPHandler
,
FileHandler
,
HTTPErrorProcessor
]
if
hasattr
(
httplib
,
'HTTPS'
):
default_classes
.
append
(
HTTPSHandler
)
skip
=
[]
skip
=
set
()
for
klass
in
default_classes
:
for
check
in
handlers
:
if
isclass
(
check
):
if
issubclass
(
check
,
klass
):
skip
.
a
ppen
d
(
klass
)
skip
.
a
d
d
(
klass
)
elif
isinstance
(
check
,
klass
):
skip
.
a
ppen
d
(
klass
)
skip
.
a
d
d
(
klass
)
for
klass
in
skip
:
default_classes
.
remove
(
klass
)
...
...
Misc/NEWS
Dosyayı görüntüle @
8d904c39
...
...
@@ -45,6 +45,9 @@ Core and builtins
Library
-------
-
Issue
#
2670
:
Fix
a
failure
in
urllib2
.
build_opener
(),
when
passed
two
handlers
that
derive
the
same
default
base
class
.
-
Issue
#
2495
:
tokenize
.
untokenize
now
inserts
a
space
between
two
consecutive
string
literals
;
previously
,
[
""
""
]
was
rendered
as
[
""""
],
which
is
incorrect
python
code
.
...
...
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