We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38cc8bb commit 21dabeaCopy full SHA for 21dabea
pandas/src/generate_code.py
@@ -1,5 +1,8 @@
1
from __future__ import print_function
2
-from pandas.compat import range, cStringIO as StringIO
+# we only need to be able to run this file on 2.7
3
+# don't introduce a pandas/pandas.compat import
4
+# or we get a bootstrapping problem
5
+from StringIO import StringIO
6
import os
7
8
header = """
0 commit comments