pyudbm.binding

Binding namespace for pyudbm.

This subpackage exposes the restored high-level API so users may import either from pyudbm or directly from pyudbm.binding.

The actual semantics live in pyudbm.binding.udbm; this module simply re-exports the public Python binding surface so that both of the following import styles stay valid.

Example:

>>> import pyudbm
>>> import pyudbm.binding
>>> pyudbm.Context is pyudbm.binding.Context
True
>>> pyudbm.Federation is pyudbm.binding.Federation
True