Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
f66f4208
Commit
f66f4208
authored
Jul 27, 2015
by
Robert Collins
Browse files
Options
Browse Files
Download
Plain Diff
Issue #17527: Add PATCH to wsgiref.validator. Patch from Luca Sbardella.
parents
71427eea
ddc7440b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
1 deletion
+4
-1
Lib/wsgiref/validate.py
Lib/wsgiref/validate.py
+1
-1
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/wsgiref/validate.py
View file @
f66f4208
...
...
@@ -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
View file @
f66f4208
...
...
@@ -1242,6 +1242,7 @@ Bob Savage
Dave Sawyer
Ben Sayer
sbt
Luca Sbardella
Marco Scataglini
Andrew Schaaf
Michael Scharf
...
...
Misc/NEWS
View file @
f66f4208
...
...
@@ -13,6 +13,8 @@ Core and Builtins
Library
-------
- Issue #17527: Add PATCH to wsgiref.validator. Patch from Luca Sbardella.
What'
s
New
in
Python
3.5.0
beta
4
?
==================================
...
...
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