Skip to content

Commit

Permalink
collections: Remove micropython-lib Python implementation of deque.
Browse files Browse the repository at this point in the history
It's no longer necessary since the built-in C version of this type now
implements all the functionality here.

Signed-off-by: Matt Trentini <matt.trentini@gmail.com>
  • Loading branch information
mattytrentini authored and dpgeorge committed May 15, 2024
1 parent 7206da4 commit a2e4efa
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 45 deletions.
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")

0 comments on commit a2e4efa

Please sign in to comment.