annotate DEPENDENCIES/mingw32/Python27/Lib/site-packages/numpy/compat/__init__.py @ 133:4acb5d8d80b6 tip

Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author Chris Cannam
date Tue, 30 Jul 2019 12:25:44 +0100
parents 2a2c65a20a8b
children
rev   line source
Chris@87 1 """
Chris@87 2 Compatibility module.
Chris@87 3
Chris@87 4 This module contains duplicated code from Python itself or 3rd party
Chris@87 5 extensions, which may be included for the following reasons:
Chris@87 6
Chris@87 7 * compatibility
Chris@87 8 * we may only need a small subset of the copied library/module
Chris@87 9
Chris@87 10 """
Chris@87 11 from __future__ import division, absolute_import, print_function
Chris@87 12
Chris@87 13 from . import _inspect
Chris@87 14 from . import py3k
Chris@87 15 from ._inspect import getargspec, formatargspec
Chris@87 16 from .py3k import *
Chris@87 17
Chris@87 18 __all__ = []
Chris@87 19 __all__.extend(_inspect.__all__)
Chris@87 20 __all__.extend(py3k.__all__)