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

This commit is contained in:
doko@ubuntu.com 2016-06-14 07:27:58 +02:00
parent 5cd6ea44bf
commit 17f0e61891
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ deque_append(dequeobject *deque, PyObject *item)
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)
{
if (deque->leftindex == 0) {