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
3242577a
Kaydet (Commit)
3242577a
authored
Ock 21, 2012
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge from 3.2
üst
77fc1f3c
3800ea9f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
2 deletions
+8
-2
test_urllib.py
Lib/test/test_urllib.py
+3
-0
test_urllib2net.py
Lib/test/test_urllib2net.py
+2
-0
request.py
Lib/urllib/request.py
+2
-0
NEWS
Misc/NEWS
+1
-2
No files found.
Lib/test/test_urllib.py
Dosyayı görüntüle @
3242577a
...
...
@@ -160,6 +160,9 @@ class urlopen_FileTests(unittest.TestCase):
for
line
in
self
.
returned_obj
:
self
.
assertEqual
(
line
,
self
.
text
)
def
test_relativelocalfile
(
self
):
self
.
assertRaises
(
ValueError
,
urllib
.
request
.
urlopen
,
'./'
+
self
.
pathname
)
class
ProxyTests
(
unittest
.
TestCase
):
def
setUp
(
self
):
...
...
Lib/test/test_urllib2net.py
Dosyayı görüntüle @
3242577a
...
...
@@ -125,6 +125,8 @@ class OtherNetworkTests(unittest.TestCase):
finally
:
os
.
remove
(
TESTFN
)
self
.
assertRaises
(
ValueError
,
urllib
.
request
.
urlopen
,
'./relative_path/to/file'
)
# XXX Following test depends on machine configurations that are internal
# to CNRI. Need to set up a public server with the right authentication
# configuration for test purposes.
...
...
Lib/urllib/request.py
Dosyayı görüntüle @
3242577a
...
...
@@ -1813,6 +1813,8 @@ class URLopener:
urlfile
=
file
if
file
[:
1
]
==
'/'
:
urlfile
=
'file://'
+
file
elif
file
[:
2
]
==
'./'
:
raise
ValueError
(
"local file url may start with / or file:. Unknown url of type:
%
s"
%
url
)
return
addinfourl
(
open
(
localname
,
'rb'
),
headers
,
urlfile
)
raise
URLError
(
'local file error'
,
'not on local host'
)
...
...
Misc/NEWS
Dosyayı görüntüle @
3242577a
...
...
@@ -453,8 +453,7 @@ Core and Builtins
Library
-------
-
Issue
#
2134
:
A
new
attribute
that
specifies
the
exact
type
of
token
.
OP
tokens
has
been
added
to
tokenize
.
TokenInfo
.
- Issue #6631: Disallow relative file paths in urllib urlopen methods.
- Issue #13722: Avoid silencing ImportErrors when initializing the codecs
registry.
...
...
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