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
3e1770f5
Kaydet (Commit)
3e1770f5
authored
Tem 26, 2015
tarafından
Robert Collins
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #17527: Add PATCH to wsgiref.validator. Patch from Luca Sbardella.
üst
870db902
f66f4208
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
3 deletions
+7
-3
.hgtags
.hgtags
+1
-0
validate.py
Lib/wsgiref/validate.py
+1
-1
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+4
-2
No files found.
.hgtags
Dosyayı görüntüle @
3e1770f5
...
...
@@ -151,3 +151,4 @@ b4cbecbc0781e89a309d03b60a1f75f8499250e6 v3.4.3
071fefbb5e3db770c6c19fba9994699f121b1cea v3.5.0b1
7a088af5615bf04024e9912068f4bd8f43ed3917 v3.5.0b2
0035fcd9b9243ae52c2e830204fd9c1f7d528534 v3.5.0b3
c0d64105463581f85d0e368e8d6e59b7fd8f12b1 v3.5.0b4
Lib/wsgiref/validate.py
Dosyayı görüntüle @
3e1770f5
...
...
@@ -337,7 +337,7 @@ def check_environ(environ):
# @@: these need filling out:
if
environ
[
'REQUEST_METHOD'
]
not
in
(
'GET'
,
'HEAD'
,
'POST'
,
'OPTIONS'
,
'PUT'
,
'DELETE'
,
'TRACE'
):
'GET'
,
'HEAD'
,
'POST'
,
'OPTIONS'
,
'PATCH'
,
'PUT'
,
'DELETE'
,
'TRACE'
):
warnings
.
warn
(
"Unknown REQUEST_METHOD:
%
r"
%
environ
[
'REQUEST_METHOD'
],
WSGIWarning
)
...
...
Misc/ACKS
Dosyayı görüntüle @
3e1770f5
...
...
@@ -1242,6 +1242,7 @@ Bob Savage
Dave Sawyer
Ben Sayer
sbt
Luca Sbardella
Marco Scataglini
Andrew Schaaf
Michael Scharf
...
...
Misc/NEWS
Dosyayı görüntüle @
3e1770f5
...
...
@@ -13,6 +13,8 @@ Core and Builtins
Library
-------
- Issue #17527: Add PATCH to wsgiref.validator. Patch from Luca Sbardella.
- Issue #13938: 2to3 converts StringTypes to a tuple. Patch from Mark Hammond.
- Issue #2091: open() accepted a '
U
' mode string containing '
+
', but '
U
' can
...
...
@@ -75,8 +77,8 @@ Library
- Issue #24620: Random.setstate() now validates the value of state last element.
- Issue #22485: Fixed an issue that caused `inspect.getsource` to return
incorrect
results on nested functions.
- Issue #22485: Fixed an issue that caused `inspect.getsource` to return
incorrect
results on nested functions.
- Issue #22153: Improve unittest docs. Patch from Martin Panter and evilzero.
...
...
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