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
0e664e15
Kaydet (Commit)
0e664e15
authored
Ara 12, 2005
tarafından
Fredrik Lundh
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
skip NIS entries, empty entries, etc
üst
80768f86
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
test_grp.py
Lib/test/test_grp.py
+2
-0
test_pwd.py
Lib/test/test_pwd.py
+2
-2
No files found.
Lib/test/test_grp.py
Dosyayı görüntüle @
0e664e15
...
...
@@ -42,6 +42,8 @@ class GroupDatabaseTestCase(unittest.TestCase):
bynames
=
{}
bygids
=
{}
for
(
n
,
p
,
g
,
mem
)
in
grp
.
getgrall
():
if
not
n
or
n
==
'+'
:
continue
# skip NIS entries etc.
bynames
[
n
]
=
g
bygids
[
g
]
=
n
...
...
Lib/test/test_pwd.py
Dosyayı görüntüle @
0e664e15
...
...
@@ -38,8 +38,8 @@ class PwdTest(unittest.TestCase):
# check whether the entry returned by getpwuid()
# for each uid is among those from getpwall() for this uid
for
e
in
entries
:
if
e
[
0
]
==
'+'
:
continue
# skip NIS entries
if
not
e
[
0
]
or
e
[
0
]
==
'+'
:
continue
# skip NIS entries
etc.
self
.
assert_
(
pwd
.
getpwnam
(
e
.
pw_name
)
in
entriesbyname
[
e
.
pw_name
])
self
.
assert_
(
pwd
.
getpwuid
(
e
.
pw_uid
)
in
entriesbyuid
[
e
.
pw_uid
])
...
...
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