summaryrefslogtreecommitdiffstatshomepage
path: root/unix-cpy
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-01-03 02:41:17 +0200
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-01-04 02:35:48 +0200
commit1c6de11f772afae9b4155f8a654cadd05125a2de (patch)
tree91773ad883e3ab1ccf513a5f9b2233461f295572 /unix-cpy
parent98adccf7acb52a0cf9169a78e3af1a8958f7ab36 (diff)
downloadmicropython-1c6de11f772afae9b4155f8a654cadd05125a2de.tar.gz
micropython-1c6de11f772afae9b4155f8a654cadd05125a2de.zip
Add basic implementation of slice object.
So far, only start and stop integer indexes are supported. Step is not supported, as well as objects of arbitrary types.
Diffstat (limited to 'unix-cpy')
-rw-r--r--unix-cpy/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/unix-cpy/Makefile b/unix-cpy/Makefile
index 48c3179460..7fee3438fb 100644
--- a/unix-cpy/Makefile
+++ b/unix-cpy/Makefile
@@ -43,6 +43,7 @@ PY_O = \
objnone.o \
objrange.o \
objset.o \
+ objslice.o \
objstr.o \
objtuple.o \
objtype.o \