diff options
Diffstat (limited to 'numpy/compat/__init__.py')
-rw-r--r-- | numpy/compat/__init__.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/numpy/compat/__init__.py b/numpy/compat/__init__.py index 930be5a90..bb40fdbe9 100644 --- a/numpy/compat/__init__.py +++ b/numpy/compat/__init__.py @@ -8,12 +8,12 @@ extensions, which may be included for the following reasons: * we may only need a small subset of the copied library/module """ -from __future__ import division +from __future__ import division, absolute_import -import _inspect -import py3k -from _inspect import getargspec, formatargspec -from py3k import * +from . import _inspect +from . import py3k +from ._inspect import getargspec, formatargspec +from .py3k import * __all__ = [] __all__.extend(_inspect.__all__) |