[Python-checkins] CVS: python/dist/src/Modules _weakref.c,1.10,1.11

Fred L. Drake fdrake@users.sourceforge.net
Thu, 03 May 2001 09:05:48 -0700


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

Modified Files:
	_weakref.c 
Log Message:

Remove an obsolete comment and a "return" before fallig off the end of a
void function.


Index: _weakref.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_weakref.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** _weakref.c	2001/04/13 17:15:47	1.10
--- _weakref.c	2001/05/03 16:05:46	1.11
***************
*** 737,741 ****
          || object->ob_refcnt != 0) {
          PyErr_BadInternalCall();
-         /* not sure what we should return here */
          return;
      }
--- 737,740 ----
***************
*** 793,797 ****
          }
      }
-     return;
  }
  
--- 792,795 ----