mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-12-02 14:34:02 +03:00
14 lines
260 B
Python
14 lines
260 B
Python
"""Test module for wiring."""
|
|
|
|
import sys
|
|
|
|
if "pypy" not in sys.version.lower():
|
|
import numpy # noqa
|
|
from numpy import * # noqa
|
|
|
|
import scipy # noqa
|
|
from scipy import * # noqa
|
|
|
|
import builtins # noqa
|
|
from builtins import * # noqa
|