MCPcopy Create free account
hub / github.com/dgrunwald/rust-cpython / PyBool

Class PyBool

src/objects/boolobject.rs:8–8  ·  view source on GitHub ↗

Represents a Python `bool`.

Source from the content-addressed store, hash-verified

6
7/// Represents a Python `bool`.
8pub struct PyBool(PyObject);
9
10pyobject_newtype!(PyBool, PyBool_Check, PyBool_Type);
11

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected