changeset: 97082:d8d148624004 parent: 97073:7bf3d91f8d6c parent: 97081:cb0c56f87a47 user: Robert Collins date: Mon Jul 27 10:46:42 2015 +1200 files: Include/patchlevel.h Lib/pydoc_data/topics.py Misc/ACKS Misc/NEWS README description: Issue #17527: Add PATCH to wsgiref.validator. Patch from Luca Sbardella. diff -r 7bf3d91f8d6c -r d8d148624004 .hgtags --- a/.hgtags Sun Jul 26 13:11:49 2015 +0200 +++ b/.hgtags Mon Jul 27 10:46:42 2015 +1200 @@ -151,3 +151,4 @@ 071fefbb5e3db770c6c19fba9994699f121b1cea v3.5.0b1 7a088af5615bf04024e9912068f4bd8f43ed3917 v3.5.0b2 0035fcd9b9243ae52c2e830204fd9c1f7d528534 v3.5.0b3 +c0d64105463581f85d0e368e8d6e59b7fd8f12b1 v3.5.0b4 diff -r 7bf3d91f8d6c -r d8d148624004 Lib/wsgiref/validate.py --- a/Lib/wsgiref/validate.py Sun Jul 26 13:11:49 2015 +0200 +++ b/Lib/wsgiref/validate.py Mon Jul 27 10:46:42 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 7bf3d91f8d6c -r d8d148624004 Misc/ACKS --- a/Misc/ACKS Sun Jul 26 13:11:49 2015 +0200 +++ b/Misc/ACKS Mon Jul 27 10:46:42 2015 +1200 @@ -1242,6 +1242,7 @@ Dave Sawyer Ben Sayer sbt +Luca Sbardella Marco Scataglini Andrew Schaaf Michael Scharf diff -r 7bf3d91f8d6c -r d8d148624004 Misc/NEWS --- a/Misc/NEWS Sun Jul 26 13:11:49 2015 +0200 +++ b/Misc/NEWS Mon Jul 27 10:46:42 2015 +1200 @@ -13,6 +13,8 @@ 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 @@ - 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.