Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit d5a8b57

Browse files
author
Anselm Kruis
committed
merge branch 3.5 and run clinic.py --make
2 parents 25c91fd + 7e810a6 commit d5a8b57

File tree

2 files changed

+75
-75
lines changed

2 files changed

+75
-75
lines changed

Modules/_cryptmodule.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ module crypt
1717
/*[clinic input]
1818
crypt.crypt
1919
20-
word: 's'
21-
salt: 's'
20+
word: str
21+
salt: str
2222
/
2323
2424
Hash a *word* with the given *salt* and return the hashed password.
@@ -32,7 +32,7 @@ results for a given *word*.
3232

3333
static PyObject *
3434
crypt_crypt_impl(PyModuleDef *module, const char *word, const char *salt)
35-
/*[clinic end generated code: output=995ad1e854d83069 input=4d93b6d0f41fbf58]*/
35+
/*[clinic end generated code: output=995ad1e854d83069 input=0e8edec9c364352b]*/
3636
{
3737
/* On some platforms (AtheOS) crypt returns NULL for an invalid
3838
salt. Return None in that case. XXX Maybe raise an exception? */

0 commit comments

Comments
 (0)