/external/python/cpython2/Lib/test/ |
D | test_index.py | 206 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
|
D | test_class.py | 325 getslice = AllTests.__getslice__ 326 del AllTests.__getslice__ 348 AllTests.__getslice__ = getslice
|
D | test_py3kwarn.py | 213 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
|
D | seq_tests.py | 212 self.assertRaises(TypeError, u.__getslice__)
|
D | test_long.py | 628 def __getslice__(self, i, j): member in LongTest.test_misc.X
|
/external/chromium-trace/catapult/third_party/pyserial/serial/ |
D | serialutil.py | 35 def __getslice__(self, i, j): member in bytearray 36 return bytearray(list.__getslice__(self, i, j))
|
/external/python/cpython2/Lib/ |
D | UserList.py | 34 def __getslice__(self, i, j): member in UserList
|
D | UserString.py | 39 def __getslice__(self, start, end): member in UserString
|
/external/python/cpython2/Doc/library/ |
D | modulefinder.rst | 109 sre_parse: __getslice__,_PATTERNENDERS,SRE_FLAG_UNICODE
|
D | operator.rst | 255 __getslice__(a, b, c)
|
/external/libchrome/third_party/markupsafe/ |
D | __init__.py | 198 __getslice__ = make_wrapper('__getslice__') variable in Markup
|
/external/python/cpython2/Lib/multiprocessing/ |
D | sharedctypes.py | 254 def __getslice__(self, start, stop): member in SynchronizedArray
|
/external/python/cpython3/Lib/multiprocessing/ |
D | sharedctypes.py | 229 def __getslice__(self, start, stop): member in SynchronizedArray
|
/external/protobuf/python/google/protobuf/internal/ |
D | containers.py | 314 def __getslice__(self, start, stop): member in RepeatedScalarFieldContainer 432 def __getslice__(self, start, stop): member in RepeatedCompositeFieldContainer
|
/external/scapy/scapy/ |
D | plist.py | 89 def __getslice__(self, *args, **kargs): member in PacketList 90 return self.__class__(self.res.__getslice__(*args, **kargs),
|
/external/python/cpython2/Demo/classes/ |
D | bitvec.py | 221 def __getslice__(self, i, j): member in BitVec
|
/external/python/cpython2/Lib/idlelib/idle_test/ |
D | test_io.py | 18 def __getslice__(self, *args): member in Base
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_run.py | 53 def __getslice__(self, *args): member in S
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.6rc1.rst | 140 Added warnings on the use of ``__getslice__``, ``__setslice__``, or
|
D | 2.6a2.rst | 151 Raise a Py3K warning for __getitem__ or __getslice__ on exception instances.
|
/external/python/cpython2/Modules/ |
D | operator.c | 434 spam2(getslice,__getslice__,
|
/external/python/cpython2/Doc/tools/ |
D | susp-ignored.csv | 82 library/multiprocessing,,`,">>> l._callmethod('__getslice__', (2, 7)) # equiv to `l[2:7]`"
|
/external/tensorflow/tensorflow/python/training/tracking/ |
D | data_structures.py | 414 def __getslice__(self, i, j): member in List
|
/external/python/cpython2/Doc/reference/ |
D | datamodel.rst | 1857 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/ |
D | general.rst | 421 '__getattribute__', '__getitem__', '__getslice__', '__gt__',
|