/external/python/cpython2/Lib/test/ |
D | test_class.py | 327 setslice = AllTests.__setslice__ 328 del AllTests.__setslice__ 349 AllTests.__setslice__ = setslice
|
D | test_slice.py | 117 def __setslice__(self, i, j, k): member in SliceTest.test_setslice_without_getslice.X
|
D | test_py3kwarn.py | 214 def __setslice__(self, i, j, what): pass member in TestPy3KWarnings.test_slice_methods.Spam 218 def __setslice__(self, i, j, what): pass member in TestPy3KWarnings.test_slice_methods.Egg
|
D | list_tests.py | 186 self.assertRaises(TypeError, a.__setslice__, 0, 1, 5) 189 self.assertRaises(TypeError, a.__setslice__)
|
D | test_array.py | 632 self.assertRaises(TypeError, a.__setslice__, 0, 0, None) 637 self.assertRaises(TypeError, a.__setslice__, 0, 0, b)
|
D | test_descr.py | 1764 def __setslice__(self, i, j, value): member in ClassPropertiesAndMethods.test_overloading.C 4715 def __setslice__(self, start, stop, value): member in ClassPropertiesAndMethods.test_assign_slice.C
|
/external/python/cpython2/Lib/ |
D | UserList.py | 37 def __setslice__(self, i, j, other): member in UserList
|
D | UserString.py | 193 def __setslice__(self, start, end, sub): member in MutableString
|
/external/python/cpython2/Lib/multiprocessing/ |
D | sharedctypes.py | 261 def __setslice__(self, start, stop, values): member in SynchronizedArray
|
/external/python/cpython3/Lib/multiprocessing/ |
D | sharedctypes.py | 233 def __setslice__(self, start, stop, values): member in SynchronizedArray
|
/external/protobuf/python/google/protobuf/internal/ |
D | containers.py | 309 self.__setslice__(key.start, key.stop, value) 318 def __setslice__(self, start, stop, values): member in RepeatedScalarFieldContainer
|
/external/python/cpython2/Demo/classes/ |
D | bitvec.py | 237 def __setslice__(self, i, j, sequence, *rest): member in BitVec
|
/external/python/apitools/apitools/base/protorpclite/ |
D | messages.py | 1127 def __setslice__(self, i, j, sequence): member in FieldList 1130 list.__setslice__(self, i, j, sequence)
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.6rc1.rst | 140 Added warnings on the use of ``__getslice__``, ``__setslice__``, or
|
/external/python/cpython2/Modules/ |
D | operator.c | 436 spam2(setslice,__setslice__,
|
/external/tensorflow/tensorflow/python/training/tracking/ |
D | data_structures.py | 659 def __setslice__(self, i, j, y): member in ListWrapper
|
/external/python/cpython2/Doc/library/ |
D | operator.rst | 293 __setslice__(a, b, c, v)
|
/external/python/cpython2/Doc/faq/ |
D | general.rst | 425 '__setattr__', '__setitem__', '__setslice__', '__sizeof__', '__str__',
|
/external/python/cpython2/Doc/reference/ |
D | datamodel.rst | 2018 .. method:: object.__setslice__(self, i, j, sequence) 2023 This method is deprecated. If no :meth:`__setslice__` is found, or for extended 2025 :meth:`__setitem__`, instead of :meth:`__setslice__` being called. 2061 def __setslice__(self, i, j, seq):
|
/external/python/cpython2/Doc/ |
D | glossary.rst | 698 versions, :meth:`__getslice__` and :meth:`__setslice__`).
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.0.rst | 767 * :meth:`__getslice__`, :meth:`__setslice__` and :meth:`__delslice__`
|
/external/protobuf/ |
D | CHANGES.txt | 1824 * Support iterators in extend and __setslice__ for containers.
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 1219 s[i:j]=seq = __setslice__(s,i,j,seq)
|
D | HISTORY | 6888 '__rmul__', '__setattr__', '__setitem__', '__setslice__', '__str__',
|
/external/python/cpython3/Misc/ |
D | HISTORY | 24267 '__rmul__', '__setattr__', '__setitem__', '__setslice__', '__str__',
|