summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdam Johnson <me@adamj.eu>2025-09-23 17:28:38 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2025-09-24 13:06:17 +0200
commitf39eb730fb895767f2c5a80999d945be26e36263 (patch)
treeea2d5034f3335730dd93f6680753bf716848f48b /docs
parentda914cd12ee07764255b3db22c6b8fee5a5bf3bf (diff)
[6.0.x] Refs #36163 -- Removed duplicated release note paragraph.
Backport of 2e870c60718888067249f7f2c2e40e8eac3d13bc from main
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/6.0.txt6
1 files changed, 1 insertions, 5 deletions
diff --git a/docs/releases/6.0.txt b/docs/releases/6.0.txt
index e1cdc7fc67..7fb4da9d19 100644
--- a/docs/releases/6.0.txt
+++ b/docs/releases/6.0.txt
@@ -492,7 +492,7 @@ Positional arguments in ``django.core.mail`` APIs
:mod:`django.core.mail` APIs now require keyword arguments for less commonly
used parameters. Using positional arguments for these now emits a deprecation
-warning and will raise a :exc:`TypeError` when the deprecation period ends.
+warning and will raise a :exc:`TypeError` when the deprecation period ends:
* All *optional* parameters (``fail_silently`` and later) must be passed as
keyword arguments to :func:`get_connection`, :func:`mail_admins`,
@@ -503,10 +503,6 @@ warning and will raise a :exc:`TypeError` when the deprecation period ends.
the first four (``subject``, ``body``, ``from_email``, and ``to``), which may
still be passed either as positional or keyword arguments.
-* :mod:`django.core.mail` APIs now require keyword arguments for less commonly
- used parameters. Using positional arguments for these now emits a deprecation
- warning and will raise a :exc:`TypeError` when the deprecation period ends:
-
Miscellaneous
-------------