Home
last modified time | relevance | path

Searched refs:__getslice__ (Results 1 – 25 of 38) sorted by relevance

12

/external/python/cpython2/Lib/test/
Dtest_index.py206 def __getslice__(self, i, j): member in _GetSliceMixin
207 return self._list.__getslice__(i, j)
279 def __getslice__(self, i, j): member in OverflowTestCase._getslice_helper_deprecated.GetItem
Dtest_class.py325 getslice = AllTests.__getslice__
326 del AllTests.__getslice__
348 AllTests.__getslice__ = getslice
Dtest_py3kwarn.py213 def __getslice__(self, i, j): pass member in TestPy3KWarnings.test_slice_methods.Spam
217 def __getslice__(self, i, h): pass member in TestPy3KWarnings.test_slice_methods.Egg
Dseq_tests.py212 self.assertRaises(TypeError, u.__getslice__)
Dtest_long.py628 def __getslice__(self, i, j): member in LongTest.test_misc.X
/external/chromium-trace/catapult/third_party/pyserial/serial/
Dserialutil.py35 def __getslice__(self, i, j): member in bytearray
36 return bytearray(list.__getslice__(self, i, j))
/external/python/cpython2/Lib/
DUserList.py34 def __getslice__(self, i, j): member in UserList
DUserString.py39 def __getslice__(self, start, end): member in UserString
/external/python/cpython2/Doc/library/
Dmodulefinder.rst109 sre_parse: __getslice__,_PATTERNENDERS,SRE_FLAG_UNICODE
Doperator.rst255 __getslice__(a, b, c)
/external/libchrome/third_party/markupsafe/
D__init__.py198 __getslice__ = make_wrapper('__getslice__') variable in Markup
/external/python/cpython2/Lib/multiprocessing/
Dsharedctypes.py254 def __getslice__(self, start, stop): member in SynchronizedArray
/external/python/cpython3/Lib/multiprocessing/
Dsharedctypes.py229 def __getslice__(self, start, stop): member in SynchronizedArray
/external/protobuf/python/google/protobuf/internal/
Dcontainers.py314 def __getslice__(self, start, stop): member in RepeatedScalarFieldContainer
432 def __getslice__(self, start, stop): member in RepeatedCompositeFieldContainer
/external/scapy/scapy/
Dplist.py89 def __getslice__(self, *args, **kargs): member in PacketList
90 return self.__class__(self.res.__getslice__(*args, **kargs),
/external/python/cpython2/Demo/classes/
Dbitvec.py221 def __getslice__(self, i, j): member in BitVec
/external/python/cpython2/Lib/idlelib/idle_test/
Dtest_io.py18 def __getslice__(self, *args): member in Base
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_run.py53 def __getslice__(self, *args): member in S
/external/python/cpython2/Misc/NEWS.d/
D2.6rc1.rst140 Added warnings on the use of ``__getslice__``, ``__setslice__``, or
D2.6a2.rst151 Raise a Py3K warning for __getitem__ or __getslice__ on exception instances.
/external/python/cpython2/Modules/
Doperator.c434 spam2(getslice,__getslice__,
/external/python/cpython2/Doc/tools/
Dsusp-ignored.csv82 library/multiprocessing,,`,">>> l._callmethod('__getslice__', (2, 7)) # equiv to `l[2:7]`"
/external/tensorflow/tensorflow/python/training/tracking/
Ddata_structures.py414 def __getslice__(self, i, j): member in List
/external/python/cpython2/Doc/reference/
Ddatamodel.rst1857 range of items. (For backwards compatibility, the method :meth:`__getslice__`
1996 :meth:`__getslice__`; mutable sequences might define all three methods.
1999 .. method:: object.__getslice__(self, i, j)
2004 :meth:`__getslice__`. Therefore, you have to override it in derived
2014 length of the sequence are not modified. If no :meth:`__getslice__` is found,
2021 for :meth:`__getslice__`.
2031 :meth:`__getslice__`. This method is deprecated. If no :meth:`__delslice__` is
2059 def __getslice__(self, i, j):
/external/python/cpython2/Doc/faq/
Dgeneral.rst421 '__getattribute__', '__getitem__', '__getslice__', '__gt__',

12