Home
last modified time | relevance | path

Searched refs:delslice (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_operator.py143 self.assertRaises(TypeError, operator.delslice, a)
144 self.assertRaises(TypeError, operator.delslice, a, None, None)
145 self.assertTrue(operator.delslice(a, 2, 8) is None)
147 operator.delslice(a, 0, test_support.MAX_Py_ssize_t)
Dtest_class.py329 delslice = AllTests.__delslice__
350 AllTests.__delslice__ = delslice
Dtest_bytes.py830 def delslice(): function
832 self.assertRaises(BufferError, delslice)
Dtest_descr.py1650 self.delslice = (i, j)
1669 self.assertEqual(a.delslice, (0, 10))
/external/python/cpython2/Modules/
Doperator.c438 spam2(delslice,__delslice__,
/external/python/cpython2/Doc/library/
Doperator.rst238 .. function:: delslice(a, b, c)
/external/python/cpython2/Misc/
DHISTORY14522 - The operator module has new functions delitem and delslice, and the