diff options
author | MojoVampire <shadowranger+github@gmail.com> | 2020-03-03 18:50:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-03 18:50:17 (GMT) |
commit | 469325c30e147680543b2f5118b83fd95055a499 (patch) | |
tree | c10fd8f26059cb0e6caef9a7c081d324e4146969 /Misc | |
parent | ae75a294352e9b9487f5dc8e88f068e7e6974dc2 (diff) | |
download | cpython-469325c30e147680543b2f5118b83fd95055a499.zip cpython-469325c30e147680543b2f5118b83fd95055a499.tar.gz cpython-469325c30e147680543b2f5118b83fd95055a499.tar.bz2 |
bpo-35712: Make using NotImplemented in a boolean context issue a deprecation warning (GH-13195)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2019-05-08-11-11-45.bpo-35712.KJthus.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-05-08-11-11-45.bpo-35712.KJthus.rst b/Misc/NEWS.d/next/Core and Builtins/2019-05-08-11-11-45.bpo-35712.KJthus.rst new file mode 100644 index 0000000..3a68632 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2019-05-08-11-11-45.bpo-35712.KJthus.rst @@ -0,0 +1,2 @@ +Using :data:`NotImplemented` in a boolean context has been deprecated. Patch +contributed by Josh Rosenberg. |