From 3f5ec4b73739340891a727a228cefdac727ec882 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Sun, 3 May 2015 12:54:25 +1200 Subject: PreValue -> Value --- libpathod/language/http.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libpathod/language/http.py') 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") -- cgit v1.2.3