changeset: 97080:1a5b3dbafcca branch: 3.4 parent: 97069:b3d0bf112f70 user: Robert Collins date: Mon Jul 27 10:42:01 2015 +1200 files: Lib/wsgiref/validate.py Misc/ACKS Misc/NEWS description: Issue #17527: Add PATCH to wsgiref.validator. Patch from Luca Sbardella. diff -r b3d0bf112f70 -r 1a5b3dbafcca Lib/wsgiref/validate.py --- a/Lib/wsgiref/validate.py Sun Jul 26 09:01:22 2015 +0300 +++ b/Lib/wsgiref/validate.py Mon Jul 27 10:42:01 2015 +1200 @@ -337,7 +337,7 @@ # @@: 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) diff -r b3d0bf112f70 -r 1a5b3dbafcca Misc/ACKS --- a/Misc/ACKS Sun Jul 26 09:01:22 2015 +0300 +++ b/Misc/ACKS Mon Jul 27 10:42:01 2015 +1200 @@ -1207,6 +1207,7 @@ Dave Sawyer Ben Sayer sbt +Luca Sbardella Marco Scataglini Andrew Schaaf Michael Scharf diff -r b3d0bf112f70 -r 1a5b3dbafcca Misc/NEWS --- a/Misc/NEWS Sun Jul 26 09:01:22 2015 +0300 +++ b/Misc/NEWS Mon Jul 27 10:42:01 2015 +1200 @@ -66,6 +66,8 @@ 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.