mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
- Modules/_collectionsmodule.c: Mark one more internal symbol as static.
This commit is contained in:
parent
5cd6ea44bf
commit
17f0e61891
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue