From 5b94b17feff15a9f0345f92fc0568bfe7038e3a3 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 13 Jan 2016 19:02:39 -0500 Subject: Fixed #25999 -- Removed promotion of RemovedInNextVersionWarning to loud by default. --- docs/internals/release-process.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'docs/internals') diff --git a/docs/internals/release-process.txt b/docs/internals/release-process.txt index 7ca2e452a5..2c05f909d9 100644 --- a/docs/internals/release-process.txt +++ b/docs/internals/release-process.txt @@ -92,16 +92,16 @@ So, for example, if we decided to start the deprecation of a function in Django 4.2: * Django 4.2 will contain a backwards-compatible replica of the function which - will raise a ``RemovedInDjango51Warning``. This warning is silent by - default; you can turn on display of these warnings with the ``-Wd`` option - of Python. + will raise a ``RemovedInDjango51Warning``. * Django 5.0 (the version that follows 4.2) will still contain the - backwards-compatible replica. This warning becomes *loud* by default and - will likely be quite annoying. + backwards-compatible replica. * Django 5.1 will remove the feature outright. +The warnings are silent by default. You can turn on display of these warnings +with the ``python -Wd`` option. + A more generic example: * X.0 -- cgit v1.3