Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
ef223a19
Kaydet (Commit)
ef223a19
authored
Eki 01, 2016
tarafından
Berker Peksag
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #28228: imghdr now supports pathlib
üst
6c63f197
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
1 deletion
+15
-1
imghdr.rst
Doc/library/imghdr.rst
+3
-0
imghdr.py
Lib/imghdr.py
+3
-1
test_imghdr.py
Lib/test/test_imghdr.py
+7
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Doc/library/imghdr.rst
Dosyayı görüntüle @
ef223a19
...
...
@@ -20,6 +20,9 @@ The :mod:`imghdr` module defines the following function:
string describing the image type. If optional *h* is provided, the *filename*
is ignored and *h* is assumed to contain the byte stream to test.
.. versionchanged:: 3.6
Accepts a :term:`path-like object`.
The following image types are recognized, as listed below with the return value
from :func:`what`:
...
...
Lib/imghdr.py
Dosyayı görüntüle @
ef223a19
"""Recognize image file formats based on their first few bytes."""
from
os
import
PathLike
__all__
=
[
"what"
]
#-------------------------#
...
...
@@ -10,7 +12,7 @@ def what(file, h=None):
f
=
None
try
:
if
h
is
None
:
if
isinstance
(
file
,
str
):
if
isinstance
(
file
,
(
str
,
PathLike
)
):
f
=
open
(
file
,
'rb'
)
h
=
f
.
read
(
32
)
else
:
...
...
Lib/test/test_imghdr.py
Dosyayı görüntüle @
ef223a19
import
imghdr
import
io
import
os
import
pathlib
import
unittest
import
warnings
from
test.support
import
findfile
,
TESTFN
,
unlink
...
...
@@ -49,6 +50,12 @@ class TestImghdr(unittest.TestCase):
self
.
assertEqual
(
imghdr
.
what
(
None
,
data
),
expected
)
self
.
assertEqual
(
imghdr
.
what
(
None
,
bytearray
(
data
)),
expected
)
def
test_pathlike_filename
(
self
):
for
filename
,
expected
in
TEST_FILES
:
with
self
.
subTest
(
filename
=
filename
):
filename
=
findfile
(
filename
,
subdir
=
'imghdrdata'
)
self
.
assertEqual
(
imghdr
.
what
(
pathlib
.
Path
(
filename
)),
expected
)
def
test_register_test
(
self
):
def
test_jumbo
(
h
,
file
):
if
h
.
startswith
(
b
'eggs'
):
...
...
Misc/NEWS
Dosyayı görüntüle @
ef223a19
...
...
@@ -46,6 +46,8 @@ Core and Builtins
Library
-------
- Issue #28228: imghdr now supports pathlib.
- Issue #28226: compileall now supports pathlib.
- Issue #28314: Fix function declaration (C flags) for the getiterator() method
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment