aboutsummaryrefslogtreecommitdiff
path: root/py/objdeque.c
AgeCommit message (Expand)Author
2022-05-03all: Use mp_obj_malloc everywhere it's applicable.Jim Mussared
2020-04-05all: Use MP_ERROR_TEXT for all error messages.Jim Mussared
2020-02-28all: Reformat C and Python source code with tools/codeformat.py.Damien George
2018-05-11py/objdeque: Fix sign extension bug when computing len of deque object.Damien George
2018-02-21py/objdeque: Use m_new0 when allocating items to avoid need to clear.Damien George
2018-02-21py/objdeque: Protect against negative maxlen in deque constructor.Damien George
2018-02-21py/objdeque: Allow to compile without warnings by disabling deque_clear.Damien George
2018-02-21py/objdeque: Implement ucollections.deque type with fixed size.Paul Sokolovsky