[Python-checkins] python/dist/src/Objects boolobject.c,1.4,1.5

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Tue, 06 Aug 2002 15:12:54 -0700


Update of /cvsroot/python/python/dist/src/Objects
In directory usw-pr-cvs1:/tmp/cvs-serv16384/Objects

Modified Files:
	boolobject.c 
Log Message:
Make more functions static

Index: boolobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/boolobject.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** boolobject.c	13 Jun 2002 20:32:55 -0000	1.4
--- boolobject.c	6 Aug 2002 22:12:52 -0000	1.5
***************
*** 17,21 ****
  static PyObject *true_str = NULL;
  
! PyObject *
  bool_repr(PyBoolObject *self)
  {
--- 17,21 ----
  static PyObject *true_str = NULL;
  
! static PyObject *
  bool_repr(PyBoolObject *self)
  {
***************
*** 48,52 ****
  /* We define bool_new to always return either Py_True or Py_False */
  
! PyObject *
  bool_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
  {
--- 48,52 ----
  /* We define bool_new to always return either Py_True or Py_False */
  
! static PyObject *
  bool_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
  {