Пример #1
0
    def bin_to_hex(self, bin_value):
        """Converts given binary to hex string.

        Examples:
        | ${hex} = | Bin to hex | Hello! |
        | ${hex} = | Bin to hex | ${binary} |
        """
        return to_0xhex(bin_value)
Пример #2
0
    def bin_to_hex(self, bin_value):
        """Converts given binary to hex string.

        Examples:
        | ${hex} = | Bin to hex | Hello! |
        | ${hex} = | Bin to hex | ${binary} |
        """
        return to_0xhex(bin_value)
Пример #3
0
 def __hex__(self):
     return to_0xhex(self._value)
Пример #4
0
 def __int__(self):
     return int(to_0xhex(self._value), 16)
Пример #5
0
 def __hex__(self):
     return to_0xhex(self._value)
Пример #6
0
 def __int__(self):
     return int(to_0xhex(self._value), 16)