comparison DEPENDENCIES/mingw32/Python27/Lib/site-packages/numpy/compat/__init__.py @ 87:2a2c65a20a8b

Add Python libs and headers
author Chris Cannam
date Wed, 25 Feb 2015 14:05:22 +0000
parents
children
comparison
equal deleted inserted replaced
86:413a9d26189e 87:2a2c65a20a8b
1 """
2 Compatibility module.
3
4 This module contains duplicated code from Python itself or 3rd party
5 extensions, which may be included for the following reasons:
6
7 * compatibility
8 * we may only need a small subset of the copied library/module
9
10 """
11 from __future__ import division, absolute_import, print_function
12
13 from . import _inspect
14 from . import py3k
15 from ._inspect import getargspec, formatargspec
16 from .py3k import *
17
18 __all__ = []
19 __all__.extend(_inspect.__all__)
20 __all__.extend(py3k.__all__)