warner / python-ed25519

Python bindings to the Ed25519 public-key signature system
Other
164 stars 38 forks source link

Switch to assert* rather than fail* #21

Open s-t-e-v-e-n-k opened 10 months ago

s-t-e-v-e-n-k commented 10 months ago

The fail methods from TestCase have been deprecated as of Python 3.1 and 3.2, and were finally removed in Python 3.12. Switch to using the non-deprecated assert functions.