-
Notifications
You must be signed in to change notification settings - Fork 269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removing some TODOs #133
Comments
I would like to contribute |
Sure, please proceed with a PR. |
Can you please provide any reference |
For fixing this issue, you just have to look for lines in the codebase having |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description of the problem
Currently the
master
has a TODO task of replacing thecollections.deque
withpydatastructs.Queue
. We have decided not to do this replacement as queue is a very simple data structure and it's efficient implementation is already present in python. In fact, deepcopy.copy will be a bottleneck in doing this replacement so, we shouldn't simply invest our time in this.Example of the problem
References/Other comments
The text was updated successfully, but these errors were encountered: