Skip to content
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

python-stdlib/collections-deque: Remove micropython-lib deque. #848

Merged
merged 1 commit into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
36 changes: 0 additions & 36 deletions python-stdlib/collections-deque/collections/deque.py

This file was deleted.

4 changes: 0 additions & 4 deletions python-stdlib/collections-deque/manifest.py

This file was deleted.

4 changes: 0 additions & 4 deletions python-stdlib/collections/collections/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@
from .defaultdict import defaultdict
except ImportError:
pass
try:
from .deque import deque
except ImportError:
pass


class MutableMapping:
Expand Down
2 changes: 1 addition & 1 deletion python-stdlib/collections/manifest.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
metadata(version="0.1.2")
metadata(version="0.2.0")

package("collections")