diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2015-05-03 12:54:25 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2015-05-03 12:54:25 +1200 |
commit | 3f5ec4b73739340891a727a228cefdac727ec882 (patch) | |
tree | bf652434fa0565c52b5de5829185a9210218141b /libpathod | |
parent | cc434ded897aaa2df23fa0142a7d4a720d757ada (diff) | |
download | mitmproxy-3f5ec4b73739340891a727a228cefdac727ec882.tar.gz mitmproxy-3f5ec4b73739340891a727a228cefdac727ec882.tar.bz2 mitmproxy-3f5ec4b73739340891a727a228cefdac727ec882.zip |
PreValue -> Value
Diffstat (limited to 'libpathod')
-rw-r--r-- | libpathod/language/base.py | 2 | ||||
-rw-r--r-- | libpathod/language/http.py | 10 | ||||
-rw-r--r-- | libpathod/language/websockets.py | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/libpathod/language/base.py b/libpathod/language/base.py index d80eec99..351c9a4b 100644 --- a/libpathod/language/base.py +++ b/libpathod/language/base.py @@ -345,7 +345,7 @@ class Integer(_Component): return self -class PreValue(_Component): +class Value(_Component): """ A value component lead by an optional preamble. """ diff --git a/libpathod/language/http.py b/libpathod/language/http.py index 800d9f08..ba43a367 100644 --- a/libpathod/language/http.py +++ b/libpathod/language/http.py @@ -16,7 +16,7 @@ class Raw(base.CaselessLiteral): TOK = "r" -class Path(base.PreValue): +class Path(base.Value): pass @@ -24,11 +24,11 @@ class Code(base.Integer): pass -class Reason(base.PreValue): +class Reason(base.Value): preamble = "m" -class Body(base.PreValue): +class Body(base.Value): preamble = "b" @@ -60,12 +60,12 @@ class Header(_HeaderMixin, base.KeyValue): preamble = "h" -class ShortcutContentType(_HeaderMixin, base.PreValue): +class ShortcutContentType(_HeaderMixin, base.Value): preamble = "c" key = base.TokValueLiteral("Content-Type") -class ShortcutLocation(_HeaderMixin, base.PreValue): +class ShortcutLocation(_HeaderMixin, base.Value): preamble = "l" key = base.TokValueLiteral("Location") diff --git a/libpathod/language/websockets.py b/libpathod/language/websockets.py index 728edff7..ae755f30 100644 --- a/libpathod/language/websockets.py +++ b/libpathod/language/websockets.py @@ -17,7 +17,7 @@ class WF(base.CaselessLiteral): TOK = "wf" -class Body(base.PreValue): +class Body(base.Value): preamble = "b" |