summaryrefslogtreecommitdiff
path: root/docs/howto
diff options
context:
space:
mode:
Diffstat (limited to 'docs/howto')
-rw-r--r--docs/howto/custom-management-commands.txt4
-rw-r--r--docs/howto/error-reporting.txt6
2 files changed, 0 insertions, 10 deletions
diff --git a/docs/howto/custom-management-commands.txt b/docs/howto/custom-management-commands.txt
index 56db507689..5d1a8ddd2d 100644
--- a/docs/howto/custom-management-commands.txt
+++ b/docs/howto/custom-management-commands.txt
@@ -364,7 +364,3 @@ the management command to exit with, using :func:`sys.exit`.
If a management command is called from code through
:func:`~django.core.management.call_command`, it's up to you to catch the
exception when needed.
-
-.. versionchanged:: 3.1
-
- The ``returncode`` argument was added.
diff --git a/docs/howto/error-reporting.txt b/docs/howto/error-reporting.txt
index e2dbe7ca27..1122f47b1b 100644
--- a/docs/howto/error-reporting.txt
+++ b/docs/howto/error-reporting.txt
@@ -269,16 +269,12 @@ following attributes and methods:
.. attribute:: cleansed_substitute
- .. versionadded:: 3.1
-
The string value to replace sensitive value with. By default it
replaces the values of sensitive variables with stars
(``**********``).
.. attribute:: hidden_settings
- .. versionadded:: 3.1
-
A compiled regular expression object used to match settings and
``request.META`` values considered as sensitive. By default equivalent
to::
@@ -307,8 +303,6 @@ following attributes and methods:
traceback frame. Sensitive values are replaced with
:attr:`cleansed_substitute`.
-.. versionadded:: 3.1
-
If you need to customize error reports beyond filtering you may specify a
custom error reporter class by defining the
:setting:`DEFAULT_EXCEPTION_REPORTER` setting::