annotate DEPENDENCIES/mingw32/Python27/Lib/site-packages/numpy/compat/__init__.py @ 118:770eb830ec19 emscripten

Typo fix
author Chris Cannam
date Wed, 18 May 2016 16:14:08 +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__)