summaryrefslogtreecommitdiff
path: root/tests/basics/enumerate.py
AgeCommit message (Collapse)Author
2017-06-10tests/basics: Convert "sys.exit()" to "raise SystemExit".Paul Sokolovsky
2017-02-15tests/basic/[a-f]*: Make skippable.Paul Sokolovsky
For small ports which don't have all features enabled.
2016-03-06tests: Reduce large object allocations so tests can run with small heap.Damien George
2014-05-06py: Add keyword arg support to enumerate constructor.Damien George
Need to have a policy as to how far we go adding keyword support to built ins. It's nice to have, and gets better CPython compatibility, but hurts the micro nature of uPy. Addresses issue #577.
2014-02-11basics/enumerate.py: Don't turn enumerate test into heap test.Paul Sokolovsky
With range(10000), doesn't fit into 128K heap.
2014-01-19Move tests in basic/tests/ up one level preparating to multiple test dirs.Paul Sokolovsky