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
edb07d28
Kaydet (Commit)
edb07d28
authored
Haz 07, 2014
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge 3.4 (#21463)
üst
8dfd73a2
3c2dca67
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
35 additions
and
2 deletions
+35
-2
test_urllib.py
Lib/test/test_urllib.py
+31
-1
request.py
Lib/urllib/request.py
+1
-1
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_urllib.py
Dosyayı görüntüle @
edb07d28
...
...
@@ -7,6 +7,7 @@ import http.client
import
email.message
import
io
import
unittest
from
unittest.mock
import
patch
from
test
import
support
import
os
import
sys
...
...
@@ -89,6 +90,26 @@ class FakeHTTPMixin(object):
http
.
client
.
HTTPConnection
=
self
.
_connection_class
class
FakeFTPMixin
(
object
):
def
fakeftp
(
self
):
class
FakeFtpWrapper
(
object
):
def
__init__
(
self
,
user
,
passwd
,
host
,
port
,
dirs
,
timeout
=
None
,
persistent
=
True
):
pass
def
retrfile
(
self
,
file
,
type
):
return
io
.
BytesIO
(),
0
def
close
(
self
):
pass
self
.
_ftpwrapper_class
=
urllib
.
request
.
ftpwrapper
urllib
.
request
.
ftpwrapper
=
FakeFtpWrapper
def
unfakeftp
(
self
):
urllib
.
request
.
ftpwrapper
=
self
.
_ftpwrapper_class
class
urlopen_FileTests
(
unittest
.
TestCase
):
"""Test urlopen() opening a temporary file.
...
...
@@ -195,7 +216,7 @@ class ProxyTests(unittest.TestCase):
self
.
env
.
set
(
'NO_PROXY'
,
'localhost, anotherdomain.com, newdomain.com'
)
self
.
assertTrue
(
urllib
.
request
.
proxy_bypass_environment
(
'anotherdomain.com'
))
class
urlopen_HttpTests
(
unittest
.
TestCase
,
FakeHTTPMixin
):
class
urlopen_HttpTests
(
unittest
.
TestCase
,
FakeHTTPMixin
,
FakeFTPMixin
):
"""Test urlopen() opening a fake http connection."""
def
check_read
(
self
,
ver
):
...
...
@@ -309,6 +330,15 @@ Content-Type: text/html; charset=iso-8859-1
self
.
assertFalse
(
e
.
exception
.
filename
)
self
.
assertTrue
(
e
.
exception
.
reason
)
@patch.object
(
urllib
.
request
,
'MAXFTPCACHE'
,
0
)
def
test_ftp_cache_pruning
(
self
):
self
.
fakeftp
()
try
:
urllib
.
request
.
ftpcache
[
'test'
]
=
urllib
.
request
.
ftpwrapper
(
'user'
,
'pass'
,
'localhost'
,
21
,
[])
urlopen
(
'ftp://localhost'
)
finally
:
self
.
unfakeftp
()
def
test_userpass_inurl
(
self
):
self
.
fakehttp
(
b
"HTTP/1.0 200 OK
\r\n\r\n
Hello!"
)
...
...
Lib/urllib/request.py
Dosyayı görüntüle @
edb07d28
...
...
@@ -1911,7 +1911,7 @@ class URLopener:
# XXX thread unsafe!
if
len
(
self
.
ftpcache
)
>
MAXFTPCACHE
:
# Prune the cache, rather arbitrarily
for
k
in
self
.
ftpcache
.
keys
(
):
for
k
in
list
(
self
.
ftpcache
):
if
k
!=
key
:
v
=
self
.
ftpcache
[
k
]
del
self
.
ftpcache
[
k
]
...
...
Misc/ACKS
Dosyayı görüntüle @
edb07d28
...
...
@@ -32,6 +32,7 @@ Fred Allen
Ray Allen
Billy G. Allie
Kevin Altis
Skyler Leigh Amador
Joe Amenta
A. Amoroso
Mark Anacker
...
...
Misc/NEWS
Dosyayı görüntüle @
edb07d28
...
...
@@ -94,6 +94,8 @@ Library
- Issue #21515: tempfile.TemporaryFile now uses os.O_TMPFILE flag is available.
- Issue #21463: In urllib.request, fix pruning of the FTP cache.
- Issue #21618: The subprocess module could fail to close open fds that were
inherited by the calling process and already higher than POSIX resource
limits would otherwise allow. On systems with a functioning /proc/self/fd
...
...
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