diff --git a/django/core/validators.py b/django/core/validators.py index 4a5835dbb0..c588603938 100644 --- a/django/core/validators.py +++ b/django/core/validators.py @@ -272,6 +272,8 @@ validate_unicode_slug = RegexValidator( def validate_ipv4_address(value): + if isinstance(value, ipaddress.IPv4Address): + return try: ipaddress.IPv4Address(value) except ValueError: