mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-23 18:13:56 +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
|