diff options
author | Inada Naoki <songofacandy@gmail.com> | 2019-04-05 08:54:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-05 08:54:24 (GMT) |
commit | 176d26364bb67801fa522f52f20cbe44420d6942 (patch) | |
tree | fce0e97e857806e6e2f95573a00aef4b61baebdc /Doc/library/exceptions.rst | |
parent | 2a4ce4387ff3e2b41c474e2b0522c8164162cafb (diff) | |
download | cpython-176d26364bb67801fa522f52f20cbe44420d6942.zip cpython-176d26364bb67801fa522f52f20cbe44420d6942.tar.gz cpython-176d26364bb67801fa522f52f20cbe44420d6942.tar.bz2 |
bpo-36404: recommend DeprecationWarning over PendingDeprecationWarning (GH-12505)
Diffstat (limited to 'Doc/library/exceptions.rst')
-rw-r--r-- | Doc/library/exceptions.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst index 57ed291..2509380 100644 --- a/Doc/library/exceptions.rst +++ b/Doc/library/exceptions.rst @@ -694,6 +694,14 @@ The following exceptions are used as warning categories; see the Base class for warnings about features which will be deprecated in the future. + .. note:: + PendingDeprecationWarning was introduced as an "ignored by default" + version of DeprecationWarning. But :exc:`DeprecationWarning` is also + ignored by default since Python 2.7 and 3.2. + There is not much difference between PendingDeprecationWarning and + DeprecationWarning nowadays. DeprecationWarning is recommended + in general. + .. exception:: SyntaxWarning |