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
b92c526e
Kaydet (Commit)
b92c526e
authored
Agu 10, 2018
tarafından
GPery
Kaydeden (comit)
Benjamin Peterson
Agu 10, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
closes bpo-34353: Add sockets to stat.filemode fallback python implementation. (GH-8703)
üst
a7548230
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
0 deletions
+12
-0
stat.py
Lib/stat.py
+1
-0
test_stat.py
Lib/test/test_stat.py
+9
-0
2018-08-09-18-42-49.bpo-34353.GIOm_8.rst
...ore and Builtins/2018-08-09-18-42-49.bpo-34353.GIOm_8.rst
+2
-0
No files found.
Lib/stat.py
Dosyayı görüntüle @
b92c526e
...
...
@@ -111,6 +111,7 @@ SF_SNAPSHOT = 0x00200000 # file is a snapshot file
_filemode_table
=
(
((
S_IFLNK
,
"l"
),
(
S_IFSOCK
,
"s"
),
# Must appear before IFREG and IFDIR as IFSOCK == IFREG | IFDIR
(
S_IFREG
,
"-"
),
(
S_IFBLK
,
"b"
),
(
S_IFDIR
,
"d"
),
...
...
Lib/test/test_stat.py
Dosyayı görüntüle @
b92c526e
import
unittest
import
os
import
socket
import
sys
from
test.support
import
TESTFN
,
import_fresh_module
...
...
@@ -191,6 +192,14 @@ class TestFilemode:
self
.
assertS_IS
(
"BLK"
,
st_mode
)
break
@unittest.skipUnless
(
hasattr
(
socket
,
'AF_UNIX'
),
'requires unix socket'
)
def
test_socket
(
self
):
with
socket
.
socket
(
socket
.
AF_UNIX
)
as
s
:
s
.
bind
(
TESTFN
)
st_mode
,
modestr
=
self
.
get_mode
()
self
.
assertEqual
(
modestr
[
0
],
's'
)
self
.
assertS_IS
(
"SOCK"
,
st_mode
)
def
test_module_attributes
(
self
):
for
key
,
value
in
self
.
stat_struct
.
items
():
modvalue
=
getattr
(
self
.
statmod
,
key
)
...
...
Misc/NEWS.d/next/Core and Builtins/2018-08-09-18-42-49.bpo-34353.GIOm_8.rst
0 → 100644
Dosyayı görüntüle @
b92c526e
Added the "socket" option in the `stat.filemode()` Python implementation to
match the C implementation.
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