From a1de9ba9bea5002b307aa0282fa0efd9b4c5b10e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Lafr=C3=A9choux?= Date: Fri, 25 Oct 2024 00:39:58 +0200 Subject: [PATCH] Document "absolute" URL field parameter --- src/marshmallow/fields.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/marshmallow/fields.py b/src/marshmallow/fields.py index f366b83d4..e83ba198e 100644 --- a/src/marshmallow/fields.py +++ b/src/marshmallow/fields.py @@ -1692,6 +1692,7 @@ class Url(String): :param default: Default value for the field if the attribute is not set. :param relative: Whether to allow relative URLs. + :param absolute: Whether to allow absolute URLs. :param require_tld: Whether to reject non-FQDN hostnames. :param schemes: Valid schemes. By default, ``http``, ``https``, ``ftp``, and ``ftps`` are allowed.