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
b77983d2
Kaydet (Commit)
b77983d2
authored
Eki 10, 2014
tarafından
Berker Peksag
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #21456: Skip two tests in test_urllib2net.py if _ssl module not present.
Patch by Remi Pointel.
üst
cfb2a0a8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
test_urllib2net.py
Lib/test/test_urllib2net.py
+5
-0
NEWS
Misc/NEWS
+6
-0
No files found.
Lib/test/test_urllib2net.py
Dosyayı görüntüle @
b77983d2
...
...
@@ -7,11 +7,14 @@ import socket
import
urllib.error
import
urllib.request
import
sys
try
:
import
ssl
except
ImportError
:
ssl
=
None
requires_ssl
=
unittest
.
skipIf
(
ssl
is
None
,
"SSL not supported"
)
support
.
requires
(
"network"
)
TIMEOUT
=
60
# seconds
...
...
@@ -156,6 +159,7 @@ class OtherNetworkTests(unittest.TestCase):
## self._test_urls(urls, self._extra_handlers()+[bauth, dauth])
@requires_ssl
def
test_urlwithfrag
(
self
):
urlwith_frag
=
"https://docs.python.org/2/glossary.html#glossary"
with
support
.
transient_internet
(
urlwith_frag
):
...
...
@@ -164,6 +168,7 @@ class OtherNetworkTests(unittest.TestCase):
self
.
assertEqual
(
res
.
geturl
(),
"https://docs.python.org/2/glossary.html#glossary"
)
@requires_ssl
def
test_redirect_url_withfrag
(
self
):
redirect_url_with_frag
=
"http://bit.ly/1iSHToT"
with
support
.
transient_internet
(
redirect_url_with_frag
):
...
...
Misc/NEWS
Dosyayı görüntüle @
b77983d2
...
...
@@ -55,6 +55,12 @@ Library
- Issue #22448: Improve canceled timer handles cleanup to prevent
unbound memory usage. Patch by Joshua Moore-Oliva.
Tests
-----
- Issue #21456: Skip two tests in test_urllib2net.py if _ssl module not
present. Patch by Remi Pointel.
Build
-----
...
...
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