syrusakbary / promise

Ultra-performant Promise implementation in Python
MIT License
362 stars 76 forks source link

Implement the `finally()` method for promises? #103

Open Ashark opened 10 months ago

Ashark commented 10 months ago

I do not see the finally method described in the Promises/A+ web site, but it is used when you want to run something independently of if the promise was fulfilled or rejected.

promise.then(…).catch(…).finally(…)

Will this be implemented in this project?