Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(irc): prevent async-tasks to be garbage-collected too early (#144)
Python only keeps a weak-reference to tasks created, so when the GC comes by, it can remove tasks that are not assigned to a variable. The async-helper changes the factory to always store a strong reference, avoiding this issue.
- Loading branch information