Skip to content
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

Replace deprecated imghdr, switch to stable email.mime API #265

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

salty-horse
Copy link

The upcoming Python 3.13 will remove the built-in module imghdr.

Its mimetype-sniffing functionality was copied into email.mime, so I switched to it in flanker/mime/message/part.py.

The same file also uses email.mime.audio._whatsnd, but since it's an internal underscore-prefixed function, it's not part of the stable API and was renamed in Python 3.11.

Instead of using email.mime.audio._whatsnd/_what and imghdr/email.mime.image._what, I think it's safer to use the stable wrapper classes MIMEAudio, MIMEImage, even though they require a bit more work to extract the sniffed content type.

If you disagree, I can switch back to using the internal function.

I tested this with Python 3.10 - please test with 2.7.

BTW, another deprecated module is cgi, which webob uses, but there's an open issue about it upstream, and I'm waiting to see if they intend to release a new version.

imghdr will be removed in Python 3.13.
email.mime.audio._whatsnd was renamed in Python 3.11.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant