MCPcopy Create free account
hub / github.com/apache/qpid-proton / byte

Class byte

python/proton/_data.py:125–133  ·  view source on GitHub ↗

The byte AMQP type. An 8 bit signed integer in the range :math:`-(2^7)` to :math:`2^7 - 1` inclusive.

Source from the content-addressed store, hash-verified

123
124
125class 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
136class short(int):

Callers 3

get_byteMethod · 0.85
randomFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected