diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2015-05-03 13:54:52 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2015-05-03 13:54:52 +1200 |
commit | 5b6d3a80bbb57faa1de1cc7730d28b0678b0bdee (patch) | |
tree | 0f22273c92b0bd89464d66ef49c510aa33273344 /libpathod/language/http.py | |
parent | 67d2993339cb81ff61509c57807df77dde436a3d (diff) | |
download | mitmproxy-5b6d3a80bbb57faa1de1cc7730d28b0678b0bdee.tar.gz mitmproxy-5b6d3a80bbb57faa1de1cc7730d28b0678b0bdee.tar.bz2 mitmproxy-5b6d3a80bbb57faa1de1cc7730d28b0678b0bdee.zip |
websockets: code specification
Diffstat (limited to 'libpathod/language/http.py')
-rw-r--r-- | libpathod/language/http.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libpathod/language/http.py b/libpathod/language/http.py index ba43a367..94de7237 100644 --- a/libpathod/language/http.py +++ b/libpathod/language/http.py @@ -34,14 +34,14 @@ class Body(base.Value): class Method(base.OptionsOrValue): options = [ - "get", - "head", - "post", - "put", - "delete", - "options", - "trace", - "connect", + "GET", + "HEAD", + "POST", + "PUT", + "DELETE", + "OPTIONS", + "TRACE", + "CONNECT", ] |