[Python-checkins] cpython: Remove __getslice__, __setslice__, __delslice__ methods from proxies

richard.oudkerk python-checkins at python.org
Tue May 29 13:03:12 CEST 2012


http://hg.python.org/cpython/rev/1f7c452e797e
changeset:   77220:1f7c452e797e
user:        Richard Oudkerk <shibturn at gmail.com>
date:        Tue May 29 12:01:45 2012 +0100
summary:
  Remove __getslice__, __setslice__, __delslice__ methods from proxies

Proxy classes in multiprocessing do not need these methods in Python 3.x.

files:
  Lib/multiprocessing/managers.py |  11 +++++------
  1 files changed, 5 insertions(+), 6 deletions(-)


diff --git a/Lib/multiprocessing/managers.py b/Lib/multiprocessing/managers.py
--- a/Lib/multiprocessing/managers.py
+++ b/Lib/multiprocessing/managers.py
@@ -1035,12 +1035,11 @@
 
 
 BaseListProxy = MakeProxyType('BaseListProxy', (
-    '__add__', '__contains__', '__delitem__', '__delslice__',
-    '__getitem__', '__getslice__', '__len__', '__mul__',
-    '__reversed__', '__rmul__', '__setitem__', '__setslice__',
+    '__add__', '__contains__', '__delitem__', '__getitem__', '__len__',
+    '__mul__', '__reversed__', '__rmul__', '__setitem__',
     'append', 'count', 'extend', 'index', 'insert', 'pop', 'remove',
     'reverse', 'sort', '__imul__'
-    ))                  # XXX __getslice__ and __setslice__ unneeded in Py3.0
+    ))
 class ListProxy(BaseListProxy):
     def __iadd__(self, value):
         self._callmethod('extend', (value,))
@@ -1058,8 +1057,8 @@
 
 
 ArrayProxy = MakeProxyType('ArrayProxy', (
-    '__len__', '__getitem__', '__setitem__', '__getslice__', '__setslice__'
-    ))                  # XXX __getslice__ and __setslice__ unneeded in Py3.0
+    '__len__', '__getitem__', '__setitem__'
+    ))
 
 
 PoolProxy = MakeProxyType('PoolProxy', (

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list