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
168456df
Kaydet (Commit)
168456df
authored
Tem 09, 2012
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
revert the changes done for issue14826 - quoting witin Request is not desirable.
üst
83efd6cb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
11 deletions
+0
-11
test_urllib.py
Lib/test/test_urllib.py
+0
-5
request.py
Lib/urllib/request.py
+0
-1
NEWS
Misc/NEWS
+0
-5
No files found.
Lib/test/test_urllib.py
Dosyayı görüntüle @
168456df
...
...
@@ -1246,11 +1246,6 @@ class URLopener_Tests(unittest.TestCase):
# ftp.close()
def
test_quote_url
(
self
):
Request
=
urllib
.
request
.
Request
request
=
Request
(
"http://www.python.org/foo bar"
)
self
.
assertEqual
(
request
.
full_url
,
"http://www.python.org/foo
%20
bar"
)
def
test_main
():
support
.
run_unittest
(
...
...
Lib/urllib/request.py
Dosyayı görüntüle @
168456df
...
...
@@ -181,7 +181,6 @@ class Request:
origin_req_host
=
None
,
unverifiable
=
False
):
# unwrap('<URL:type://host/path>') --> 'type://host/path'
self
.
full_url
=
unwrap
(
url
)
self
.
full_url
=
quote
(
self
.
full_url
,
safe
=
"
%
/:=&?~#+!$,;'@()*[]|"
)
self
.
full_url
,
self
.
fragment
=
splittag
(
self
.
full_url
)
self
.
data
=
data
self
.
headers
=
{}
...
...
Misc/NEWS
Dosyayı görüntüle @
168456df
...
...
@@ -87,11 +87,6 @@ Core and Builtins
Library
-------
- Issue #14826: Quote urls in urllib.request.Request similar to how they are
quoted by urllib.request.URLopener. Allows urls to spaces in them to work
transparently with urllib.request.urlopen(...). Patch contributed by Stephen
Thorne.
- Issue #14990: Correctly fail with SyntaxError on invalid encoding
declaration.
...
...
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