From bc7315068f188312e5c624ca57a3b010c7503eff Mon Sep 17 00:00:00 2001 From: "doko@ubuntu.com" Date: Wed, 18 May 2016 01:06:01 +0200 Subject: [PATCH] - make some internal symbols static --- Modules/_collectionsmodule.c | 2 +- Modules/_tracemalloc.c | 2 +- Modules/faulthandler.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index d57f1ba55ae..3008879f98d 100644 --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -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) { diff --git a/Modules/_tracemalloc.c b/Modules/_tracemalloc.c index beda2b612d7..e3329c722fe 100644 --- a/Modules/_tracemalloc.c +++ b/Modules/_tracemalloc.c @@ -262,7 +262,7 @@ hashtable_hash_pointer_t(_Py_hashtable_t *ht, const void *pkey) } -int +static int hashtable_compare_pointer_t(_Py_hashtable_t *ht, const void *pkey, const _Py_hashtable_entry_t *entry) { diff --git a/Modules/faulthandler.c b/Modules/faulthandler.c index 570c87520fc..d6322d0f3f1 100644 --- a/Modules/faulthandler.c +++ b/Modules/faulthandler.c @@ -414,7 +414,7 @@ faulthandler_exc_handler(struct _EXCEPTION_POINTERS *exc_info) /* Install the handler for fatal signals, faulthandler_fatal_error(). */ -int +static int faulthandler_enable(void) { size_t i;