Skip to content

Commit 00d0405

Browse files
committed
Add TODO in python for allowing different key types in dict type.
1 parent 5693ea7 commit 00d0405

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

source/loaders/py_loader/source/py_loader_impl.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,7 @@ value py_loader_impl_return(PyObject * result, type_id id)
310310
keys = PyDict_Keys(result);
311311
keys_size = PyList_Size(keys);
312312

313+
/* TODO: Allow different key types in the future */
313314
for (iterator = 0; iterator < keys_size; ++iterator)
314315
{
315316
PyObject * key = PyList_GetItem(keys, iterator);

0 commit comments

Comments
 (0)