mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
- make some internal symbols static
This commit is contained in:
parent
307676face
commit
bc7315068f
3 changed files with 3 additions and 3 deletions
|
@ -264,7 +264,7 @@ PyDoc_STRVAR(popleft_doc, "Remove and return the leftmost element.");
|
|||
|
||||
#define NEEDS_TRIM(deque, maxlen) ((size_t)(maxlen) < (size_t)(Py_SIZE(deque)))
|
||||
|
||||
int
|
||||
static int
|
||||
deque_append_internal(dequeobject *deque, PyObject *item, Py_ssize_t maxlen)
|
||||
{
|
||||
if (deque->rightindex == BLOCKLEN - 1) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue