Uint32 returns an uint32 integer from the raw Python object.
()
| 311 | |
| 312 | // Uint32 returns an uint32 integer from the raw Python object. |
| 313 | func (ob *PyObject) Uint32() uint32 { |
| 314 | return uint32(C.PyLong_AsUnsignedLong(ob.rawptr)) |
| 315 | } |
| 316 | |
| 317 | // Uint64 returns an uint64 integer from the raw Python object. |
| 318 | func (ob *PyObject) Uint64() uint64 { |
no outgoing calls