Puts a binary value. :param b: a binary value :raise: :exc:`DataException` if there is a Proton error.
(self, b: bytes)
| 1079 | self._check(pn_data_put_uuid(self._data, u)) |
| 1080 | |
| 1081 | def put_binary(self, b: bytes) -> None: |
| 1082 | """ |
| 1083 | Puts a binary value. |
| 1084 | |
| 1085 | :param b: a binary value |
| 1086 | :raise: :exc:`DataException` if there is a Proton error. |
| 1087 | """ |
| 1088 | self._check(pn_data_put_binary(self._data, b)) |
| 1089 | |
| 1090 | def put_memoryview(self, mv: memoryview) -> None: |
| 1091 | """ |
no test coverage detected