class documentation

class RegexValidator:

Known subclasses: django.contrib.auth.validators.ASCIIUsernameValidator, django.contrib.auth.validators.UnicodeUsernameValidator, django.core.validators.URLValidator

View In Hierarchy

Undocumented

Instance Variable code Undocumented
Instance Variable flags Undocumented
Instance Variable inverse​_match Undocumented
Instance Variable message Undocumented
Instance Variable regex Undocumented
Method __call__ Validate that the input contains (or does not contain, if inverse_match is True) a match for the regular expression.
Method __eq__ Undocumented
Method __init__ Undocumented
code =

Undocumented

inverse_match =

Undocumented

def __call__(self, value):
Validate that the input contains (or does not contain, if inverse_match is True) a match for the regular expression.
def __eq__(self, other):

Undocumented

def __init__(self, regex=None, message=None, code=None, inverse_match=None, flags=None):

Undocumented