micropython/tests/basics
Damien George 4417478d0f tests: Make tests pass on pyboard. 2014-04-13 17:46:30 +01:00
..
pkg
pkg2 builtinimport: Set __path__ attribute ASAP as it's clear we have a package. 2014-04-12 02:55:18 +03:00
pkg3 builtinimport: Implement relative imports. 2014-04-12 18:25:17 +03:00
0prelim.py
array1.py
break.py
builtin-callable.py
builtin-len1.py
builtin_id.py
bytearray1.py py: Make bytearray a proper type. 2014-04-08 22:11:40 +03:00
bytes.py
class-emptybases.py
class-getattr.py
class-staticclassmethod.py
class-subclass-builtin.py
class-super.py
class1.py
class2.py
class3.py
class_inherit1.py
class_inherit_mul.py
class_item.py
class_number.py
class_store.py
class_str.py
closure-defargs.py
closure1.py
closure2.py
compare-multi.py tests: Add test for multi-comparison. 2014-04-10 17:29:51 +00:00
comprehension1.py
containment.py
continue.py
del-attr.py tests: Oops: fix del-attr. 2014-04-08 23:02:24 +01:00
del-deref.py py: Properly implement deletion of locals and derefs, and detect errors. 2014-04-09 15:26:46 +01:00
del-local.py py: Properly implement deletion of locals and derefs, and detect errors. 2014-04-09 15:26:46 +01:00
del-name.py py: Remove DELETE_SUBSCR opcode, combine with STORE_SUBSCR. 2014-04-08 21:32:29 +01:00
del-subscr.py py: Remove DELETE_SUBSCR opcode, combine with STORE_SUBSCR. 2014-04-08 21:32:29 +01:00
dict-del.py
dict-from-iter.py py: Check that sequence has 2 elements for dict iterable constructor. 2014-04-11 09:13:30 +01:00
dict1.py
dict2.py objdict: Implement __getitem__ method. 2014-04-11 05:24:44 +03:00
dict_clear.py tests: Fix few tests which depend on order of elements in dict. 2014-04-06 21:31:42 +03:00
dict_copy.py
dict_fromkeys.py
dict_get.py
dict_iterator.py tests: Fix few tests which depend on order of elements in dict. 2014-04-06 21:31:42 +03:00
dict_pop.py
dict_popitem.py tests: Fix few tests which depend on order of elements in dict. 2014-04-06 21:31:42 +03:00
dict_setdefault.py
dict_update.py tests: Fix few tests which depend on order of elements in dict. 2014-04-06 21:31:42 +03:00
dict_views.py
enumerate.py
equal.py py: Remove useless implementations of NOT_EQUAL in binary_op's. 2014-04-12 00:20:39 +01:00
eval1.py
exception1.py
exceptpoly.py
exec1.py
filter.py
float1.py
floordivide.py
for1.py
for2.py
fun-annotations.py
fun-calldblstar.py
fun-callstar.py tests: Make tests pass on pyboard. 2014-04-13 17:46:30 +01:00
fun-callstardblstar.py
fun-defargs.py tests: Make tests pass on pyboard. 2014-04-13 17:46:30 +01:00
fun-defargs2.py objfun: Fix default arguments filling loop, was broken in presense of kwargs. 2014-04-10 05:39:38 +03:00
fun-kwargs.py
fun-kwvarargs.py
fun-varargs.py
fun1.py
fun2.py
fun3.py
gen-yield-from-close.py
gen-yield-from-ducktype.py
gen-yield-from-exc.py
gen-yield-from-iter.py
gen-yield-from-send.py
gen-yield-from-throw.py
gen-yield-from.py
generator-args.py
generator-closure.py py: Generators can have their locals closed over. 2014-04-09 19:01:45 +01:00
generator-exc.py
generator-return.py
generator1.py
generator2.py
generator_close.py
generator_send.py
getattr.py
getattr1.py
getitem.py
globals-del.py tests: Add test to check issue #429. 2014-04-05 18:17:51 +01:00
import-pkg1.py
import-pkg2.py
import-pkg3.py py: Implement "from pkg import mod" variant of import. 2014-04-12 00:39:55 +03:00
import-pkg4.py builtinimport: Set __path__ attribute ASAP as it's clear we have a package. 2014-04-12 02:55:18 +03:00
import-pkg5.py builtinimport: Implement relative imports. 2014-04-12 18:25:17 +03:00
import1a.py
import1b.py
import2a.py
import3a.py
int-big-lshift.py
int-big-mod.py
int-big-mul.py
int-bytes.py objint: Implement int.from_bytes() class method and .to_bytes() method. 2014-04-09 01:07:37 +03:00
int-divzero.py
int-long.py
int-mpz.py
int-small.py
int1.py
is-isnot.py
iter-of-iter.py tests: Fix tests with sets to print sorted set. 2014-04-07 00:42:09 +01:00
iter1.py
iter2.py
lambda1.py
list1.py objlist: Make .extend accept arbitrary iterable. 2014-04-13 03:21:31 +03:00
list_clear.py
list_compare.py
list_copy.py
list_count.py
list_index.py
list_insert.py
list_mult.py
list_pop.py
list_remove.py
list_reverse.py
list_slice.py
list_sort.py Add tests for sorted() function 2014-04-07 04:41:54 +01:00
list_sum.py
map.py
math-fun-bool.py
math-fun.py
memoryerror.py
modulo.py
namedtuple1.py py: Rename collections module to _collections. 2014-04-13 10:24:00 +03:00
print.py
seq-unpack.py
set1.py tests: Fix tests with sets to print sorted set. 2014-04-07 00:42:09 +01:00
set_add.py Modify set tests to print sorted sets directly 2014-04-07 05:00:03 +01:00
set_binop.py Modify set tests to print sorted sets directly 2014-04-07 05:00:03 +01:00
set_clear.py
set_copy.py Modify set tests to print sorted sets directly 2014-04-07 05:00:03 +01:00
set_difference.py Modify set tests to print sorted sets directly 2014-04-07 05:00:03 +01:00
set_discard.py
set_intersection.py Modify set tests to print sorted sets directly 2014-04-07 05:00:03 +01:00
set_isdisjoint.py
set_isfooset.py
set_iter.py
set_pop.py
set_remove.py
set_symmetric_difference.py Modify set tests to print sorted sets directly 2014-04-07 05:00:03 +01:00
set_union.py tests: Fix few tests which depend on order of elements in set. 2014-04-07 02:54:16 +03:00
set_update.py Modify set tests to print sorted sets directly 2014-04-07 05:00:03 +01:00
slots_bool_len.py
sorted.py
string-compare.py
string-escape.py
string-format-modulo.py Add string formatting support for longlong and mpz. 2014-04-07 11:38:45 -07:00
string-format.py Add string formatting support for longlong and mpz. 2014-04-07 11:38:45 -07:00
string-join.py py: str.join can now take arbitrary iterable as argument. 2014-04-09 19:17:53 +01:00
string-repr.py Display \r and \t escape codes in string repr 2014-04-08 02:42:50 +01:00
string-slice.py
string1.py
string_count.py
string_find.py
string_index.py py: Implement str.[r]index() and add tests for them. 2014-04-08 11:51:41 -07:00
string_partition.py
string_replace.py py: Fix str.replace for case when arg 0 or 1 is empty string. 2014-04-07 00:39:13 +01:00
string_rfind.py
string_rindex.py py: Implement str.[r]index() and add tests for them. 2014-04-08 11:51:41 -07:00
string_rpartition.py
string_split.py py: str.split: handle non-default separator. 2014-04-06 11:11:15 +01:00
string_startswith.py
string_strip.py
struct1.py modstruct: Basic implementation of native struct alignment and types. 2014-04-11 03:59:16 +03:00
true-value.py
try-as-var.py
try-finally-loops.py
try-finally-return.py
try-finally1.py
try-module.py
try-reraise.py
try-reraise2.py
try1.py
try2.py
try3.py
try4.py
tuple1.py
tuple_compare.py
tuple_count.py
tuple_index.py
tuple_mult.py
types1.py
types2.py
unary_op.py
unboundlocal.py py: Make all LOAD_FAST ops check for unbound local. 2014-04-12 18:20:40 +01:00
unpack1.py py: implement UNPACK_EX byte code (for: a, *b, c = d) 2014-04-08 17:51:47 +01:00
while1.py
with-break.py
with-continue.py
with-return.py
with1.py tests: Make tests pass on pyboard. 2014-04-13 17:46:30 +01:00
zip.py