Added new tests, new request logic, and handler file

Added new tests for alternate uses for alternate range request types.

Changed error handlnig for new request logic that simplifies the integration logic

Moved the error handler and the content range handler to their own handler file to prevent circular imports.
This commit is contained in:
Kyle Blöm 2017-01-30 09:13:43 -08:00
parent bb05413a92
commit 5135c717f2

View File

@ -10,6 +10,7 @@ from .config import Config
from .handlers import ErrorHandler from .handlers import ErrorHandler
from .constants import HTTP_METHODS from .constants import HTTP_METHODS
from .exceptions import ServerError from .exceptions import ServerError
from .handlers import ErrorHandler
from .log import log from .log import log
from .response import HTTPResponse from .response import HTTPResponse
from .router import Router from .router import Router