summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/utils.txt14
-rw-r--r--docs/releases/3.0.txt2
2 files changed, 2 insertions, 14 deletions
diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt
index 6a7d4b6549..84cffddde0 100644
--- a/docs/ref/utils.txt
+++ b/docs/ref/utils.txt
@@ -700,20 +700,6 @@ escaping HTML.
A version of Python's :func:`urllib.parse.urlencode` function that can
operate on ``MultiValueDict`` and non-string values.
-.. function:: cookie_date(epoch_seconds=None)
-
- .. deprecated:: 2.1
-
- Use :func:`http_date` instead, which follows the latest RFC.
-
- Formats the time to ensure compatibility with Netscape's cookie standard.
-
- Accepts a floating point number expressed in seconds since the epoch in
- UTC--such as that outputted by ``time.time()``. If set to ``None``,
- defaults to the current time.
-
- Outputs a string in the format ``Wdy, DD-Mon-YYYY HH:MM:SS GMT``.
-
.. function:: http_date(epoch_seconds=None)
Formats the time to match the :rfc:`1123` date format as specified by HTTP
diff --git a/docs/releases/3.0.txt b/docs/releases/3.0.txt
index ac7c3d0638..99db02a0aa 100644
--- a/docs/releases/3.0.txt
+++ b/docs/releases/3.0.txt
@@ -254,3 +254,5 @@ See :ref:`deprecated-features-2.1` for details on these changes, including how
to remove usage of these features.
* The ``ForceRHR`` GIS function is removed.
+
+* ``django.utils.http.cookie_date()`` is removed.