We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef9c42d commit e347958Copy full SHA for e347958
pandas/src/generate_code.py
@@ -1,15 +1,12 @@
1
"""This file generates `generated.pyx` which is then included in `../algos.pyx`
2
during building. To regenerate `generated.pyx`, just run:
3
4
- `python2 generate_code.py`.
+ `python generate_code.py`.
5
6
"""
7
8
from __future__ import print_function
9
-# we only need to be able to run this file on 2.7
10
-# don't introduce a pandas/pandas.compat import
11
-# or we get a bootstrapping problem
12
-from StringIO import StringIO
+from pandas.compat import StringIO
13
import numpy as np
14
15
_int64_max = np.iinfo(np.int64).max
0 commit comments