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
dcb591f8
Kaydet (Commit)
dcb591f8
authored
May 30, 2015
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Use converter names instead of format units in Argument Clinic descriptions
in builtin and _crypt modules.
üst
b811b649
7e810a6e
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
_cryptmodule.c
Modules/_cryptmodule.c
+3
-3
bltinmodule.c
Python/bltinmodule.c
+0
-0
No files found.
Modules/_cryptmodule.c
Dosyayı görüntüle @
dcb591f8
...
@@ -17,8 +17,8 @@ module crypt
...
@@ -17,8 +17,8 @@ module crypt
/*[clinic input]
/*[clinic input]
crypt.crypt
crypt.crypt
word:
's'
word:
str
salt:
's'
salt:
str
/
/
Hash a *word* with the given *salt* and return the hashed password.
Hash a *word* with the given *salt* and return the hashed password.
...
@@ -32,7 +32,7 @@ results for a given *word*.
...
@@ -32,7 +32,7 @@ results for a given *word*.
static
PyObject
*
static
PyObject
*
crypt_crypt_impl
(
PyModuleDef
*
module
,
const
char
*
word
,
const
char
*
salt
)
crypt_crypt_impl
(
PyModuleDef
*
module
,
const
char
*
word
,
const
char
*
salt
)
/*[clinic end generated code: output=995ad1e854d83069 input=
4d93b6d0f41fbf58
]*/
/*[clinic end generated code: output=995ad1e854d83069 input=
0e8edec9c364352b
]*/
{
{
/* On some platforms (AtheOS) crypt returns NULL for an invalid
/* On some platforms (AtheOS) crypt returns NULL for an invalid
salt. Return None in that case. XXX Maybe raise an exception? */
salt. Return None in that case. XXX Maybe raise an exception? */
...
...
Python/bltinmodule.c
Dosyayı görüntüle @
dcb591f8
This diff is collapsed.
Click to expand it.
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