summaryrefslogtreecommitdiffstatshomepage
path: root/py/py.mk
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-05-05 22:18:07 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-05-05 22:18:07 +0300
commit76677270218fb5732296e4fe1a0acbe05c8f818c (patch)
tree8a3488604b72791f142d034f317acdcfebd3c141 /py/py.mk
parente04aa96b4d5111737aba598f678e27793fe0cd01 (diff)
downloadmicropython-76677270218fb5732296e4fe1a0acbe05c8f818c.tar.gz
micropython-76677270218fb5732296e4fe1a0acbe05c8f818c.zip
objsingleton: New home for Ellipsis and NotImplemented.
Having NotImplemented as MP_OBJ_SENTINEL turned out to be problematic (it needs to be checked for in a lot of places, otherwise it'll crash as would pass MP_OBJ_IS_OBJ()), so made a proper singleton value like Ellipsis, both of them sharing the same type.
Diffstat (limited to 'py/py.mk')
-rw-r--r--py/py.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/py/py.mk b/py/py.mk
index 5f9575d308..5ab2b3b138 100644
--- a/py/py.mk
+++ b/py/py.mk
@@ -82,6 +82,7 @@ PY_O_BASENAME = \
objrange.o \
objreversed.o \
objset.o \
+ objsingleton.o \
objslice.o \
objstr.o \
objstrunicode.o \