Browse Source

tests: Really fix import.

pull/603/head
Paul Sokolovsky 11 years ago
parent
commit
ce6c10172b
  1. 5
      tests/basics/class_store_class.py

5
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')

Loading…
Cancel
Save