Home
last modified time | relevance | path

Searched refs:logical_invert (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_decimal.py1998 d = c.logical_invert(Decimal(1000))
1999 self.assertEqual(c.logical_invert(1000), d)
2000 self.assertRaises(TypeError, c.logical_invert, '1000')
/external/python/cpython2/Doc/library/
Ddecimal.rst685 .. method:: logical_invert([context])
687 :meth:`logical_invert` is a logical operation. The
924 The :meth:`logical_and`, :meth:`logical_invert`, :meth:`logical_or`,
1296 .. method:: logical_invert(x)
/external/python/cpython2/Lib/
Ddecimal.py3291 def logical_invert(self, context=None): member in Decimal
4589 def logical_invert(self, a): member in Context
4606 return a.logical_invert(context=self)