summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-08-24 18:10:20 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-08-24 18:10:20 (GMT)
commit712ee923092ef1b47c72914c5e2950be2f05f527 (patch)
tree9d6052ea7c1f7dc65c45568f847f762de71f8871 /Misc/NEWS
parenta403e4141afb5dfff41d5844e32d94bc7d341c17 (diff)
downloadcpython-712ee923092ef1b47c72914c5e2950be2f05f527.zip
cpython-712ee923092ef1b47c72914c5e2950be2f05f527.tar.gz
cpython-712ee923092ef1b47c72914c5e2950be2f05f527.tar.bz2
generate py3k warnings on __getslice__, __delslice__, and __setslice__
Reviewer: Brett Cannon
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9c07eee..ff754df 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -26,6 +26,9 @@ Core and Builtins
- Silenced another compiler warning about a used but not defined
function 'stringlib_contains_obj'.
+- Added warnings on the use of ``__getslice__``, ``__setslice__``, or
+ ``__delslice__``.
+
Library
-------