/external/python/cpython2/Lib/test/ |
D | test_class.py | 329 delslice = AllTests.__delslice__ 330 del AllTests.__delslice__ 350 AllTests.__delslice__ = delslice
|
D | test_py3kwarn.py | 215 def __delslice__(self, i, j): pass member in TestPy3KWarnings.test_slice_methods.Spam 219 def __delslice__(self, i, j): pass member in TestPy3KWarnings.test_slice_methods.Egg
|
D | test_descr.py | 1766 def __delslice__(self, i, j): member in ClassPropertiesAndMethods.test_overloading.C
|
/external/python/cpython2/Lib/ |
D | UserList.py | 45 def __delslice__(self, i, j): member in UserList
|
D | UserString.py | 201 def __delslice__(self, start, end): member in MutableString
|
/external/protobuf/python/google/protobuf/internal/ |
D | containers.py | 331 def __delslice__(self, start, stop): member in RepeatedScalarFieldContainer 441 def __delslice__(self, start, stop): member in RepeatedCompositeFieldContainer
|
/external/python/cpython2/Demo/classes/ |
D | bitvec.py | 250 def __delslice__(self, i, j): member in BitVec
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.6rc1.rst | 141 ``__delslice__``.
|
/external/python/cpython2/Modules/ |
D | operator.c | 438 spam2(delslice,__delslice__,
|
/external/tensorflow/tensorflow/python/training/tracking/ |
D | data_structures.py | 662 def __delslice__(self, i, j): member in ListWrapper
|
/external/python/cpython2/Doc/library/ |
D | operator.rst | 239 __delslice__(a, b, c)
|
/external/python/cpython2/Doc/faq/ |
D | general.rst | 420 '__delslice__', '__doc__', '__eq__', '__format__', '__ge__',
|
/external/python/cpython2/Doc/reference/ |
D | datamodel.rst | 2028 .. method:: object.__delslice__(self, i, j) 2031 :meth:`__getslice__`. This method is deprecated. If no :meth:`__delslice__` is 2033 created, and passed to :meth:`__delitem__`, instead of :meth:`__delslice__` 2063 def __delslice__(self, i, j):
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.0.rst | 767 * :meth:`__getslice__`, :meth:`__setslice__` and :meth:`__delslice__`
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 1220 del s[i:j] = __delslice__(s,i,j) == s[i:j] = []
|