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
ddc7440b
Commit
ddc7440b
authored
Jul 27, 2015
by
Robert Collins
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #17527: Add PATCH to wsgiref.validator. Patch from Luca Sbardella.
parent
83236f7a
Changes
3
Show 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 @
ddc7440b
...
...
@@ -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 @
ddc7440b
...
...
@@ -1207,6 +1207,7 @@ Bob Savage
Dave Sawyer
Ben Sayer
sbt
Luca Sbardella
Marco Scataglini
Andrew Schaaf
Michael Scharf
...
...
Misc/NEWS
View file @
ddc7440b
...
...
@@ -66,6 +66,8 @@ Core and Builtins
Library
-------
-
Issue
#
17527
:
Add
PATCH
to
wsgiref
.
validator
.
Patch
from
Luca
Sbardella
.
-
Issue
#
24683
:
Fixed
crashes
in
_json
functions
called
with
arguments
of
inappropriate
type
.
...
...
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