Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
TST/BUG: fix 2to3 import rewrite of import pickle #4063
Conversation
cpcloud
was assigned
Jun 27, 2013
|
@jreback even though i said 0.13 for this one i'd like to get this in for 0.12 would be nice to be able to run tox on py3.x... |
|
ok by me |
|
btw i tried w/ numpy 1.5.1 and works fine |
cpcloud
added a commit
that referenced
this pull request
Jun 28, 2013
|
|
cpcloud |
f418a0e
|
cpcloud
merged commit f418a0e
into pandas-dev:master
Jun 28, 2013
cpcloud
deleted the
cpcloud:tox-pkl-import-fix branch
Jun 28, 2013
|
I think it's time to ditch tox_prll.sh and move to detox, |
|
is this a dropin replacement? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cpcloud commentedJun 27, 2013
In pandas.io.pickle the following statement will not allow python to import
anything due to the following rewrite by 2to3
import pickle -> from . import pickle
This makes the import try to import itself ad infinitum and thus fails.
closes #4062