The float AMQP type. A 32 bit floating point number (IEEE 754-2008 binary32).
| 204 | |
| 205 | |
| 206 | class float32(float): |
| 207 | """ |
| 208 | The float AMQP type. |
| 209 | |
| 210 | A 32 bit floating point number (IEEE 754-2008 binary32). |
| 211 | """ |
| 212 | |
| 213 | def __repr__(self) -> str: |
| 214 | return "float32(%s)" % float.__repr__(self) |
| 215 | |
| 216 | |
| 217 | class decimal32(int): |
no outgoing calls