File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 11"""
22this is the client api it's mostly sugar
33"""
4- import filters
4+ from . import filters
55from webob .client import send_request_app
66from urllib import urlencode
77from webob import Request
Original file line number Diff line number Diff line change 33"""
44from webob import Request
55from cookielib import CookieJar
6- import log as l
6+ from . import log as l
77import logging
88
99
Original file line number Diff line number Diff line change 11"""
22shared stuff to keep logging consistent
33"""
4- from constants import PAD
4+ from . constants import PAD
55
66
77def HTTP_MSG (h ):
Original file line number Diff line number Diff line change 88
99>>> assert_status_code._200(request, response)
1010"""
11- from constants import STATUS_CODES
12- from log import PRINT_REQ , PRINT_RES
13- from client import Client , client_pipeline
14- from filters import auto_redirect_filter
11+ from . constants import STATUS_CODES
12+ from . log import PRINT_REQ , PRINT_RES
13+ from . client import Client , client_pipeline
14+ from . filters import auto_redirect_filter
1515
1616
1717def _status_code_err_msg (request , response , expected ):
You can’t perform that action at this time.
0 commit comments