\(\renewcommand\AA{\unicode{x212B}}\)
LockMode¶
This is a Python binding to the C++ class Mantid::API::LockMode.
- class mantid.api.LockMode¶
- Lock = _api.LockMode.Lock¶
- NoLock = _api.LockMode.NoLock¶
- as_integer_ratio()¶
Return integer ratio.
Return a pair of integers, whose ratio is exactly equal to the original int and with a positive denominator.
>>> (10).as_integer_ratio() (10, 1) >>> (-10).as_integer_ratio() (-10, 1) >>> (0).as_integer_ratio() (0, 1)
- bit_length()¶
Number of bits necessary to represent self in binary.
>>> bin(37) '0b100101' >>> (37).bit_length() 6
- name¶
- names = {'Lock': _api.LockMode.Lock, 'NoLock': _api.LockMode.NoLock}¶
- values = {0: _api.LockMode.Lock, 1: _api.LockMode.NoLock}¶