We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
collections.deque
__add__
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
CPython:
>>> from collections import deque >>> deque(range(3)) + deque(range(3)) deque([0, 1, 2, 0, 1, 2])
RustPython:
>>>>> from collections import deque >>>>> deque(range(3)) + deque(range(3)) Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: '+' not supported between instances of 'deque' and 'deque'
The text was updated successfully, but these errors were encountered:
deque.__add__
Hello @DimitrisJim I'd like to look into this issue. can you assign me?
Sorry, something went wrong.
bump @caskercasker , any update on this?
Hey there, I tried to implement the __add__ method in #2949. This is my first issue so I appreciate every feedback that I can get.
stromberger
Successfully merging a pull request may close this issue.
Uh oh!
There was an error while loading. Please reload this page.
Feature
CPython:
RustPython:
The text was updated successfully, but these errors were encountered: