[Python-checkins] commit of r41612 - python/branches/ast-arena/Python/pyarena.c

neal.norwitz python-checkins at python.org
Mon Dec 5 08:36:53 CET 2005


Author: neal.norwitz
Date: Mon Dec  5 08:36:50 2005
New Revision: 41612

Modified:
   python/branches/ast-arena/Python/pyarena.c
Log:
Remove unused static function

Modified: python/branches/ast-arena/Python/pyarena.c
==============================================================================
--- python/branches/ast-arena/Python/pyarena.c	(original)
+++ python/branches/ast-arena/Python/pyarena.c	Mon Dec  5 08:36:50 2005
@@ -37,14 +37,6 @@
   return alist;
 }
 
-static PyArenaList*
-PyArenaList_Add(PyArenaList *alist) 
-{
-  assert(alist->al_next == NULL);
-  alist->al_next = PyArenaList_New();
-  return alist->al_next;
-}
-
 static void
 PyArenaList_FreeObject(PyArenaList *alist) 
 {


More information about the Python-checkins mailing list