File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ def rewrite_rules(self):
101
101
The value of the rewrite rules should be a list of sublists (or tuples)
102
102
with each sublist containing the pattern and replacement.
103
103
104
- For example :
104
+ i.e :
105
105
rewrite_rules = [
106
106
('pattern', 'replacement'),
107
107
('pattern', 'replacement'),
@@ -119,7 +119,7 @@ def rewrite_rules(self):
119
119
120
120
121
121
class Request :
122
- """An HTTP request made by the browser to the server ."""
122
+ """Represents a captured browser request ."""
123
123
124
124
def __init__ (self , data , client ):
125
125
"""Initialises a new Request object with a dictionary of data and a
@@ -164,7 +164,7 @@ def __str__(self):
164
164
165
165
166
166
class Response :
167
- """An HTTP response returned from the server to the browser ."""
167
+ """Represents a captured server response associated with a previous request ."""
168
168
169
169
def __init__ (self , request_id , data , client ):
170
170
"""Initialise a new Response object with a request id, a dictionary
You can’t perform that action at this time.
0 commit comments