From 657d22270019f851b752869b4fc951679d55c12a Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Tue, 6 Aug 2002 22:12:52 +0000 Subject: [PATCH] Make more functions static --- Objects/boolobject.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Objects/boolobject.c b/Objects/boolobject.c index a20af00680..af6150d974 100644 --- a/Objects/boolobject.c +++ b/Objects/boolobject.c @@ -16,7 +16,7 @@ bool_print(PyBoolObject *self, FILE *fp, int flags) static PyObject *false_str = NULL; static PyObject *true_str = NULL; -PyObject * +static PyObject * bool_repr(PyBoolObject *self) { PyObject *s; @@ -47,7 +47,7 @@ PyObject *PyBool_FromLong(long ok) /* We define bool_new to always return either Py_True or Py_False */ -PyObject * +static PyObject * bool_new(PyTypeObject *type, PyObject *args, PyObject *kwds) { static char *kwlist[] = {"x", 0}; -- 2.50.1