summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
Diffstat (limited to 'Objects')
-rw-r--r--Objects/boolobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/boolobject.c b/Objects/boolobject.c
index a20af00..af6150d 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};