Skip to content
Snippets Groups Projects
Commit ea897170 authored by David Verelst's avatar David Verelst
Browse files

add future imports for division and print_function

parent 14ad570e
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,9 @@ Created on Mon Mar 5 16:00:02 2012
@author: dave
"""
from __future__ import division
from __future__ import print_function
# time and data should be 1 dimensional arrays
def array_1d(array):
"""
......
......@@ -5,6 +5,9 @@ Created on Sun Jan 20 18:14:02 2013
@author: dave
"""
from __future__ import division
from __future__ import print_function
import numpy as np
import scipy as sp
......
......@@ -7,6 +7,7 @@ Library for general stuff
@author: dave
"""
from __future__ import division
from __future__ import print_function
#print(*objects, sep=' ', end='\n', file=sys.stdout)
import os
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment