Commit 17f0e618 authored by doko@ubuntu.com's avatar doko@ubuntu.com

- Modules/_collectionsmodule.c: Mark one more internal symbol as static.

parent 5cd6ea44
...@@ -301,7 +301,7 @@ deque_append(dequeobject *deque, PyObject *item) ...@@ -301,7 +301,7 @@ deque_append(dequeobject *deque, PyObject *item)
PyDoc_STRVAR(append_doc, "Add an element to the right side of the deque."); PyDoc_STRVAR(append_doc, "Add an element to the right side of the deque.");
int static int
deque_appendleft_internal(dequeobject *deque, PyObject *item, Py_ssize_t maxlen) deque_appendleft_internal(dequeobject *deque, PyObject *item, Py_ssize_t maxlen)
{ {
if (deque->leftindex == 0) { if (deque->leftindex == 0) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment