index
:
user/sven/micropython.git
for-upstream
master
old
stmhal-flash
origin/HEAD
origin/dependabot/github_actions/actions/upload-artifact-5
origin/master
origin/parse-bytecode
origin/v1.22-release
origin/v1.24-release
origin/v1.26-release
The MicroPython project
Sven Wegener
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
py
/
objdeque.c
Age
Commit message (
Expand
)
Author
2024-11-04
py/objdeque: Fix buffer overflow in deque_subscr.
Jan Sturm
2024-06-21
py/objdeque: Fix deque type flags based on option settings.
Dan Halbert
2024-03-18
py/objdeque: Expand implementation to be doubly-ended and support iter.
Dash Peters
2024-03-07
all: Remove the "STATIC" macro and just use "static" instead.
Angus Gratton
2022-09-19
py/obj: Convert make_new into a mp_obj_type_t slot.
Jim Mussared
2022-09-19
all: Remove unnecessary locals_dict cast.
Jim Mussared
2022-09-19
all: Make all mp_obj_type_t defs use MP_DEFINE_CONST_OBJ_TYPE.
Jim Mussared
2022-05-03
all: Use mp_obj_malloc everywhere it's applicable.
Jim Mussared
2020-04-05
all: Use MP_ERROR_TEXT for all error messages.
Jim Mussared
2020-02-28
all: Reformat C and Python source code with tools/codeformat.py.
Damien George
2018-05-11
py/objdeque: Fix sign extension bug when computing len of deque object.
Damien George
2018-02-21
py/objdeque: Use m_new0 when allocating items to avoid need to clear.
Damien George
2018-02-21
py/objdeque: Protect against negative maxlen in deque constructor.
Damien George
2018-02-21
py/objdeque: Allow to compile without warnings by disabling deque_clear.
Damien George
2018-02-21
py/objdeque: Implement ucollections.deque type with fixed size.
Paul Sokolovsky