diff options
| author | Damien George | 2014-01-18 17:54:35 +0000 |
|---|---|---|
| committer | Damien George | 2014-01-18 17:54:35 +0000 |
| commit | aefe79880f8c5f66132673ccc9be27d2ca29005b (patch) | |
| tree | 0c170f6c3f9c63d76db42739ccd0c6ea28cb8efb /tests | |
| parent | f49ba1bd9cdbe2dbb9bb093bf0ac5cde506142c0 (diff) | |
| parent | b31b5e0b5c2feac6bf5d8a93c3776cbf72e3528b (diff) | |
Merge branch 'master' of github.com:micropython/micropython
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/basics/tests/class-subclass-builtin.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/basics/tests/class-subclass-builtin.py b/tests/basics/tests/class-subclass-builtin.py new file mode 100644 index 000000000..7eb7d44b4 --- /dev/null +++ b/tests/basics/tests/class-subclass-builtin.py @@ -0,0 +1,6 @@ +#class mylist(list): +# pass + +#l = mylist() +#l.append(1) +#print(l) |
