Changes between Initial Version and Version 1 of Ticket #31719, comment 2
- Timestamp:
- Sep 3, 2020, 2:19:12 AM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #31719, comment 2
initial v1 1 1 I'm facing the same issue. And tried to check type but I got str.. I don't know why though.. 2 2 3 ```4 3 import bcrypt 5 4 type(bcrypt.hashpw(b'password', bcrypt.gensalt())) 6 5 <class 'str'> 7 ```