-
Notifications
You must be signed in to change notification settings - Fork 35
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
UnicodeDecodeError: 'utf-8' codec can't decode byte 0x80 in position 0: invalid start byte #10
Comments
Thanks for report. I'll look into it a bit later. |
Thanks @MechanisM I appreciate it. |
I am just installed django version 1.11.5 and python 3.6.2. Got the same error: UnicodeDecodeError: 'utf-8' codec can't decode byte 0xf6 in position 3: invalid start byte. When I started django miniserver. |
same error as @ypokkinen |
We are having the same issue with python3.4 |
Ineed the issue is here: https://github.com/unbit/uwsgi/blob/2.0.18/uwsgidecorators.py#L29-L33 - it tries to decode the bytes although they were never unicode-encoded because pickle.dumps created the bytes. A |
I am using the email backend on django 1.8.16 and have tried both python 3.4.2 and 3.5.2 but always get the following error in the spooler:
so I thought maybe it is the decode call on line 38 in the decorators and tried adding "ignore", but then I get the following error:
which feels like maybe there is some python 3 incompatibility?
I'm also using the email backend on a site that uses python 2.7 where everything works fine.
The text was updated successfully, but these errors were encountered: