Lines Matching defs:schemes
869 #: Sequence of allowed URI schemes. If not set, all schemes are allowed.
870 schemes = None
880 schemes=None):
941 :param schemes:
942 A sequence of URI schemes, e.g., ``['http']`` or ``['https']``.
943 If set, the route will only match requests with these schemes.
949 self.schemes = schemes
978 if not match or self.schemes and request.scheme not in self.schemes: