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
1002a621
Kaydet (Commit)
1002a621
authored
Eki 22, 2016
tarafından
Martin Panter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #28435: Avoid no_proxy environment variable interfering with tests
Patch by Piotr Szczepaniak.
üst
d60ea5ff
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
test_urllib2_localnet.py
Lib/test/test_urllib2_localnet.py
+9
-0
ACKS
Misc/ACKS
+1
-0
No files found.
Lib/test/test_urllib2_localnet.py
Dosyayı görüntüle @
1002a621
...
...
@@ -323,6 +323,14 @@ class ProxyAuthTests(unittest.TestCase):
def
setUp
(
self
):
super
(
ProxyAuthTests
,
self
)
.
setUp
()
# Ignore proxy bypass settings in the environment.
def
restore_environ
(
old_environ
):
os
.
environ
.
clear
()
os
.
environ
.
update
(
old_environ
)
self
.
addCleanup
(
restore_environ
,
os
.
environ
.
copy
())
os
.
environ
[
'NO_PROXY'
]
=
''
os
.
environ
[
'no_proxy'
]
=
''
self
.
digest_auth_handler
=
DigestAuthHandler
()
self
.
digest_auth_handler
.
set_users
({
self
.
USER
:
self
.
PASSWD
})
self
.
digest_auth_handler
.
set_realm
(
self
.
REALM
)
...
...
@@ -445,6 +453,7 @@ class TestUrlopen(unittest.TestCase):
os
.
environ
.
update
(
old_environ
)
self
.
addCleanup
(
restore_environ
,
os
.
environ
.
copy
())
os
.
environ
[
'NO_PROXY'
]
=
'*'
os
.
environ
[
'no_proxy'
]
=
'*'
def
urlopen
(
self
,
url
,
data
=
None
,
**
kwargs
):
l
=
[]
...
...
Misc/ACKS
Dosyayı görüntüle @
1002a621
...
...
@@ -1450,6 +1450,7 @@ Al Sweigart
Thenault Sylvain
Péter Szabó
John Szakmeister
Piotr Szczepaniak
Amir Szekely
Maciej Szulik
Arfrever Frehtes Taifersar Arahesis
...
...
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