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
8899a9ca
Kaydet (Commit)
8899a9ca
authored
May 06, 1992
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add names for perm bits (S_IREAD etc).
Only extract 4 bits of mode to get the file type
üst
e2388293
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
1 deletion
+23
-1
stat.py
Lib/stat.py
+23
-1
No files found.
Lib/stat.py
Dosyayı görüntüle @
8899a9ca
...
...
@@ -29,7 +29,7 @@ def S_IMODE(mode):
return
mode
&
07777
def
S_IFMT
(
mode
):
return
mode
&
~
07777
return
mode
&
0170000
# Constants used as S_IFMT() for various file types
# (not all are implemented on all systems)
...
...
@@ -64,3 +64,25 @@ def S_ISLNK(mode):
def
S_ISSOCK
(
mode
):
return
S_IFMT
(
mode
)
==
S_IFSOCK
# Names for permission bits
S_ISUID
=
04000
S_ISGID
=
02000
S_ENFMT
=
S_ISGID
S_ISVTX
=
01000
S_IREAD
=
00400
S_IWRITE
=
00200
S_IEXEC
=
00100
S_IRWXU
=
00700
S_IRUSR
=
00400
S_IWUSR
=
00200
S_IXUSR
=
00100
S_IRWXG
=
00070
S_IRGRP
=
00040
S_IWGRP
=
00020
S_IXGRP
=
00010
S_IRWXO
=
00007
S_IROTH
=
00004
S_IWOTH
=
00002
S_IXOTH
=
00001
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