.. |
0prelim.py
|
Add basic functionality tests for the Python bit.
|
2013-12-29 22:34:42 +00:00 |
builtin-len1.py
|
Add basic functionality tests for the Python bit.
|
2013-12-29 22:34:42 +00:00 |
class1.py
|
Add basic functionality tests for the Python bit.
|
2013-12-29 22:34:42 +00:00 |
class2.py
|
Improved type/class/instance code; mp_obj_type_t now has load_attr, store_attr.
|
2014-01-09 20:57:50 +00:00 |
class3.py
|
py: Implement base class lookup, issubclass, isinstance.
|
2014-01-09 21:43:51 +00:00 |
closure1.py
|
py: make closures work.
|
2013-12-30 22:32:17 +00:00 |
closure2.py
|
py: make closures work.
|
2013-12-30 22:32:17 +00:00 |
comprehension1.py
|
Add basic functionality tests for the Python bit.
|
2013-12-29 22:34:42 +00:00 |
dict1.py
|
Add basic functionality tests for the Python bit.
|
2013-12-29 22:34:42 +00:00 |
dict2.py
|
Add basic functionality tests for the Python bit.
|
2013-12-29 22:34:42 +00:00 |
dict_clear.py
|
Added dict.clear.
|
2014-01-07 22:51:08 +00:00 |
dict_copy.py
|
Added dict.copy
|
2014-01-07 22:51:08 +00:00 |
dict_fromkeys.py
|
Added dict.fromkeys. Are we done with dict and #99 yet? I do think we are.
|
2014-01-10 11:25:03 +00:00 |
dict_get.py
|
Added dict.get.
|
2014-01-07 22:51:08 +00:00 |
dict_iterator.py
|
Added dict iterator.
|
2014-01-07 22:51:08 +00:00 |
dict_pop.py
|
implemented dict.pop
|
2014-01-07 22:51:08 +00:00 |
dict_popitem.py
|
Added dict.popitem
|
2014-01-07 22:51:08 +00:00 |
dict_setdefault.py
|
Added dict.setdefault
|
2014-01-07 22:51:08 +00:00 |
dict_update.py
|
forgot to add test for dict.update
|
2014-01-07 22:51:51 +00:00 |
dict_views.py
|
dict views now, refactoring later.
|
2014-01-10 01:00:20 +00:00 |
float1.py
|
Add basic functionality tests for the Python bit.
|
2013-12-29 22:34:42 +00:00 |
for1.py
|
compile_for_stmt_optimised_range(): Properly handle negative & unknown steps.
|
2014-01-11 01:00:21 +02:00 |
fun1.py
|
Add basic functionality tests for the Python bit.
|
2013-12-29 22:34:42 +00:00 |
fun2.py
|
Add basic functionality tests for the Python bit.
|
2013-12-29 22:34:42 +00:00 |
fun3.py
|
Add basic functionality tests for the Python bit.
|
2013-12-29 22:34:42 +00:00 |
generator1.py
|
Add basic functionality tests for the Python bit.
|
2013-12-29 22:34:42 +00:00 |
generator2.py
|
py: Fix generator where state array was incorrectly indexed.
|
2014-01-02 20:57:05 +00:00 |
import1a.py
|
Basic implementation of import.
|
2014-01-03 14:03:48 +00:00 |
import1b.py
|
Basic implementation of import.
|
2014-01-03 14:03:48 +00:00 |
lambda1.py
|
Add basic functionality tests for the Python bit.
|
2013-12-29 22:34:42 +00:00 |
list1.py
|
list: Add extend() methods and += operator.
|
2014-01-12 00:54:10 +02:00 |
list_clear.py
|
Added list.clear. Fixes issue #53.
|
2014-01-03 23:22:53 +00:00 |
list_compare.py
|
list: Implement comparison operators.
|
2014-01-12 03:34:04 +02:00 |
list_copy.py
|
Implemented list.copy. Fixes issue #54.
|
2014-01-03 23:42:17 +00:00 |
list_count.py
|
Implemented list.count
|
2014-01-03 23:57:28 +00:00 |
list_index.py
|
Fix qstr in objlist.c; add more tests for list.index.
|
2014-01-05 13:44:06 +00:00 |
list_insert.py
|
Implements list.insert. Fixes issue #61.
|
2014-01-04 01:15:01 +00:00 |
list_mult.py
|
list: Implement list multiplication.
|
2014-01-11 00:49:19 +02:00 |
list_pop.py
|
renamed some tests to have better names.
|
2014-01-03 23:03:41 +00:00 |
list_remove.py
|
Implements list.remove (in terms of list.index and list.pop).
|
2014-01-04 01:56:53 +00:00 |
list_reverse.py
|
Implements list.reverse; fixes issue #66
|
2014-01-04 02:10:29 +00:00 |
list_sort.py
|
Merge remote-tracking branch 'upstream/master' into dict_feats
|
2014-01-07 23:06:46 +00:00 |
list_sum.py
|
renamed some tests to have better names.
|
2014-01-03 23:03:41 +00:00 |
set1.py
|
Add basic functionality tests for the Python bit.
|
2013-12-29 22:34:42 +00:00 |
set_add.py
|
Implemented set.add
|
2014-01-12 15:29:11 +00:00 |
set_clear.py
|
Implemented set.clear
|
2014-01-12 15:44:26 +00:00 |
set_copy.py
|
Implemented set.copy
|
2014-01-12 15:56:25 +00:00 |
set_difference.py
|
Implemented set.difference and set.difference_update
|
2014-01-12 17:07:17 +00:00 |
set_discard.py
|
Implemented set.discard
|
2014-01-12 16:39:39 +00:00 |
set_intersection.py
|
Implemented set.intersection and set.intersection_update
|
2014-01-12 17:54:03 +00:00 |
set_isdisjoint.py
|
Implemented set.isdisjoint
|
2014-01-12 18:03:21 +00:00 |
set_isfooset.py
|
Implemented set.remove
|
2014-01-12 19:16:59 +00:00 |
set_iter.py
|
make sets iterable
|
2014-01-12 15:17:42 +00:00 |
set_pop.py
|
Implemented set.remove
|
2014-01-12 19:16:59 +00:00 |
set_remove.py
|
Implemented set.remove
|
2014-01-12 19:16:59 +00:00 |
string1.py
|
Add string comparison tests.
|
2014-01-08 22:43:26 +02:00 |
string-slice.py
|
Unbreak string slice test by just switching to normal (not byte) strings.
|
2014-01-04 19:12:05 +02:00 |
try1.py
|
Crude attempt to implement RAISE_VARARGS (with args=1 so far only).
|
2014-01-11 00:55:08 +02:00 |
try2.py
|
Add basic functionality tests for the Python bit.
|
2013-12-29 22:34:42 +00:00 |
try3.py
|
Add basic functionality tests for the Python bit.
|
2013-12-29 22:34:42 +00:00 |
try4.py
|
Add basic functionality tests for the Python bit.
|
2013-12-29 22:34:42 +00:00 |
types1.py
|
Add test for basic builtin types.
|
2014-01-05 11:39:59 +00:00 |
while1.py
|
Add basic functionality tests for the Python bit.
|
2013-12-29 22:34:42 +00:00 |