diff options
| author | Damien George <damien@micropython.org> | 2024-06-21 14:35:43 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2024-06-21 14:35:43 +1000 |
| commit | 407464348d64759e7b4d9a129ff367074c5797bd (patch) | |
| tree | c935f7f0ef44149c7190d97ff06c9fef4287b1a6 | |
| parent | 5040b13dd47e1d3dad401f45ba23f4b17fd2d670 (diff) | |
tests/cpydiff: Remove deque difference test.
Because `collections.deque` is now a built-in type in MicroPython.
Signed-off-by: Damien George <damien@micropython.org>
| -rw-r--r-- | tests/cpydiff/modules_deque.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/cpydiff/modules_deque.py b/tests/cpydiff/modules_deque.py deleted file mode 100644 index 4d2746d1f..000000000 --- a/tests/cpydiff/modules_deque.py +++ /dev/null @@ -1,10 +0,0 @@ -""" -categories: Modules,deque -description: Deque not implemented -cause: Unknown -workaround: Use regular lists. micropython-lib has implementation of collections.deque. -""" -import collections - -D = collections.deque() -print(D) |
