Override this method for additional preprocessing of each rule. :arg Rule rule: a rule to be processed. :returns: the same or modified Rule instance.
(self, rule: "Rule")
| 348 | self.rules.append(self.process_rule(rule)) |
| 349 | |
| 350 | def process_rule(self, rule: "Rule") -> "Rule": |
| 351 | """Override this method for additional preprocessing of each rule. |
| 352 | |
| 353 | :arg Rule rule: a rule to be processed. |
| 354 | :returns: the same or modified Rule instance. |
| 355 | """ |
| 356 | return rule |
| 357 | |
| 358 | def find_handler( |
| 359 | self, request: httputil.HTTPServerRequest, **kwargs: Any |
no outgoing calls
no test coverage detected