Commit 1e051f1a authored by Davis King's avatar Davis King

Made test work in python3

parent 077a3b60
......@@ -3,7 +3,12 @@ try:
import cPickle as pickle # Use cPickle on Python 2.7
except ImportError:
import pickle
from types import FloatType
try:
from types import FloatType
except ImportError:
FloatType = float
from pytest import raises
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment