gh-91217: deprecate imghdr (#91461)

* Deprecate imghdr

Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>

* Update Doc/whatsnew/3.11.rst

Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>

* Inline `imghdr` into `email.mime.image`

Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Co-authored-by: Barry Warsaw <barry@python.org>
This commit is contained in:
Brett Cannon 2022-04-13 10:47:41 -07:00 committed by GitHub
parent dfbc792a4b
commit 3fc57e8f6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 128 additions and 23 deletions

View file

@ -1,12 +1,13 @@
import imghdr
import io
import os
import pathlib
import unittest
import warnings
from test.support import findfile
from test.support import findfile, warnings_helper
from test.support.os_helper import TESTFN, unlink
imghdr = warnings_helper.import_deprecated("imghdr")
TEST_FILES = (
('python.png', 'png'),