|
Let us walk on the 3-isogeny graph
|
Namespaces | |
| namespace | exceptions |
| namespace | ext |
| namespace | fallback |
Functions | |
| pack (o, stream, **kwargs) | |
| packb (o, **kwargs) | |
| unpack (stream, **kwargs) | |
Variables | |
| tuple | version = (1, 0, 5) |
| load = unpack | |
| loads = unpackb | |
| dump = pack | |
| dumps = packb | |
| pack | ( | o, | |
| stream, | |||
| ** | kwargs | ||
| ) |
Pack object `o` and write it to `stream` See :class:`Packer` for options.
Definition at line 22 of file __init__.py.
References i.
Referenced by pip._vendor.msgpack.packb().

| packb | ( | o, | |
| ** | kwargs | ||
| ) |
Pack object `o` and return packed bytes See :class:`Packer` for options.
Definition at line 32 of file __init__.py.
References pip._vendor.msgpack.pack().

| unpack | ( | stream, | |
| ** | kwargs | ||
| ) |
Unpack an object from `stream`. Raises `ExtraData` when `stream` contains extra bytes. See :class:`Unpacker` for options.
Definition at line 41 of file __init__.py.
References i.
| dump = pack |
Definition at line 56 of file __init__.py.
| dumps = packb |
Definition at line 57 of file __init__.py.
| load = unpack |
Definition at line 53 of file __init__.py.
| loads = unpackb |
Definition at line 54 of file __init__.py.
| tuple version = (1, 0, 5) |
Definition at line 9 of file __init__.py.