Skip to content

Commit a2e4efa

Browse files
mattytrentinidpgeorge
authored andcommitted
collections: Remove micropython-lib Python implementation of deque.
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 <[email protected]>
1 parent 7206da4 commit a2e4efa

File tree

4 files changed

+1
-45
lines changed

4 files changed

+1
-45
lines changed

python-stdlib/collections-deque/collections/deque.py

-36
This file was deleted.

python-stdlib/collections-deque/manifest.py

-4
This file was deleted.

python-stdlib/collections/collections/__init__.py

-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@
66
from .defaultdict import defaultdict
77
except ImportError:
88
pass
9-
try:
10-
from .deque import deque
11-
except ImportError:
12-
pass
139

1410

1511
class MutableMapping:

python-stdlib/collections/manifest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
metadata(version="0.1.2")
1+
metadata(version="0.2.0")
22

33
package("collections")

0 commit comments

Comments
 (0)