From ce6c10172be6d17f76779ece930908f6248a1706 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky <pfalcon@users.sourceforge.net> Date: Sun, 11 May 2014 03:45:42 +0300 Subject: [PATCH] tests: Really fix import. --- tests/basics/class_store_class.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/basics/class_store_class.py b/tests/basics/class_store_class.py index cc80fb5b1..60f65220d 100644 --- a/tests/basics/class_store_class.py +++ b/tests/basics/class_store_class.py @@ -2,7 +2,10 @@ # There was a bug in MicroPython that under some conditions class stored # in instance attribute later was returned "bound" as if it was a method, # which caused class constructor to receive extra argument. -from _collections import namedtuple +try: + from collections import namedtuple +except ImportError: + from _collections import namedtuple _DefragResultBase = namedtuple('DefragResult', 'foo bar') -- GitLab