mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
10 lines
165 B
Python
10 lines
165 B
Python
"""Skeleton for 'numpy' module.
|
|
|
|
Project: NumPy 1.8.0 <http://www.numpy.org//>
|
|
"""
|
|
|
|
from . import core
|
|
from .core import *
|
|
|
|
__all__ = []
|
|
__all__.extend(core.__all__) |