diff options
author | Christoph Gohlke <cgohlke@uci.edu> | 2013-09-07 18:59:56 -0700 |
---|---|---|
committer | Christoph Gohlke <cgohlke@uci.edu> | 2013-09-07 18:59:56 -0700 |
commit | 260433c574fdf0a8e97134853e8149e95b947f9a (patch) | |
tree | c78973496695508d2be6190d027a7093a0d78fd2 | |
parent | 25445cd10ae39deea072b84cfe2ede509e599ea5 (diff) | |
download | numpy-260433c574fdf0a8e97134853e8149e95b947f9a.tar.gz |
ENH: export py3k.integer_types from numpy.compat
-rw-r--r-- | numpy/compat/py3k.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/compat/py3k.py b/numpy/compat/py3k.py index e7ab9bf0f..f5ac3f9f8 100644 --- a/numpy/compat/py3k.py +++ b/numpy/compat/py3k.py @@ -6,7 +6,8 @@ from __future__ import division, absolute_import, print_function __all__ = ['bytes', 'asbytes', 'isfileobj', 'getexception', 'strchar', 'unicode', 'asunicode', 'asbytes_nested', 'asunicode_nested', - 'asstr', 'open_latin1', 'long', 'basestring', 'sixu'] + 'asstr', 'open_latin1', 'long', 'basestring', 'sixu', + 'integer_types'] import sys |