Bitmessage / PyBitmessage

Reference client for Bitmessage: a P2P encrypted decentralised communication protocol:
https://bitmessage.org/wiki/Main_Page
Other
2.81k stars 578 forks source link

Use binary literals for compatibility to Python3 #2241

Open kashikoibumi opened 1 month ago

kashikoibumi commented 1 month ago

Use binary literals for compatibility to Python3. In Python3, str and bytes cannot be concatenated, so str literals in code must be fixed to be binary literals. In Python2, this fix is not affected.