-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
unicode encode error on index joins #3875
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
admittedly this is probably not the most common use case having mixed unicode and datetime indices |
problem is you are mixing strings and Unicode |
where are the strings coming in? datetimes are their own objecct...should raise a typeerror according to tslib.pyx |
when u join different dtypes they are casted to object |
they are timestamp objects though... |
I think the index joining ultimately hashes strings/ Unicode or something |
hm i will change to error reporting then and see what i can do about it. |
isn't this related to #3878 (though resolution is to raise I think) |
sort of but slightly different problem |
the other is in python space, this is raising all the way down in the base class of Timestamp |
@jreback is there a sane way to debug cython? i feel like i'm using php right now |
print statements! or gdb I think |
nevermind found the docs |
this is insane i'm blowing the stack by calling |
there's a cycle in the type graph somewhere... |
and it's not object |
it's somewhere around periodindex construction...tracking it down now.. |
The following throws a
UnicodeDecodeError
.The text was updated successfully, but these errors were encountered: