[docs] hashlib.pbkdf2_hmac parameter names are incorrect

Thia Wyrod thia at wyrod.ca
Fri Jan 9 23:01:45 CET 2015


The documentation lists the function signature as follows:
hashlib.pbkdf2_hmac(name, password, salt, rounds, dklen=None)

Some parameter names are wrong. The correct signature is:
hashlib.pbkdf2_hmac(hash_name, password, salt, iterations, dklen=None)

--
Thia


More information about the docs mailing list