summaryrefslogtreecommitdiff
path: root/py/objslice.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2018-09-27 11:23:31 +1000
committerDamien George <damien.p.george@gmail.com>2018-09-27 11:23:31 +1000
commitbaa83a0c6d483baec4ea7e3725d60ac924338233 (patch)
treed38202fff0995f4b7e4650806ec0ab0cd65d971d /py/objslice.c
parent76355c8863ce07a604e0a235ea460d4466747563 (diff)
py/objslice: Remove long-obsolete comment about enhancing slice object.
Commit afaaf535e6cfaf599432b13a2fbe9373e6a2c4b8 made this comment obsolete.
Diffstat (limited to 'py/objslice.c')
-rw-r--r--py/objslice.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/py/objslice.c b/py/objslice.c
index de996d831..e50aa0789 100644
--- a/py/objslice.c
+++ b/py/objslice.c
@@ -34,8 +34,6 @@
#if MICROPY_PY_BUILTINS_SLICE
-// TODO: This implements only variant of slice with 2 integer args only.
-// CPython supports 3rd arg (step), plus args can be arbitrary Python objects.
typedef struct _mp_obj_slice_t {
mp_obj_base_t base;
mp_obj_t start;