From 813082a16baa11b3b318f5738d5c8e134fe5c43a Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Mon, 14 Apr 2014 18:54:11 +0300 Subject: [PATCH] collections: Add dummy implementation. --- collections/collections/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 collections/collections/__init__.py diff --git a/collections/collections/__init__.py b/collections/collections/__init__.py new file mode 100644 index 00000000..f3c7f5ef --- /dev/null +++ b/collections/collections/__init__.py @@ -0,0 +1,5 @@ +# Should be reimplemented for MicroPython +# Reason: +# CPython implementation brings in metaclasses and other bloat. +# This is going to be just import-all for other modules in a namespace package +from _collections import *