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
45ab2339
Kaydet (Commit)
45ab2339
authored
Ock 13, 2006
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bug #1394565: SimpleHTTPServer now doesn't choke on query paramters
any more.
üst
4edd989e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
SimpleHTTPServer.py
Lib/SimpleHTTPServer.py
+3
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/SimpleHTTPServer.py
Dosyayı görüntüle @
45ab2339
...
...
@@ -14,6 +14,7 @@ import os
import
posixpath
import
BaseHTTPServer
import
urllib
import
urlparse
import
cgi
import
shutil
import
mimetypes
...
...
@@ -136,6 +137,8 @@ class SimpleHTTPRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler):
probably be diagnosed.)
"""
# abandon query parameters
path
=
urlparse
.
urlparse
(
path
)[
2
]
path
=
posixpath
.
normpath
(
urllib
.
unquote
(
path
))
words
=
path
.
split
(
'/'
)
words
=
filter
(
None
,
words
)
...
...
Misc/NEWS
Dosyayı görüntüle @
45ab2339
...
...
@@ -335,6 +335,9 @@ Extension Modules
Library
-------
- Bug #1394565: SimpleHTTPServer now doesn'
t
choke
on
query
paramters
any
more
.
-
Bug
#
1403410
:
The
warnings
module
now
doesn
't get confused
when it can'
t
find
out
the
module
name
it
generates
a
warning
for
.
...
...
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