Message321414
None of the hashlib functions are taking keyword arguments for data:
>>> hashlib.sha256(data=b'foo')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: openssl_sha256() takes no keyword arguments
>>> hashlib.blake2b(data=b'foo')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'data' is an invalid keyword argument for this function |
|
Date |
User |
Action |
Args |
2018-07-11 08:02:42 | christian.heimes | set | recipients:
+ christian.heimes, Juuso Lehtivarjo |
2018-07-11 08:02:42 | christian.heimes | set | messageid: <1531296162.34.0.56676864532.issue33729@psf.upfronthosting.co.za> |
2018-07-11 08:02:42 | christian.heimes | link | issue33729 messages |
2018-07-11 08:02:42 | christian.heimes | create | |
|