diff options
Diffstat (limited to 'numpy/doc/byteswapping.py')
-rw-r--r-- | numpy/doc/byteswapping.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/numpy/doc/byteswapping.py b/numpy/doc/byteswapping.py index 23e7d7f6e..395c858ed 100644 --- a/numpy/doc/byteswapping.py +++ b/numpy/doc/byteswapping.py @@ -1,4 +1,4 @@ -''' +""" ============================= Byteswapping and byte order @@ -134,4 +134,6 @@ the previous operations: >>> swapped_end_arr.tostring() == big_end_str False -''' +""" +from __future__ import division + |