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
62679968
Kaydet (Commit)
62679968
authored
Ock 24, 2005
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Put docstring for getspall into same #ifdef block as function definition
Remove C++ (C99) style comments
üst
93f18f6f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
spwdmodule.c
Modules/spwdmodule.c
+4
-6
No files found.
Modules/spwdmodule.c
Dosyayı görüntüle @
62679968
...
...
@@ -121,23 +121,21 @@ static PyObject* spwd_getspnam(PyObject *self, PyObject *args)
return
mkspent
(
p
);
}
#endif
/* HAVE_GETSPNAM */
#ifdef HAVE_GETSPENT
PyDoc_STRVAR
(
spwd_getspall__doc__
,
"getspall() -> list_of_entries
\n
\
Return a list of all available shadow password database entries, \
in arbitrary order.
\n
\
See spwd.__doc__ for more on shadow password database entries."
);
#endif
/* HAVE_GETSPNAM */
#ifdef HAVE_GETSPENT
static
PyObject
*
spwd_getspall
(
PyObject
*
self
,
PyObject
*
args
)
{
PyObject
*
d
;
struct
spwd
*
p
;
// if (!PyArg_NoArgs(args))
// return NULL;
if
((
d
=
PyList_New
(
0
))
==
NULL
)
return
NULL
;
setspent
();
...
...
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