diff options
Diffstat (limited to 'numpy/core/records.py')
-rw-r--r-- | numpy/core/records.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/core/records.py b/numpy/core/records.py index 2e55c48fb..ff5d98d3a 100644 --- a/numpy/core/records.py +++ b/numpy/core/records.py @@ -34,6 +34,8 @@ Record arrays allow us to access fields as properties:: array([ 2., 2.]) """ +from __future__ import division + # All of the functions allow formats to be a dtype __all__ = ['record', 'recarray', 'format_parser'] |