__init__.py 78 B

123456
  1. from . import _a
  2. add = _a.add
  3. from ._a import add as add2
  4. assert add is add2