Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
pcmoritz committed Aug 15, 2017
1 parent 2171761 commit 7069e20
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 7 additions & 1 deletion python/pyarrow/serialization.pxi
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,13 @@ from libcpp.vector cimport vector as c_vector
from cpython.ref cimport PyObject
from cython.operator cimport dereference as deref

import cloudpickle as pickle
try:
import cloudpickle as pickle
except ImportError:
try:
import cPickle as pickle
except ImportError:
import pickle

from pyarrow.lib cimport Buffer, NativeFile, check_status, _RecordBatchFileWriter

Expand Down
1 change: 0 additions & 1 deletion python/pyarrow/tests/test_serialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import string
import sys

from deepeq import deep_eq
import pyarrow as pa
import numpy as np

Expand Down

0 comments on commit 7069e20

Please sign in to comment.