The byte AMQP type. An 8 bit signed integer in the range :math:`-(2^7)` to :math:`2^7 - 1` inclusive.
| 123 | |
| 124 | |
| 125 | class byte(int): |
| 126 | """ |
| 127 | The byte AMQP type. |
| 128 | |
| 129 | An 8 bit signed integer in the range :math:`-(2^7)` to :math:`2^7 - 1` inclusive. |
| 130 | """ |
| 131 | |
| 132 | def __repr__(self) -> str: |
| 133 | return "byte(%s)" % int.__repr__(self) |
| 134 | |
| 135 | |
| 136 | class short(int): |
no outgoing calls
no test coverage detected