diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-08-24 18:10:20 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-08-24 18:10:20 (GMT) |
commit | 712ee923092ef1b47c72914c5e2950be2f05f527 (patch) | |
tree | 9d6052ea7c1f7dc65c45568f847f762de71f8871 /Misc/NEWS | |
parent | a403e4141afb5dfff41d5844e32d94bc7d341c17 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 ------- |